
uboot
文章平均质量分 56
kakasingle
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
uboot第二阶段细节(环境变量和时钟)
我们的板文件是在include/configs/smdk2410.h,在该文件中有很多配置项 该文件被生成的include/config.h文件包含 在conmon/env_nand.c 中env_init()函数 int env_init(void) { #if defined(ENV_IS_EMBEDDED) // 该宏我们不定义 size_t total; i翻译 2013-10-18 13:05:15 · 893 阅读 · 0 评论 -
uboot的配置和编译:
uboot的配置和编译: 配置:make XXXX_config 编译:make 之后会生成4个文件,分别是uboot ,uboot.srec ,uboot.bin,uboot.map. 其中,对于我们最重要的是uboot.bin二进制文件,它可以直接烧录到机器里,进行启动,打开串口,会看到打印信息, 当然,如果你对uboot进行改写了,让它在3秒倒数计时里按下空格键,进入到uboot翻译 2013-10-18 13:07:22 · 760 阅读 · 0 评论 -
uboot两阶段分析 2013-10-8
我们先来分析uboot启动代码的第一阶段,以arm920t为例。 #include #include #include /* ************************************************************************* * * Jump vector table as in table 3.1 in [1]翻译 2013-10-18 12:59:20 · 1855 阅读 · 0 评论