From 543cb5ceddc9f056ca06015908a2867aa4d7f1d7 Mon Sep 17 00:00:00 2001 From: Hector Palacios Date: Fri, 11 Apr 2025 13:00:39 +0200 Subject: [PATCH] u-boot-dey: install all variants of U-Boot binaries The function had into account the memory variants when copying U-Boot device trees, but not the U-Boot binaries themselves. Signed-off-by: Hector Palacios --- meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc index 40845582c..4d0edc6c9 100644 --- a/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc +++ b/meta-digi-arm/recipes-bsp/u-boot/u-boot-dey.inc @@ -277,9 +277,10 @@ u_boot_sysroot_populate() { for devicetree in ${UBOOT_DEVICETREE}; do # Install u-boot dtb install -m 644 ${B}/${config}/arch/arm/dts/${devicetree}.dtb ${dest}/${FIP_UBOOT_DTB}-${devicetree}.dtb + # Install u-boot binary + install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${dest}/u-boot-nodtb-${devicetree}.bin done fi - install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${dest}/u-boot-nodtb-${devicetree}.bin done } SYSROOT_PREPROCESS_FUNCS:stm32mpcommon =+ "u_boot_sysroot_populate"