From: Ross Burton Date: Tue, 24 May 2022 15:23:56 +0000 (+0100) Subject: squashfs-tools: disable LZO by default X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3996 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=374756be0e332f625ebf8267a7d2216d9189a4d8;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git squashfs-tools: disable LZO by default LZO is a fairly obsolete compression format these days, so disable it by default. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb index 4e009d26255..0a7e0f2a523 100644 --- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb +++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_git.bb @@ -18,7 +18,7 @@ S = "${WORKDIR}/git" EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}" -PACKAGECONFIG ??= "gzip xz lzo lz4 lzma xattr zstd reproducible" +PACKAGECONFIG ??= "gzip xz lz4 lzma xattr zstd reproducible" PACKAGECONFIG[gzip] = "GZIP_SUPPORT=1,GZIP_SUPPORT=0,zlib" PACKAGECONFIG[xz] = "XZ_SUPPORT=1,XZ_SUPPORT=0,xz" PACKAGECONFIG[lzo] = "LZO_SUPPORT=1,LZO_SUPPORT=0,lzo"