dfu-util-native, ftdi-eeprom-native, tzcode-native, u-boot, uboot-utils: create the...
authorRod Whitby <rod@whitby.id.au>
Thu, 15 Mar 2007 10:30:13 +0000 (10:30 +0000)
committerRod Whitby <rod@whitby.id.au>
Thu, 15 Mar 2007 10:30:13 +0000 (10:30 +0000)
packages/dfu-util/dfu-util-native_svn.bb
packages/libftdi/ftdi-eeprom-native_0.2.bb
packages/tzcode/tzcode-native_2007c.bb
packages/uboot-utils/uboot-utils_1.1.2.bb
packages/uboot/u-boot.inc

index af6603d..9bfe4ba 100644 (file)
@@ -5,7 +5,8 @@ inherit native
 DEPENDS = "libusb-native"
 
 do_stage() {
-       install -m 0755 src/dfu-util ${STAGING_BINDIR_NATIVE}
+       install -d ${STAGING_BINDIR_NATIVE}
+       install -m 0755 src/dfu-util ${STAGING_BINDIR_NATIVE}/
 }
 
 do_deploy() {
index 1b48bd0..5661396 100644 (file)
@@ -3,6 +3,7 @@ require ftdi-eeprom_${PV}.bb
 DEPENDS = "libftdi-native confuse-native"
 
 do_stage() {
-    install -m 0755 ftdi_eeprom/ftdi_eeprom ${STAGING_BINDIR_NATIVE}
+    install -d ${STAGING_BINDIR_NATIVE}
+    install -m 0755 ftdi_eeprom/ftdi_eeprom ${STAGING_BINDIR_NATIVE}/
 }
 
index 126658b..aed4253 100644 (file)
@@ -1,6 +1,6 @@
 DESCRIPTION = "tzcode, timezone zoneinfo utils -- zic, zdump, tzselect"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "ftp://elsie.nci.nih.gov/pub/tzcode${PV}.tar.gz \
            ftp://elsie.nci.nih.gov/pub/tzdata${PV}.tar.gz"
@@ -10,9 +10,10 @@ S = "${WORKDIR}"
 inherit native
 
 do_stage () {
-        install -m 755 zic ${STAGING_BINDIR_NATIVE}
-        install -m 755 zdump ${STAGING_BINDIR_NATIVE}
-        install -m 755 tzselect ${STAGING_BINDIR_NATIVE}
+        install -d ${STAGING_BINDIR_NATIVE}
+        install -m 755 zic ${STAGING_BINDIR_NATIVE}/
+        install -m 755 zdump ${STAGING_BINDIR_NATIVE}/
+        install -m 755 tzselect ${STAGING_BINDIR_NATIVE}/
 }
 
 do_install () {
index 292c97f..621a55c 100644 (file)
@@ -3,7 +3,7 @@ SECTION = "bootloaders"
 PRIORITY = "optional"
 LICENSE = "GPL"
 DEPENDS = "mtd-utils"
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/u-boot/u-boot-${PV}.tar.bz2 \
         file://fw_env.c.patch;patch=1 \
@@ -30,7 +30,8 @@ do_compile () {
 
 # install mkimage for the kernel makefile
 do_stage() {
-       install -m 755 ${S}/tools/mkimage ${STAGING_BINDIR_NATIVE}
+       install -d ${STAGING_BINDIR_NATIVE}
+       install -m 755 ${S}/tools/mkimage ${STAGING_BINDIR_NATIVE}/
 }
 
 do_install () {
index 3b26e55..d9b2f7b 100644 (file)
@@ -26,5 +26,6 @@ do_deploy[dirs] = "${S}"
 addtask deploy before do_build after do_compile
 
 do_stage() {
-       install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}
+       install -d ${STAGING_BINDIR_NATIVE}
+       install -m755 tools/mkimage ${STAGING_BINDIR_NATIVE}/
 }