summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/u-boot
diff options
context:
space:
mode:
authorZelan Zou <zelan.zou@nxp.com>2025-10-15 17:56:11 +0800
committerZelan Zou <zelan.zou@nxp.com>2025-10-15 17:56:11 +0800
commit05f7b4a327515705244ae3cbddcdd055a46c8692 (patch)
tree1ebd596626e2b27996ae650696dbdaccb0f006c2 /recipes-bsp/u-boot
parentf5960ce427be2758acc52eeb9929d2aa4b4ac3f6 (diff)
downloadmeta-freescale-05f7b4a327515705244ae3cbddcdd055a46c8692.tar.gz
u-boot-qoriq:Fix do_deploy failure as build path updated in uboot-sign.bbclass
As Poky master introduces the u-boot build path refinition: - Now the unique build path is changes from ${B}/${config} ro ${B}/${config}-${type}. - It impacts the u-boot-nodtb.bin/DTB deployment. Poky commit: u-boot: Make sure the build dir is unique for each UBOOT_CONFIG 91f50b7c55968b0857818cf05c03488cd19452d4 Signed-off-by: Zelan Zou <zelan.zou@nxp.com>
Diffstat (limited to 'recipes-bsp/u-boot')
-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