From fb03b44883db64d3e15d1496018169467907c4f1 Mon Sep 17 00:00:00 2001 From: Tim Orling Date: Sat, 9 Mar 2024 07:57:52 -0800 Subject: [PATCH] raspberrypi5.conf: Fix KERNEL_IMAGETYPE_UBOOT Similar to raspberrypi4-64.conf, we need to set KERNEL_IMAGETYPE_UBOOT to "Image" and set KERNEL_BOOTCMD to "booti" Signed-off-by: Tim Orling --- conf/machine/raspberrypi5.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conf/machine/raspberrypi5.conf b/conf/machine/raspberrypi5.conf index e53c2d54..03f15c35 100644 --- a/conf/machine/raspberrypi5.conf +++ b/conf/machine/raspberrypi5.conf @@ -22,7 +22,11 @@ SERIAL_CONSOLES ?= "115200;ttyAMA10" VC4DTBO ?= "vc4-kms-v3d" +# When u-boot is enabled we need to use the "Image" format and the "booti" +# command to load the kernel +KERNEL_IMAGETYPE_UBOOT ?= "Image" # "zImage" not supported on arm64 and ".gz" images not supported by bootloader yet KERNEL_IMAGETYPE_DIRECT ?= "Image" +KERNEL_BOOTCMD ?= "booti" UBOOT_MACHINE = "rpi_arm64_config"