Linux内核笔记 - 内核编译错误及解决方法记录

错误 1:

/bin/sh: 1: lzop: not found

make[2]: *** [arch/arm/boot/compressed/piggy.lzo] 错误 1

make[2]: *** 正在等待未完成的任务....

make[1]: *** [arch/arm/boot/compressed/vmlinux] 错误 2

make: *** [uImage] 错误 2

解决办法:

sudo apt-get install lzop

 

错误 2:

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

make[1]: *** [arch/arm/boot/uImage] 错误 1

make: *** [uImage] 错误 2

解决办法:

sudo apt-get install uboot-mkimage

 

你可能感兴趣的:(linux)