diff options
author | Greg Gilbert <greg@treke.net> | 2004-04-01 17:57:33 +0000 |
---|---|---|
committer | Greg Gilbert <greg@treke.net> | 2004-04-01 17:57:33 +0000 |
commit | 0851f86cd64bd723f578846da6676c8782ac65d7 (patch) | |
tree | b0dca317473f34966669bf0c669f47e4bb411f26 /mtd | |
parent | b94ebcc2d7bf22a9c1a73bc07db07ce0d02a8121 (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into olddog.(none):/home/ggilbert/oe/packages
2004/04/01 09:54:30-08:00 (none)!ggilbert
mtd-native.oe:
mtd-native: Patch from PB
* Adds proper FILESDIR declaration
* Fixes paths to binaries for do_stage
mtd.oe:
mtd: Patch from PB
* Fixes path to binaries in do_install
* Fixes ${S} to point at the correct directory
* Patches MTD to include headers that it requires
stdint.patch:
Change mode to -rw-r--r--
new file
BKrev: 406c580dMhUlBO9eWftdY7YVeC0ZiA
Diffstat (limited to 'mtd')
-rw-r--r-- | mtd/mtd-native.oe | 3 | ||||
-rw-r--r-- | mtd/mtd.oe | 11 | ||||
-rw-r--r-- | mtd/mtd/stdint.patch | 0 |
3 files changed, 10 insertions, 4 deletions
diff --git a/mtd/mtd-native.oe b/mtd/mtd-native.oe index 629fa0d497..39cd187dc0 100644 --- a/mtd/mtd-native.oe +++ b/mtd/mtd-native.oe @@ -1,11 +1,12 @@ include mtd.oe inherit native DEPENDS = "patcher-native" +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/mtd" do_stage () { for binary in ftl_format erase eraseall nanddump doc_loadbios \ mkfs.jffs ftl_check mkfs.jffs2 lock unlock einfo mtd_debug \ fcp nandwrite jffs2dump; do - install -m 0755 $binary ${STAGING_BINDIR}/ + install -m 0755 util/$binary ${STAGING_BINDIR}/ done } diff --git a/mtd/mtd.oe b/mtd/mtd.oe index facecd00b2..5fc2034e56 100644 --- a/mtd/mtd.oe +++ b/mtd/mtd.oe @@ -3,18 +3,23 @@ RDEPENDS = "libc6 zlib1g" DESCRIPTION = "Tools for managing memory technology devices." PV = "${CVSDATE}" -S = "${WORKDIR}/mtd/util" -SRC_URI = "cvs://anoncvs:anoncvs@cvs.infradead.org/home/cvs;module=mtd" +S = "${WORKDIR}/mtd/" +SRC_URI = "cvs://anoncvs:anoncvs@cvs.infradead.org/home/cvs;module=mtd \ + file://${FILESDIR}/stdint.patch;patch=1;pnum=0" CFLAGS_prepend = "-I${S}/../include " CPPFLAGS_prepend = "-I${S}/../include " CXXFLAGS_prepend = "-I${S}/../include " +do_compile () { + oe_runmake -C util +} + do_install () { install -d ${D}${bindir} for binary in ftl_format erase eraseall nanddump doc_loadbios \ mkfs.jffs ftl_check mkfs.jffs2 lock unlock einfo mtd_debug \ fcp nandwrite jffs2dump; do - install -m 0755 $binary ${D}${bindir} + install -m 0755 util/$binary ${D}${bindir} done } diff --git a/mtd/mtd/stdint.patch b/mtd/mtd/stdint.patch new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/mtd/mtd/stdint.patch |