关于执行make uImage 时候报错 “command not found - U-Boot images”的处理方法

博主在编译 kernel 生成时u-boot可以引导的uImage 时报错:如下

关于执行make uImage 时候报错 “command not found - U-Boot images”的处理方法

经过多方查看,“mkimage” 在u-boot的工具,主要用来编译内核,生成u-boot可引导启动的内核文件,博主的解决方法如下:

关于执行make uImage 时候报错 “command not found - U-Boot images”的处理方法

咋一看,这似乎不行啊:

后来直接   sudo apt-get install u-boot-tools:

关于执行make uImage 时候报错 “command not found - U-Boot images”的处理方法

这下可以了,输入mki直接 “tab”键出来了,

再来执行  

make uImage -j 4,  ok 了

关于执行make uImage 时候报错 “command not found - U-Boot images”的处理方法