blob: ed9cd0be566716f88421dbc01380ada76ca814a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DEPENDS = "zlib"
DESCRIPTION = "Tools for managing memory technology devices."
PV = "${CVSDATE}"
S = "${WORKDIR}/mtd/"
SRC_URI = "cvs://anoncvs:anoncvs@cvs.infradead.org/home/cvs;module=mtd \
file://stdint.patch;patch=1;pnum=0 \
file://removelinuxinc.patch;patch=1;pnum=1"
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
}
|