博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ubuntu16下编译linux内核,报"mkimage" command not found错的解决
阅读量:4680 次
发布时间:2019-06-09

本文共 941 字,大约阅读时间需要 3 分钟。

"mkimage" command not found - U-Boot images will not be built

/work/system/linux-3.4.20/arch/arm/boot/Makefile:89: recipe for target 'arch/arm/boot/uImage' failed
make[1]: *** [arch/arm/boot/uImage] Error 1
/work/system/linux-3.4.20/arch/arm/Makefile:281: recipe for target 'uImage' failed

我在网上搜了,用了

sudo apt-get install uboot-mkimage

但是,没安装成功

root@alan:/work/system/linux-3.4.20# sudo apt-get install uboot-mkimage

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package uboot-mkimage is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  u-boot-tools:i386 u-boot-tools
E: Package 'uboot-mkimage' has no installation candidate

上面说了,安装 u-boot-tools  就可以了。

综上所述,解决方案:

sudo apt-get install u-boot-tools

转载于:https://www.cnblogs.com/alan666/p/8311844.html

你可能感兴趣的文章