全部博文(321)
发布时间:2013-07-03 00:22:36
U-boot的环境变量值得注意的有两个: bootcmd 和bootargs。u-bootcmd 前面有说过bootcmd是自动启动时默认执行的一些命令,因此你可以在当前环境中定义各种不同配置,不同环境的参数设置,然后设置bootcmd为你经常使用的那种参数。u-bootargs bootargs是环境变量中的重中之重,甚至可以.........【阅读全文】
发布时间:2013-06-30 15:33:55
1. 嵌入式系统的编译大致流程为 CFE->config->rootfs->kernel,也是编译后生成的image的结构,烧录到flash中之后,上电最先启动的是CFE,首先CFE必须认识falsh的类型。 kernel (Linux内核) .........【阅读全文】
发布时间:2013-04-07 23:34:24
/* * linux/init/main.c * * Copyright (C) 1991, 1992 Linus Torvalds * * GK 2/5/95 - Changed to support mounting root fs via NFS * Added initrd & change_root: Werner Almesberger & Hans Lermen, Feb '96 * Moan earl.........【阅读全文】
发布时间:2013-04-07 23:33:10
/* * linux/arch/arm/kernel/head-common.S * * Copyright (C) 1994-2002 Russell King * Copyright (c) 2003 ARM Limited * All Rights Reserved * * This program is free software; you can redistribute it and/or modify * it under the ter.........【阅读全文】