aboutsummaryrefslogtreecommitdiffstats
path: root/mtd/mtd.oe
blob: 64b8116825ea81a26216d1ff719f058af4c2b849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
DEPENDS = virtual/libc zlib
RDEPENDS = libc6 zlib1g
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}${bindir}
	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}${bindir}
	done
}