//主题:S5PV210之UBOOT-2011.06启动过程解析
//作者:kevinjz2010@gmail.com
//平台:S5PV210 ARMV7 TINY210
//-------------------------------------------------------------------------------------------------
本文使用的UBOOT版本:u-boot for tiny210 ver3.1
源码地址:http://blog.csdn.net/liukun321/article/details/7438880#comments
一、配置与使用
1、在系统根目录下的Makefile中的第601行,通过下列语句:
sinclude$(obj).boards.depend
$(obj).boards.depend: boards.cfg
awk'(NF && $$1 !~ /^#/) { print $$1 ": " $$1 "_config;$$(MAKE)" }' $< > $@
读取了boards.cfgboards.cfg中关于tiny210_onfig的配置项,其中.boards.depend是隐藏文件;
2、在Makefile的106行添加:
+ ifeq($(ARCH), arm)
+ CROSS_COMPILE= arm-none-linux-gnueabi-
+ endif
这样配置好了默认的编译器;
3、在根目录下执行:
$make tiny210_config
$make -j
即可在根目录得到tiny210-uboot.bin,可用于SD卡启动和NAND启动;
4、烧入SD卡的时候使用下面命令:
$sudodd iflag=dsync oflag=dsync if=tiny210-uboot.bin of=/dev/sdb seek=1
dd命令用于对SD进行烧写,根据三星手册《S5PV210_iROM_ApplicationNote_Preliminary_20091126》,将tiny210-uboot.bin烧写到,SD卡的第一个Block,保留第0个block不用,每个