From: Marcin Juszkiewicz Date: Wed, 1 Aug 2007 09:07:25 +0000 (+0000) Subject: uboot-gta01: deployed files are not executable so use -m 0644 during installing them X-Git-Tag: Release-2010-05/1~8868^2~62^2~26 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c99a7bca82497c8cb3bb8fe56660be5b811eec7c;p=openembedded.git uboot-gta01: deployed files are not executable so use -m 0644 during installing them --- 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