diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2025-10-15 08:18:41 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-15 08:18:41 -0300 |
| commit | b03b85889526d1684f8027abaab60d81238a3572 (patch) | |
| tree | 1ebd596626e2b27996ae650696dbdaccb0f006c2 | |
| parent | f5960ce427be2758acc52eeb9929d2aa4b4ac3f6 (diff) | |
| parent | 05f7b4a327515705244ae3cbddcdd055a46c8692 (diff) | |
| download | meta-freescale-b03b85889526d1684f8027abaab60d81238a3572.tar.gz | |
Merge pull request #2394 from nxp-upstream/uboot-builddir-change
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.bb | 8 |
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 |
