Zach
Zach

Reputation: 81

/arm64/Image to zImage or boot.img

Hello everyone I have been trying to figure out how to make my android kernel a zImage or boot.img.

I tried to figure it out with no luck. I was told that zImage isnt possible for my device because its a arm64 kernel but I thought I would ask again.

if that’s the case I'm trying to get the boot.img compiled so I can fastboot it.

This is for the LG v10.

Thanks,

Zach

Upvotes: 4

Views: 7897

Answers (1)

Sun
Sun

Reputation: 1581

There is no way to do that other than to hack the naming convention inside your kernel.

64 bit arm kernels will be compiled under name of "Image"

32 bit arm kernels will be compiled under name of "zImage"

Upvotes: 4

Related Questions