summaryrefslogtreecommitdiff
path: root/mtd/mtd_20041113.oe
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2004-11-15 17:20:58 +0000
committerHolger Freyther <zecke@selfish.org>2004-11-15 17:20:58 +0000
commit5fe01686b5a5dcf6e0947e232c6b640c69e3a649 (patch)
treea6baee56863e16c8b74c92315e02b93ba5b69afc /mtd/mtd_20041113.oe
parent0135110849aeff311d94f02e6516a6706d973b61 (diff)
MTD:
-Remove PV from the .oe to unbreak the build. Now the 20041113 snapshot is taken BKrev: 4198e57a64Pnn27KtyaUZnR_h0FVQQ
Diffstat (limited to 'mtd/mtd_20041113.oe')
-rw-r--r--mtd/mtd_20041113.oe29
1 files changed, 29 insertions, 0 deletions
diff --git a/mtd/mtd_20041113.oe b/mtd/mtd_20041113.oe
index e69de29bb2..eba7fb0625 100644
--- a/mtd/mtd_20041113.oe
+++ b/mtd/mtd_20041113.oe
@@ -0,0 +1,29 @@
+SECTION = "base"
+DEPENDS = "zlib"
+DESCRIPTION = "Tools for managing memory technology devices."
+
+S = "${WORKDIR}/mtd/"
+#SRC_URI = "cvs://anoncvs@cvs.infradead.org/home/cvs;module=mtd;method=ext"
+SRC_URI = "ftp://ftp.uk.linux.org/pub/people/dwmw2/mtd/cvs/mtd-snapshot-${PV}.tar.bz2"
+
+CFLAGS_prepend = "-I${S}/include "
+
+do_compile () {
+ oe_runmake -C util
+}
+
+do_stage () {
+ install -d ${STAGING_INCDIR}/mtd
+ for f in ${S}/include/mtd/*.h; do
+ install -m 0644 $f ${STAGING_INCDIR}/mtd/
+ done
+}
+
+do_install () {
+ install -d ${D}${bindir}
+ for binary in ftl_format flash_erase flash_eraseall nanddump doc_loadbios \
+ mkfs.jffs ftl_check mkfs.jffs2 flash_lock flash_unlock flash_info mtd_debug \
+ flashcp nandwrite jffs2dump; do
+ install -m 0755 util/$binary ${D}${bindir}
+ done
+}