aboutsummaryrefslogtreecommitdiffstats
path: root/mtd/mtd_20041113.oe
diff options
context:
space:
mode:
Diffstat (limited to 'mtd/mtd_20041113.oe')
-rw-r--r--mtd/mtd_20041113.oe33
1 files changed, 0 insertions, 33 deletions
diff --git a/mtd/mtd_20041113.oe b/mtd/mtd_20041113.oe
deleted file mode 100644
index 5646840fc4..0000000000
--- a/mtd/mtd_20041113.oe
+++ /dev/null
@@ -1,33 +0,0 @@
-DESCRIPTION = "Tools for managing memory technology devices."
-SECTION = "base"
-DEPENDS = "zlib"
-HOMEPAGE = "http://www.linux-mtd.infradead.org/"
-LICENSE = "GPLv2"
-PR = "r1"
-
-SRC_URI = "ftp://ftp.uk.linux.org/pub/people/dwmw2/mtd/cvs/mtd-snapshot-${PV}.tar.bz2 \
- file://add-exclusion-to-mkfs-jffs2.patch;patch=1"
-S = "${WORKDIR}/mtd/"
-
-
-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
-}