diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-08-01 09:07:25 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-08-01 09:07:25 +0000 |
commit | c99a7bca82497c8cb3bb8fe56660be5b811eec7c (patch) | |
tree | 9c3ff4cf5cecb6873f373cf061b4d858b3cb5958 /packages/uboot | |
parent | 59713bf8990a1c284d7ba95989baeb58458f0881 (diff) |
uboot-gta01: deployed files are not executable so use -m 0644 during installing them
Diffstat (limited to 'packages/uboot')
-rw-r--r-- | packages/uboot/uboot-gta01_svn.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/uboot/uboot-gta01_svn.bb b/packages/uboot/uboot-gta01_svn.bb index 2cf50c78bd..98622fe408 100644 --- a/packages/uboot/uboot-gta01_svn.bb +++ b/packages/uboot/uboot-gta01_svn.bb @@ -4,7 +4,7 @@ LICENSE = "GPL" SECTION = "bootloader" PRIORITY = "optional" PV = "1.2.0+svn${SRCDATE}" -PR = "r10" +PR = "r11" PROVIDES = "virtual/bootloader" S = "${WORKDIR}/git" @@ -66,10 +66,10 @@ do_deploy () { install -d ${DEPLOY_DIR_IMAGE} for mach in ${UBOOT_MACHINES} do - install ${S}/u-boot_${mach}.bin \ + install -m 0644 ${S}/u-boot_${mach}.bin \ ${DEPLOY_DIR_IMAGE}/u-boot-${mach}-${PR}.bin if [ -f ${S}/lowlevel_foo_${mach}.bin ]; then - install ${S}/lowlevel_foo_${mach}.bin \ + install -m 0644 ${S}/lowlevel_foo_${mach}.bin \ ${DEPLOY_DIR_IMAGE}/lowlevel_foo-${mach}-${PR}.bin fi done |