summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2023-06-20 15:57:04 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2023-06-20 15:57:04 +0200
commit2038ae25edaffb95b5f4e4a65a17d53720e2440d (patch)
treef1c6f5c1365805d30567adcf6af361abb8af095e
parent378db7384cbdb84b4dead84af0b0a05c36bd65fe (diff)
u-boot-toradex_2022.04: fix deploy loop over u-boot configs
Otherwise it breaks builds where more than one UBOOT_CONFIG is defined. Related-to: ELB-5213 Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-toradex-common_2022.04.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/u-boot/u-boot-toradex-common_2022.04.inc b/recipes-bsp/u-boot/u-boot-toradex-common_2022.04.inc
index 9b30b07..025938d 100644
--- a/recipes-bsp/u-boot/u-boot-toradex-common_2022.04.inc
+++ b/recipes-bsp/u-boot/u-boot-toradex-common_2022.04.inc
@@ -32,7 +32,7 @@ do_deploy:append:mx8m-generic-bsp() {
then
install -d ${DEPLOYDIR}/${BOOT_TOOLS}
install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
- install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${UBOOT_CONFIG}
+ install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${type}
fi
done
unset j