summaryrefslogtreecommitdiffstats
path: root/meta-initramfs
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-05-26 13:54:09 -0700
committerKhem Raj <raj.khem@gmail.com>2022-05-28 10:51:07 -0700
commitcafbd12a64f2e91d1dea84985599f517f8d54336 (patch)
treeba967b7549c9b89295df595210782042e2905aa3 /meta-initramfs
parentd59578a8170266d0d7e62c132495c0e06a17e0c9 (diff)
downloadmeta-openembedded-cafbd12a64f2e91d1dea84985599f517f8d54336.tar.gz
ubi-utils-klibc: Disable lzo compression by default
This is still available if needed, however its obsolete and lzo has been removed from oe-core, if needed add meta-oe to layer mix and enable this in packageconfigs Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-initramfs')
-rw-r--r--meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb
index 8b91fb4b93..43ddb82a00 100644
--- a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb
+++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc_2.0.2.bb
@@ -1,7 +1,7 @@
1SUMMARY = "UBI utils statically compiled against klibc" 1SUMMARY = "UBI utils statically compiled against klibc"
2DESCRIPTION = "Small sized tools from mtd-utils for use with initramfs." 2DESCRIPTION = "Small sized tools from mtd-utils for use with initramfs."
3SECTION = "base" 3SECTION = "base"
4DEPENDS = "zlib lzo e2fsprogs util-linux" 4DEPENDS = "zlib e2fsprogs util-linux"
5HOMEPAGE = "http://www.linux-mtd.infradead.org/" 5HOMEPAGE = "http://www.linux-mtd.infradead.org/"
6LICENSE = "GPL-2.0-or-later" 6LICENSE = "GPL-2.0-or-later"
7LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ 7LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
@@ -25,6 +25,7 @@ EXTRA_OECONF += "--disable-tests --without-jffs --without-ubifs"
25 25
26PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)}" 26PACKAGECONFIG ?= "${@bb.utils.filter('DISTRO_FEATURES', 'xattr', d)}"
27PACKAGECONFIG[xattr] = ",,acl," 27PACKAGECONFIG[xattr] = ",,acl,"
28PACKAGECONFIG[lzo] = "--with-lzo,--without-lzo,lzo"
28 29
29EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'" 30EXTRA_OEMAKE = "'CC=${CC}' 'RANLIB=${RANLIB}' 'AR=${AR}' 'CFLAGS=${CFLAGS} ${@bb.utils.contains('PACKAGECONFIG', 'xattr', '', '-DWITHOUT_XATTR', d)} -I${S}/include' 'BUILDDIR=${S}'"
30 31