当前位置: 技术问答>linux和unix
请大侠们多多指点:make uImage 的问题,谢谢了!
来源: 互联网 发布时间:2017-05-23
本文导语: 遇到的问题是:在执行 ccc@ubuntu:~/myboard/linux-3.11$ make uImage ARCH=arm CROSS_COMPILE=arm-linux- 生成uImage时,出现错误提示: Kernel: arch/arm/boot/Image is ready ...
遇到的问题是:在执行 ccc@ubuntu:~/myboard/linux-3.11$ make uImage ARCH=arm CROSS_COMPILE=arm-linux-
生成uImage时,出现错误提示:
Kernel: arch/arm/boot/Image is ready
Kernel: arch/arm/boot/zImage is ready
UIMAGE arch/arm/boot/uImage
"mkimage" command not found - U-Boot images will not be built
make[1]: *** [arch/arm/boot/uImage] Error 1
make: *** [uImage] Error 2
我按照网上的设置:将uboot的/tools目录下寻找mkimage文件,把其copy到系统//usr/local/bin
再次执行,还是出现同样错误提示,请大侠们多多指点,谢谢了!
生成uImage时,出现错误提示:
Kernel: arch/arm/boot/Image is ready
Kernel: arch/arm/boot/zImage is ready
UIMAGE arch/arm/boot/uImage
"mkimage" command not found - U-Boot images will not be built
make[1]: *** [arch/arm/boot/uImage] Error 1
make: *** [uImage] Error 2
我按照网上的设置:将uboot的/tools目录下寻找mkimage文件,把其copy到系统//usr/local/bin
再次执行,还是出现同样错误提示,请大侠们多多指点,谢谢了!
|
/usr/local/bin路径不在全局路径中,要么添加到全局路径中
要么把mkimage拷贝到/usr/bin中
要么把mkimage拷贝到/usr/bin中
|
看看 $PATH 有没有 /usr/local/bin 目录