当我们安装好交叉编译器后,我们要对友善之臂提供的linux3.0.8进行编译。
按下面步骤进行:
$tar xzf linux-3.0.86-20150324.tgz
$ cd linux-3.0.86/
$ cp tiny4412_android_defconfig .config
$ make zImage
执行make zImage的时候,如果你没有安装交叉编译器,将会报错误:arm-linux-gcc not found。所以在执行编译的时候,请务必先安装好交叉编译器,并配置好环境变量。
当你安装好交叉编译器后,执行make zImage,可能会报error loading shared libraries: libz.so.1cannot open shared object file: No such file。
具体解决方法是执行:sudo apt-get install lib32z1 lib32z1-dev
然后再执行make zImage后,就可以正常进行编译工作了。