diff options
Diffstat (limited to 'meta/recipes-devtools/mtd/mtd-utils_git.bb')
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils_git.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mtd/mtd-utils_git.bb b/meta/recipes-devtools/mtd/mtd-utils_git.bb new file mode 100644 index 0000000000..f1e2a8e084 --- /dev/null +++ b/meta/recipes-devtools/mtd/mtd-utils_git.bb | |||
@@ -0,0 +1,33 @@ | |||
1 | SUMMARY = "Tools for managing memory technology devices" | ||
2 | SECTION = "base" | ||
3 | DEPENDS = "zlib lzo e2fsprogs util-linux" | ||
4 | HOMEPAGE = "http://www.linux-mtd.infradead.org/" | ||
5 | LICENSE = "GPLv2+" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | ||
7 | file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c" | ||
8 | |||
9 | # Use the latest version at 26 Oct, 2013 | ||
10 | SRCREV = "dcea43eba91642939c82739387147da26d572758" | ||
11 | SRC_URI = "git://git.infradead.org/mtd-utils.git \ | ||
12 | file://add-exclusion-to-mkfs-jffs2-git-2.patch \ | ||
13 | " | ||
14 | |||
15 | PV = "1.5.0+git${SRCPV}" | ||
16 | |||
17 | S = "${WORKDIR}/git/" | ||
18 | |||
19 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'" | ||
20 | |||
21 | do_install () { | ||
22 | oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir} | ||
23 | } | ||
24 | |||
25 | PACKAGES =+ "mtd-utils-jffs2 mtd-utils-ubifs mtd-utils-misc" | ||
26 | |||
27 | FILES_mtd-utils-jffs2 = "${sbindir}/mkfs.jffs2 ${sbindir}/jffs2dump ${sbindir}/jffs2reader ${sbindir}/sumtool" | ||
28 | FILES_mtd-utils-ubifs = "${sbindir}/mkfs.ubifs ${sbindir}/ubi*" | ||
29 | FILES_mtd-utils-misc = "${sbindir}/nftl* ${sbindir}/ftl* ${sbindir}/rfd* ${sbindir}/doc* ${sbindir}/serve_image ${sbindir}/recv_image" | ||
30 | |||
31 | PARALLEL_MAKE = "" | ||
32 | |||
33 | BBCLASSEXTEND = "native" | ||