[oe-commits] org.oe.dev uboot-gta01: deployed files are not executable so use -m 0644 during installing them

hrw commit openembedded-commits at lists.openembedded.org
Wed Aug 1 09:23:02 UTC 2007


uboot-gta01: deployed files are not executable so use -m 0644 during installing them

Author: hrw at openembedded.org
Branch: org.openembedded.dev
Revision: 0f5e76a03b14af62e400acbd3cebb1610585dd28
ViewMTN: http://monotone.openembedded.org/revision.psp?id=0f5e76a03b14af62e400acbd3cebb1610585dd28
Files:
1
packages/uboot/uboot-gta01_svn.bb
Diffs:

#
# mt diff -r2ad46d2a61d6cf2001527f85254a4bfb8355728c -r0f5e76a03b14af62e400acbd3cebb1610585dd28
#
# 
# 
# patch "packages/uboot/uboot-gta01_svn.bb"
#  from [62211a5a9b706926a1f230401f042f8add732e37]
#    to [32eb07ab20fbe4bfcde0f6e323b372dcbb347192]
# 
============================================================
--- packages/uboot/uboot-gta01_svn.bb	62211a5a9b706926a1f230401f042f8add732e37
+++ packages/uboot/uboot-gta01_svn.bb	32eb07ab20fbe4bfcde0f6e323b372dcbb347192
@@ -1,10 +1,10 @@ PV = "1.2.0+svn${SRCDATE}"
 DESCRIPTION = "U-boot bootloader w/ Neo1973 (GTA01) support"
 AUTHOR = "Harald Welte <laforge at openmoko.org>"
 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






More information about the Openembedded-commits mailing list