Error: file not found: arch / arm / boot / compress / piggy.lzo

I am trying to create an android project

Error below even after setting the correct path for tool chains

/bin/sh: lzop: not found AS arch/arm/boot/compressed/piggy.lzo.o arch/arm/boot/compressed/piggy.lzo.S: Assembler messages: arch/arm/boot/compressed/piggy.lzo.S:4: Error: file not found: arch/arm/boot/compressed/piggy.lzo make[2]: *** [arch/arm/boot/compressed/piggy.lzo.o] Error 1 make[1]: *** [arch/arm/boot/compressed/vmlinux] Error 2 make: *** [zImage] Error 2 make: Leaving directory `/home/user/workspace/android/kernel/exynos54xx' build: error: build-kernel failed and die !!! 
+5
source share
1 answer

Here is the solution if you are using Ubuntu:

 $ sudo apt-get install lzop 

or find the lzop package of your OS.

+5
source

Source: https://habr.com/ru/post/1204300/


All Articles