From: Chris Larson Date: Thu, 11 Sep 2003 20:55:34 +0000 (+0000) Subject: Add mtd install function. X-Git-Tag: Release-2010-05/1~20867 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=424a3b3e609340ba294492dbe0a3349a2ca73fda;p=openembedded.git Add mtd install function. BKrev: 3f60e146aaVfMXvc2mLpVBFIKcsa1g --- diff --git a/content/mtd.oe b/content/mtd.oe index e69de29bb2..87988871ff 100644 --- a/content/mtd.oe +++ b/content/mtd.oe @@ -0,0 +1,19 @@ +PV = ${@os.popen("date +%Y%m%d").readline().strip()} + +S = ${WORKDIR}/mtd/util +SRC_URI = cvs://anoncvs:anoncvs@cvs.infradead.org/home/cvs;module=mtd + +#EXTRA_OEMAKE_append = " util" +CFLAGS_prepend = "-I${S}/../include " +CPPFLAGS_prepend = "-I${S}/../include " +CXXFLAGS_prepend = "-I${S}/../include " + +do_install () { + set -e + install -d ${D}/usr/bin + 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}/usr/bin/ + done +}