summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaiane Angolini <daiane.angolini@foundries.io>2023-09-14 16:03:20 -0300
committerJoao Paulo Goncalves <joao.goncalves@toradex.com>2023-10-05 14:14:46 -0300
commit8bf41abe2a57beb4dec99e3655a79e4754bb0f18 (patch)
treeed45c40759ab475c613cc17a16f821b81e8fd31f
parent7872616d222b8e0aa0573bba154a996566262091 (diff)
downloadmeta-freescale-8bf41abe2a57beb4dec99e3655a79e4754bb0f18.tar.gz
u-boot-imx: Fix the file permission during the installation
Signed-off-by: Daiane Angolini <daiane.angolini@foundries.io>
-rw-r--r--recipes-bsp/u-boot/u-boot-imx_2022.04.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-imx_2022.04.bb b/recipes-bsp/u-boot/u-boot-imx_2022.04.bb
index c1ddf12f..f3364df7 100644
--- a/recipes-bsp/u-boot/u-boot-imx_2022.04.bb
+++ b/recipes-bsp/u-boot/u-boot-imx_2022.04.bb
@@ -27,8 +27,8 @@ do_deploy:append:mx8m-generic-bsp() {
27 if [ $j -eq $i ] 27 if [ $j -eq $i ]
28 then 28 then
29 install -d ${DEPLOYDIR}/${BOOT_TOOLS} 29 install -d ${DEPLOYDIR}/${BOOT_TOOLS}
30 install -m 0777 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS} 30 install -m 0644 ${B}/${config}/arch/arm/dts/${UBOOT_DTB_NAME} ${DEPLOYDIR}/${BOOT_TOOLS}
31 install -m 0777 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${type} 31 install -m 0644 ${B}/${config}/u-boot-nodtb.bin ${DEPLOYDIR}/${BOOT_TOOLS}/u-boot-nodtb.bin-${MACHINE}-${type}
32 fi 32 fi
33 done 33 done
34 unset j 34 unset j