mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
mtd-utils: add "jffs" and "ubifs" PACKAGECONFIG options
Enabled by default, but allow to optionally disable them. (From OE-Core rev: c8900a7e79976b044791a2d58d5e24f05b1690d5) Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e164dc4184
commit
2806373ef2
@@ -24,10 +24,12 @@ EXTRA_OECONF += "--enable-install-tests"
|
||||
# xattr support creates an additional compile-time dependency on acl because
|
||||
# the sys/acl.h header is needed. libacl is not needed and thus enabling xattr
|
||||
# regardless whether acl is enabled or disabled in the distro should be okay.
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)} lzo"
|
||||
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)} lzo jffs ubifs"
|
||||
PACKAGECONFIG[lzo] = "--with-lzo,--without-lzo,lzo"
|
||||
PACKAGECONFIG[xattr] = "--with-xattr,--without-xattr,acl"
|
||||
PACKAGECONFIG[crypto] = "--with-crypto,--without-crypto,openssl"
|
||||
PACKAGECONFIG[jffs] = "--with-jffs,--without-jffs"
|
||||
PACKAGECONFIG[ubifs] = "--with-ubifs,--without-ubifs"
|
||||
|
||||
CPPFLAGS_append_riscv64 = " -pthread -D_REENTRANT"
|
||||
|
||||
@@ -59,7 +61,9 @@ do_install () {
|
||||
oe_runmake install DESTDIR=${D} SBINDIR=${sbindir} MANDIR=${mandir} INCLUDEDIR=${includedir}
|
||||
}
|
||||
|
||||
PACKAGES =+ "mtd-utils-jffs2 mtd-utils-ubifs mtd-utils-misc mtd-utils-tests"
|
||||
PACKAGES =+ "mtd-utils-misc mtd-utils-tests"
|
||||
PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "jffs", "mtd-utils-jffs2", "", d)}"
|
||||
PACKAGES =+ "${@bb.utils.contains("PACKAGECONFIG", "ubifs", "mtd-utils-ubifs", "", d)}"
|
||||
|
||||
FILES_mtd-utils-jffs2 = "${sbindir}/mkfs.jffs2 ${sbindir}/jffs2dump ${sbindir}/jffs2reader ${sbindir}/sumtool"
|
||||
FILES_mtd-utils-ubifs = "${sbindir}/mkfs.ubifs ${sbindir}/ubi*"
|
||||
|
||||
Reference in New Issue
Block a user