摘要:
u-boot的第一阶段的任务是完成 部分硬件的设置: 1.设置CPU工作在管理员模式 1 mrs r0,cpsr 2 bic r0,r0,#0x1f 3 orr r0,r0,#0xd3 4 msr cpsr,r0 2.关闭看门狗 1 /* turn off the watchdog */ 2 #if 阅读全文
摘要:
u-boot的配置、编译过程: 1、cd /work/system/u-boot-1.1.6 2、patch -p1 <../u-boot-1.1.6_jz2440.patch 打补丁 3、make 100ask24x0_config 配置u-boot 4、make ① 为了分析上述的命令过程,需要 阅读全文