一、uboot的编译 首先来回顾一下uboot如何编译。 (1)设置临时环境变量 export ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- (2)指定板级配置,生成.config文件 make xxx_defconfig (3)编译 make -j8 (4)清除构建 make distclean 接下来,我们深入研读uboot根目录下的