diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-18 19:46:17 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-06-18 19:46:17 +0000 |
commit | 695eea9abc88335042837884e199b4ecce014986 (patch) | |
tree | 8e258b69a3aefc3f39d14d28fd95e363f0afcef0 /mtd/mtd_20040614.oe | |
parent | 58cd05df2f010494d77026889106de0bc94e763e (diff) |
fixed SRC_URI from CVSDATE to PV
BKrev: 40d34689lGIi17u9KzWDVcXWhYw3Bw
Diffstat (limited to 'mtd/mtd_20040614.oe')
-rw-r--r-- | mtd/mtd_20040614.oe | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mtd/mtd_20040614.oe b/mtd/mtd_20040614.oe index e69de29bb2..9087d791ef 100644 --- a/mtd/mtd_20040614.oe +++ b/mtd/mtd_20040614.oe @@ -0,0 +1,23 @@ +DEPENDS = "zlib" +DESCRIPTION = "Tools for managing memory technology devices." +#PV = "${CVSDATE}" +PV = "20040614" + +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_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 +} |