summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2025-10-15 08:18:41 -0300
committerGitHub <noreply@github.com>2025-10-15 08:18:41 -0300
commitb03b85889526d1684f8027abaab60d81238a3572 (patch)
tree1ebd596626e2b27996ae650696dbdaccb0f006c2
parentf5960ce427be2758acc52eeb9929d2aa4b4ac3f6 (diff)
parent05f7b4a327515705244ae3cbddcdd055a46c8692 (diff)
downloadmeta-freescale-master.tar.gz
Merge pull request #2394 from nxp-upstream/uboot-builddir-changeHEADmaster
u-boot-qoriq:Fix do_deploy failure as build path updated in upstream
-rw-r--r--recipes-bsp/u-boot/u-boot-qoriq_2025.04.bb8
1 files changed, 5 insertions, 3 deletions
diff --git a/recipes-bsp/u-boot/u-boot-qoriq_2025.04.bb b/recipes-bsp/u-boot/u-boot-qoriq_2025.04.bb
index 7fb10ad3b..b8d0bc8c4 100644
--- a/recipes-bsp/u-boot/u-boot-qoriq_2025.04.bb
+++ b/recipes-bsp/u-boot/u-boot-qoriq_2025.04.bb
@@ -103,7 +103,8 @@ do_deploy:append:lx2162a () {
103 if [ $j -eq $i ] 103 if [ $j -eq $i ]
104 then 104 then
105 if [ "tfa-verified-boot" = "${type}" ];then 105 if [ "tfa-verified-boot" = "${type}" ];then
106 install -m 644 ${B}/${config}/u-boot.dtb ${DEPLOYDIR}/u-boot.dtb 106 builddir="${config}-${type}"
107 install -m 644 ${B}/${builddir/u-boot.dtb ${DEPLOYDIR}/u-boot.dtb
107 fi 108 fi
108 fi 109 fi
109 done 110 done
@@ -123,8 +124,9 @@ do_deploy:append:ls102xa () {
123 if [ $j -eq $i ] 124 if [ $j -eq $i ]
124 then 125 then
125 if expr "$type" : sdcard;then 126 if expr "$type" : sdcard;then
126 install -m 644 ${B}/${config}/u-boot-dtb.bin ${DEPLOYDIR}/u-boot-dtb.${UBOOT_SUFFIX}-${type} 127 builddir="${config}-${type}"
127 install -m 644 ${B}/${config}/spl/u-boot-spl.bin ${DEPLOYDIR}/u-boot-spl.${UBOOT_SUFFIX}-${type} 128 install -m 644 ${B}/${builddir}/u-boot-dtb.bin ${DEPLOYDIR}/u-boot-dtb.${UBOOT_SUFFIX}-${type}
129 install -m 644 ${B}/${builddir}/spl/u-boot-spl.bin ${DEPLOYDIR}/u-boot-spl.${UBOOT_SUFFIX}-${type}
128 fi 130 fi
129 fi 131 fi
130 done 132 done