From: Oyvind Repvik Date: Thu, 8 Mar 2007 19:51:17 +0000 (+0000) Subject: uboot-utils: Make it usable on other machines than the storcenter X-Git-Tag: Release-2010-05/1~8868^2~1099^2~2^2~11 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a66295bdb7a68583be6fd92a0090b258f72c33b;p=openembedded.git uboot-utils: Make it usable on other machines than the storcenter --- diff --git a/packages/uboot-utils/files/.mtn2git_empty b/packages/uboot-utils/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/uboot-utils/env-Makefile.patch b/packages/uboot-utils/files/env-Makefile.patch similarity index 100% rename from packages/uboot-utils/env-Makefile.patch rename to packages/uboot-utils/files/env-Makefile.patch diff --git a/packages/uboot-utils/fw_env.c.patch b/packages/uboot-utils/files/fw_env.c.patch similarity index 100% rename from packages/uboot-utils/fw_env.c.patch rename to packages/uboot-utils/files/fw_env.c.patch diff --git a/packages/uboot-utils/fw_env.h.patch b/packages/uboot-utils/files/fw_env.h.patch similarity index 100% rename from packages/uboot-utils/fw_env.h.patch rename to packages/uboot-utils/files/fw_env.h.patch diff --git a/packages/uboot-utils/tools-Makefile.patch b/packages/uboot-utils/files/tools-Makefile.patch similarity index 100% rename from packages/uboot-utils/tools-Makefile.patch rename to packages/uboot-utils/files/tools-Makefile.patch diff --git a/packages/uboot-utils/uboot-utils_1.1.2.bb b/packages/uboot-utils/uboot-utils_1.1.2.bb index 3bcf1eba6c..97804dacf8 100644 --- a/packages/uboot-utils/uboot-utils_1.1.2.bb +++ b/packages/uboot-utils/uboot-utils_1.1.2.bb @@ -3,9 +3,9 @@ SECTION = "bootloaders" PRIORITY = "optional" LICENSE = "GPL" DEPENDS = "mtd-utils" +PR = "1" SRC_URI = "${SOURCEFORGE_MIRROR}/u-boot/u-boot-${PV}.tar.bz2 \ - file://fw_env.h.patch;patch=1 \ file://fw_env.c.patch;patch=1 \ file://tools-Makefile.patch;patch=1 \ file://env-Makefile.patch;patch=1 " @@ -33,7 +33,9 @@ do_stage() { } do_install () { - install -d ${D}/sbin + install -d ${D}/sbin + install -d ${D}${sysconfdir} 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 }