uboot的编译

Uboot的编译


交叉编译环境的搭建


下载arm-none-linux-gnueabi并解压到/opt目录下


编辑~/.profile 或 ~/.bashrc 文件, 添加以下内容


export PATH=/opt/arm-none-linux-gnueabi/bin:/opt/opt-bin:$PATH #arm-none-linux-gnueabi是armlinux编译器的根目录


解压uboot到/opt目录下


终端下执行 


make distclean #保证代码干净


make xxx_config # xxx是include/configs下的平台同文件的名字(不含.h)


make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- #编译uboot ARCH和CROSS_COMPILE可以不写, 但是Makefile中要配置)

你可能感兴趣的:(android,linux,ARM,uboot)