1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-09 05:29:32 +00:00

mtd-utils: Convert to BBCLASSEXTEND

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2009-11-05 17:54:58 +00:00
parent f74f080643
commit 71b09b016b
3 changed files with 9 additions and 30 deletions
-13
View File
@@ -1,13 +0,0 @@
inherit native
DEPENDS = "zlib-native lzo-native"
do_stage () {
install -d ${STAGING_INCDIR}/mtd
for f in ${S}/include/mtd/*.h; do
install -m 0644 $f ${STAGING_INCDIR}/mtd/
done
for binary in ${mtd_utils}; do
install -m 0755 $binary ${STAGING_BINDIR}
done
}
@@ -1,2 +0,0 @@
require mtd-utils_${PV}.bb
require mtd-utils-native.inc
+9 -15
View File
@@ -3,7 +3,7 @@ SECTION = "base"
DEPENDS = "zlib lzo"
HOMEPAGE = "http://www.linux-mtd.infradead.org/"
LICENSE = "GPLv2"
PR = "r1"
PR = "r2"
SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=b995f89a81589be8d8a41c374a6df109d0ee12b3 \
file://add-exclusion-to-mkfs-jffs2-git.patch;patch=1 \
@@ -14,22 +14,16 @@ S = "${WORKDIR}/git/"
EXTRA_OEMAKE = "'CC=${CC}' 'CFLAGS=${CFLAGS} -I${S}/include -DWITHOUT_XATTR'"
do_stage () {
install -d ${STAGING_INCDIR}/mtd
for f in ${S}/include/mtd/*.h; do
install -m 0644 $f ${STAGING_INCDIR}/mtd/
done
for binary in ${mtd_utils}; do
install -m 0755 $binary ${STAGING_BINDIR}
done
}
mtd_utils = "ftl_format flash_erase flash_eraseall nanddump doc_loadbios \
ftl_check mkfs.jffs2 flash_lock flash_unlock flash_info mtd_debug \
flashcp nandwrite jffs2dump sumtool"
do_install () {
oe_runmake install DESTDIR=${D}
install -d ${D}${includedir}/mtd/
for f in ${S}/include/mtd/*.h; do
install -m 0644 $f ${D}${includedir}/mtd/
done
}
PARALLEL_MAKE = ""
BBCLASSEXTEND = "native"
NATIVE_INSTALL_WORKS = "1"