mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
mtd-utils: Convert to BBCLASSEXTEND
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -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
|
|
||||||
@@ -3,7 +3,7 @@ SECTION = "base"
|
|||||||
DEPENDS = "zlib lzo"
|
DEPENDS = "zlib lzo"
|
||||||
HOMEPAGE = "http://www.linux-mtd.infradead.org/"
|
HOMEPAGE = "http://www.linux-mtd.infradead.org/"
|
||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
PR = "r1"
|
PR = "r2"
|
||||||
|
|
||||||
SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=b995f89a81589be8d8a41c374a6df109d0ee12b3 \
|
SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=b995f89a81589be8d8a41c374a6df109d0ee12b3 \
|
||||||
file://add-exclusion-to-mkfs-jffs2-git.patch;patch=1 \
|
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'"
|
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 () {
|
do_install () {
|
||||||
oe_runmake install DESTDIR=${D}
|
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 = ""
|
PARALLEL_MAKE = ""
|
||||||
|
|
||||||
|
BBCLASSEXTEND = "native"
|
||||||
|
NATIVE_INSTALL_WORKS = "1"
|
||||||
|
|||||||
Reference in New Issue
Block a user