
bootload学习
文章平均质量分 78
tron
这个作者很懒,什么都没留下…
展开
-
Bootloader的启动过程
文章转至:http://blog.sina.com.cn/s/blog_6a1928130100r0tb.html 从固态存储设备上启动的BootLoader 大多都是2个阶段的启动过程,也即启动过程可以分为stage1和stage2两部分。 依赖于 CPU 体系结构的代码(如CPU初始化代码等)通常都放在阶段1中,且通常用汇编语言实现,而阶段 2 则通常用 C 语言来实现转载 2012-02-22 23:07:01 · 882 阅读 · 0 评论 -
U-Boot-2011.06的README翻译
U-Boot-2011.06的README翻译 翻译不准确的地方请指正。共同学习,一起进步。 # # (C) Copyright 2000 - 2011 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contribute转载 2012-02-15 15:28:17 · 1943 阅读 · 0 评论 -
U-Boot and MMC/SDIO
U-Boot supports MMC Cards with multiple paritions, with the FAT file system. For general information on MMC Cards - see the MMC Cards page. To initialize the mmc/sdio subsystem, use the mmcinit ca转载 2012-05-28 21:20:09 · 1733 阅读 · 0 评论 -
U-Boot启动过程--详细版的完全分析
------------------------------------------------------------------------------------------------------------------------------------------- 我们知道,bootloader是系统上电后最初加载运行的代码。它提供了处理器上电复位后最开始需要执行的初始化代码。转载 2012-06-01 14:13:12 · 1038 阅读 · 0 评论 -
bootloader 内核启动参数
一:启动参数的传递过程 启动参数是包装在数据结构里的,在linux kernel启动的时候,bootloader把这个数据结构拷贝到某个地址, 在改动PC跳向内核接口的同时,通过通用寄存器R2来传递这个地址的值,下面这句话就是uboot跳向linux kernel的代码(bootm命令) theKernel (0, bd->bi_arch_number, bd->bi_boot_p转载 2012-06-01 14:01:05 · 781 阅读 · 0 评论 -
Uboot 启动流程简介
前面把内核的引导启动整理了~ 想想顺便把uboot也看看吧 = 3= uboot版本 : 1.3.0-rc3 由朗成的weibing进行了修改以提供板子的nand引导启动功能 板子 : AT2440EVB 在分析启动代码之前先看一下S3C2440的NAND启动: 在配置NAND启动模式之后,S3C2440上电会先将NAND中的0x0 - 0x1000共4096字节的数据拷贝到位于Bank0转载 2012-06-01 14:02:15 · 689 阅读 · 0 评论