summaryrefslogtreecommitdiff
path: root/content/mtd.oe
blob: 78b7c4d62f93ae56cbe2178875ad3d04a03e8f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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

CFLAGS_prepend = "-I${S}/../include "
CPPFLAGS_prepend = "-I${S}/../include "
CXXFLAGS_prepend = "-I${S}/../include "

do_install () {
	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
}