diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2023-09-14 16:22:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 16:22:55 -0300 |
commit | 66552db05b59eecd551a1cf2f94cfaf9239a7379 (patch) | |
tree | 04ac53e4210e1bf829118e46fe459704e2934c1b | |
parent | 669a5cd45ebb260aff53f0ba3aa0337c6d596928 (diff) | |
parent | 1887be756d8005edd30b159569cf977abce38d53 (diff) | |
download | meta-freescale-66552db05b59eecd551a1cf2f94cfaf9239a7379.tar.gz |
Merge pull request #1652 from angolini/install-fix
u-boot-imx: Fix the file permission during the installation
-rw-r--r-- | recipes-bsp/u-boot/u-boot-imx_2023.04.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/u-boot/u-boot-imx_2023.04.bb b/recipes-bsp/u-boot/u-boot-imx_2023.04.bb index 59dcee56..3d588564 100644 --- a/recipes-bsp/u-boot/u-boot-imx_2023.04.bb +++ b/recipes-bsp/u-boot/u-boot-imx_2023.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 |