diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-11 03:44:46 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2007-03-11 03:44:46 +0000 |
commit | 36edc2f904a163ec02a3897a09c784a429396676 (patch) | |
tree | 1f95044f93c2ddf75de1a746e75cb556d32517e5 /packages/uboot-utils/uboot-utils_1.1.2.bb | |
parent | 3ee81f28552ce7acdd2206d3700b9fa3664a201c (diff) |
uboot-utils: Update to include configs specific to fic-gta01 and turbostation
Diffstat (limited to 'packages/uboot-utils/uboot-utils_1.1.2.bb')
-rw-r--r-- | packages/uboot-utils/uboot-utils_1.1.2.bb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/uboot-utils/uboot-utils_1.1.2.bb b/packages/uboot-utils/uboot-utils_1.1.2.bb index 4786b238a9..292c97f134 100644 --- a/packages/uboot-utils/uboot-utils_1.1.2.bb +++ b/packages/uboot-utils/uboot-utils_1.1.2.bb @@ -3,12 +3,13 @@ SECTION = "bootloaders" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "mtd-utils" -PR = "2" +PR = "r3" SRC_URI = "${SOURCEFORGE_MIRROR}/u-boot/u-boot-${PV}.tar.bz2 \ file://fw_env.c.patch;patch=1 \ file://tools-Makefile.patch;patch=1 \ - file://env-Makefile.patch;patch=1 " + file://env-Makefile.patch;patch=1 \ + file://fw_env.config" S = "${WORKDIR}/u-boot-${PV}" EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX}" @@ -35,7 +36,7 @@ do_stage() { do_install () { install -d ${D}/sbin install -d ${D}${sysconfdir} + install -m 644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/fw_env.config install -m 755 ${S}/tools/env/fw_printenv ${D}/sbin/fw_printenv install -m 755 ${S}/tools/env/fw_printenv ${D}/sbin/fw_setenv - install -m 644 ${S}/tools/env/fw_env.config ${D}${sysconfdir}/fw_env.config } |