From patchwork Fri Jun 17 14:55:22 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: bitbake.conf: remove -e from LZMA_COMPRESSION_LEVEL because no such option exist in lzma Date: Fri, 17 Jun 2011 14:55:22 -0000 From: Denis Carikli X-Patchwork-Id: 6073 Message-Id: <1308322522-11406-1-git-send-email-GNUtoo@no-log.org> To: openembedded-devel@lists.openembedded.org Without this patch we have: + cpio -o -H newc + lzma -c -e -9 lzma: invalid option -- 'e' during a initramfs-kexecboot-klibc-image. Signed-off-by: Denis 'GNUtoo' Carikli --- conf/bitbake.conf | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 17a494d..9e67320 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -149,7 +149,7 @@ QEMU_OPTIONS_armv7a = "-cpu cortex-a8" # default compression levels XZ_COMPRESSION_LEVEL ?= "-e -9" -LZMA_COMPRESSION_LEVEL ?= "-e -9" +LZMA_COMPRESSION_LEVEL ?= "-9" # default integrity check XZ_INTEGRITY_CHECK ?= "crc32"