diff options
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 |