当前位置: 代码迷 >> 综合 >> “mkimage” command not found – U-Boot images will not be built
  详细解决方案

“mkimage” command not found – U-Boot images will not be built

热度:35   发布时间:2024-01-21 06:44:00.0

ubuntu 14.04 64位系统编译linux kernel时提示:

“mkimage” command not found – U-Boot images will not be built

按照以往经验,我们需要安装依赖包:

sudo apt-get install uboot-mkimage

但却提示”现在没有可用的软件包 uboot-mkimage,但是它被其它的软件包引用了。 这可能意味着这个缺失的软件包可能已被废弃

怎么破?

按照其提示,安装”u-boot-tools“即可

sudo apt-get install u-boot-tools

  相关解决方案