1. 编译uboot

1. 解压:

tar jxf u-boot-1.1.6.tar.bz2
cd u-boot-1.1.6/
2. 打补丁

patch -p1 < ../u-boot-1.1.6_jz2440.patch
3. 配置
make 100ask24x0_config
4. 编译
make

生成 u-boot.bin

5.其它

在 tool 目录下会生成一个mkimage,把它拷贝到/usr/bin下面,主要是为了生成uImage用的。

cp mkimage /usr/bin/
没用它,当你编译内核时就不能生成uImage。

你可能感兴趣的:(1. 编译uboot)