From a0ebcf5639b391690b27381cc65c56c157a0981b Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Mon, 3 Aug 2026 12:29:30 +0300 Subject: [PATCH] rpi-u-boot-scr: oe.kernel.map_uboot_arch Replace UBOOT_ARCH with oe.kernel.map_uboot_arch(d) because the variable has been dropped and all OE-Core usages are now independent of kernel-arch, following the change in oe-core with git commit 7e8523f3c16efb29657effd732a88e939eb0cf84. Signed-off-by: Leon Anavi --- recipes-bsp/rpi-u-boot-scr/rpi-u-boot-scr.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-bsp/rpi-u-boot-scr/rpi-u-boot-scr.bb b/recipes-bsp/rpi-u-boot-scr/rpi-u-boot-scr.bb index f201dc6..85d36ff 100644 --- a/recipes-bsp/rpi-u-boot-scr/rpi-u-boot-scr.bb +++ b/recipes-bsp/rpi-u-boot-scr/rpi-u-boot-scr.bb @@ -16,7 +16,7 @@ do_compile() { -e 's/@@KERNEL_BOOTCMD@@/${KERNEL_BOOTCMD}/' \ -e 's/@@BOOT_MEDIA@@/${BOOT_MEDIA}/' \ "${UNPACKDIR}/boot.cmd.in" > "${WORKDIR}/boot.cmd" - mkimage -A ${UBOOT_ARCH} -T script -C none -n "Boot script" -d "${WORKDIR}/boot.cmd" boot.scr + mkimage -A ${@oe.kernel.map_uboot_arch(d)} -T script -C none -n "Boot script" -d "${WORKDIR}/boot.cmd" boot.scr } inherit kernel-arch deploy nopackages