在使用Ubuntu16.04 64位系统交叉编译Linux内核时提示如下错误:
出现错误的原因主要是下面:
"mkimage" command not found - U-Boot images will not be built
在交叉编译uImage镜像的时候需要用到"mkimage"工具,因此需要安装相应的工具包,可以使用下面命令进行解决:
$ sudo apt-get install u-boot-tools
软件工具安装完成后,继续重新交叉编译即可。