MTD:
authorHolger Freyther <zecke@selfish.org>
Mon, 15 Nov 2004 17:20:58 +0000 (17:20 +0000)
committerHolger Freyther <zecke@selfish.org>
Mon, 15 Nov 2004 17:20:58 +0000 (17:20 +0000)
-Remove PV from the .oe to unbreak the build. Now the 20041113 snapshot is taken

BKrev: 4198e57a64Pnn27KtyaUZnR_h0FVQQ

mtd/mtd_20041113.oe

index e69de29..eba7fb0 100644 (file)
@@ -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
+}