summaryrefslogtreecommitdiff
path: root/packages/uboot-utils
diff options
context:
space:
mode:
authorRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
committerRod Whitby <rod@whitby.id.au>2007-03-15 10:30:13 +0000
commit708f0e7e1f3f572030d64a3f3f05e722fd020d8b (patch)
tree4be05ed5742d015e6de43d64f45fbffe31b8223a /packages/uboot-utils
parente1027a8a6260805797310c6bc0e32b3d0d8e0eca (diff)
dfu-util-native, ftdi-eeprom-native, tzcode-native, u-boot, uboot-utils: create the STAGING_BINDIR_NATIVE directory before installing stuff into it.
Diffstat (limited to 'packages/uboot-utils')
-rw-r--r--packages/uboot-utils/uboot-utils_1.1.2.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages/uboot-utils/uboot-utils_1.1.2.bb b/packages/uboot-utils/uboot-utils_1.1.2.bb
index 292c97f134..621a55c964 100644
--- a/packages/uboot-utils/uboot-utils_1.1.2.bb
+++ b/packages/uboot-utils/uboot-utils_1.1.2.bb
@@ -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 () {