如果编译UBOOT for OPENMOKO
--------------------
因为现在的OPENMOKO的代码都由GIT管理。所要取得UBOOT的代码就很容易但是时间就是很长,
我下载用了有10多个小时。
git clone git://git.openmoko.org/git/u-boot.git uboot.git.openmoko
git checkout origin/stable
cd uboot.git.openmoko
export PATH=/path/to/toolchain/arm/bin
PATH
chmod +x board/neo1973/gta02/split_by_variant.sh
make gta02v5_config(详细请见Makefile 2433 行)
make(这个过程不是很长)
就会有uboot.bin出现在当前目录了。
-------------------
同样KERKEL的代码也是OPENMOKO的GIT管理。
git clone git://git.openmoko.org/git/kernel.git linux-2.6
进入一个分支
git checkout origin/andy
我们需要复制 ./defconfig-2.6.24 到当前目录重命名为 .config
同样
export PATH=/path/to/toolchain/arm/bin
PATH
make ARCH=ARM CROSS_COMPILE=arm-angstrom-linux-gnueabi-
阅读(2470) | 评论(5) | 转发(0) |