summaryrefslogtreecommitdiff
path: root/mtd/mtd.oe
blob: 7f06163305ba67f15e1b6dcdc7391e2dbce14d05 (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}/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
}