diff options
author | Radu Moisan <radu.moisan@intel.com> | 2012-05-25 17:02:10 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-30 12:04:47 +0100 |
commit | 42dec00892c17bf9888504cdc5c7155070fbbea4 (patch) | |
tree | 7e96e3bdb58a30a207bd78de55d09f9fbf7ced58 /meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb | |
parent | e95e077789cfd2d80396e975bf6355de5135d8cc (diff) | |
download | poky-42dec00892c17bf9888504cdc5c7155070fbbea4.tar.gz |
mtd-utils: Update to version 1.5.0
(From OE-Core rev: f53a8aed0db26c6464751f340a7e010c45f76ebb)
Signed-off-by: Radu Moisan <radu.moisan@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb')
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb b/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb new file mode 100644 index 0000000000..daa3554317 --- /dev/null +++ b/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb | |||
@@ -0,0 +1,28 @@ | |||
1 | DESCRIPTION = "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 | SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f \ | ||
10 | file://add-exclusion-to-mkfs-jffs2-git-2.patch" | ||
11 | |||
12 | S = "${WORKDIR}/git/" | ||
13 | |||
14 | PR = "r0" | ||
15 | |||
16 | EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR' 'BUILDDIR=${S}'" | ||
17 | |||
18 | do_install () { | ||
19 | oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir} | ||
20 | install -d ${D}${includedir}/mtd/ | ||
21 | for f in ${S}/include/mtd/*.h; do | ||
22 | install -m 0644 $f ${D}${includedir}/mtd/ | ||
23 | done | ||
24 | } | ||
25 | |||
26 | PARALLEL_MAKE = "" | ||
27 | |||
28 | BBCLASSEXTEND = "native" | ||