From 0f5414842e9dd9a26f5c3657067b8112ad898065 Mon Sep 17 00:00:00 2001 From: Ayoub Zaki Date: Mon, 2 Feb 2026 10:49:22 +0100 Subject: [PATCH] linux-raspberrypi.inc: relax uboot ENTRYPOINT/LOADADDRESS definitions Set UBOOT_ENTRYPOINT/UBOOT_LOADADDRESS using the weak assignment operator (?=) to allow for easier override in downstream layers or machine configurations without forcing a hardcoded value. Signed-off-by: Ayoub Zaki --- recipes-kernel/linux/linux-raspberrypi.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-kernel/linux/linux-raspberrypi.inc b/recipes-kernel/linux/linux-raspberrypi.inc index 036ff220c..67d67aa85 100644 --- a/recipes-kernel/linux/linux-raspberrypi.inc +++ b/recipes-kernel/linux/linux-raspberrypi.inc @@ -44,5 +44,5 @@ KERNEL_MODULE_AUTOLOAD += "${@bb.utils.contains("MACHINE_FEATURES", "pitft28r", # manually. This value unused if KERNEL_IMAGETYPE is not uImage. KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" -UBOOT_ENTRYPOINT = "0x00008000" -UBOOT_LOADADDRESS = "0x00008000" +UBOOT_ENTRYPOINT ?= "0x00008000" +UBOOT_LOADADDRESS ?= "0x00008000"