express_ca9x4 uboot分析

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了express_ca9x4 uboot分析相关的知识,希望对你有一定的参考价值。

1.vexpress-ca9x4和qemu介绍

vexpress-ca9x4是arm公司的模拟开发板,

官方资料是:

ARM? CoreTile Express A9×4 Technical Reference Manual  Cortex?-A9 MPCore (V2P-CA9) 

http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0448i/index.html

 

RealView? Platform Baseboard Explore for Cortex?-A9 User Guide    HBI-0182 (baseboard) and HBI0183 (daughterboard)

http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.home/index.html

qemu是一个模拟器

 

2.环境搭建

编译器,qemu,uboot,

详见这篇文章:http://blog.chinaunix.net/uid-21273033-id-3276237.html

 

uboot(2017.07)编译:

CROSS_COMPILE=arm-linux-gnueabi- make mrproper O=../t

CROSS_COMPILE=arm-linux-gnueabi- make vexpress_ca9x4_defconfig O=../t

CROSS_COMPILE=arm-linux-gnueabi- make vexpress_ca9x4_defconfig all O=../t

 

运行: 
qemu-system-arm -M vexpress-a9 -m 256M -nographic -kernel u-boot

 

3.makefile分析

阅读readme,CONFIG_,CONFIG_SYS_,make <board_name>_defconfig

 CONFIG_SYS:depend on the hardware etc,

 

info命令输出和man一样,需要安装doc。u跳到上层的小节 “p”跳到上一节,按键“n”跳到下一节。

LC_ALL=C 是为了去除所有本地化的设置,让命令能正确执行。

shell中,文件分界符(通常写成EOF,你也可以写成FOE或者其他任何字符串)紧跟在<<符号后,意思是分界符后的内容将被当做标准输入传给<<前面的命令,直到再次在独立的一行遇到这个文件分界符(EOF或者其他任何字符

MAKEFLAGS += -rR --no-print-directory 
#-r禁止使用build-in规则
#--no-print-directory是:不要再屏幕上打印"Entering directory.."

有一个 make 的环境变量叫“MAKECMDGOALS”,这个变量中会存放你所指定的终极目标的列表,如果在命令行上,你没有指定目标,那么,这个变量是空值

 

linux顶层Makefile(不错)

Kernel顶层Makefile文件分析

http://blog.csdn.net/hushup/article/details/26105333

http://www.cnblogs.com/heaad/archive/2010/07/17/1779806.html

http://www.cnblogs.com/amanlikethis/archive/2013/11/17/3427682.html

 

  

 

 

4.代码分析

 

 

 

vexpress-ca9x4

以上是关于express_ca9x4 uboot分析的主要内容,如果未能解决你的问题,请参考以下文章

嵌入式linux核心课程 2.uboot和系统移植-第4部分-2.4.uboot配置和编译过程详解

一,移植uboot,分析uboot启动流程

uboot移植之九鼎提供的uboot的文件分析

uboot启动源码分析

2.4uboot配置和编译过程详解

allwinner uboot引导阶段分析