From fe7592fe9c40637afe56182114fda5f4242ceb29 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Fri, 5 Jan 2024 15:06:03 +0200 Subject: [PATCH] conf/machine/raspberrypi5.conf: Use "Image" "zImage" not supported on arm64 so set KERNEL_IMAGETYPE_DIRECT to "Image" for Raspberry Pi 5 and avoid the following errors: | make: *** No rule to make target 'zImage'. Stop. | ERROR: oe_runmake failed This work was sponsored by GOVCERT.LU. Signed-off-by: Leon Anavi --- conf/machine/raspberrypi5.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/machine/raspberrypi5.conf b/conf/machine/raspberrypi5.conf index 21221fd..8c38637 100644 --- a/conf/machine/raspberrypi5.conf +++ b/conf/machine/raspberrypi5.conf @@ -21,3 +21,6 @@ SDIMG_KERNELIMAGE ?= "kernel_2712.img" SERIAL_CONSOLES ?= "115200;ttyAMA10" VC4DTBO ?= "vc4-kms-v3d" + +# "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet +KERNEL_IMAGETYPE_DIRECT ?= "Image"