From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B28F1139694 for ; Fri, 14 Jul 2017 18:52:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0CBF41FC040; Fri, 14 Jul 2017 18:52:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D963C1FC040 for ; Fri, 14 Jul 2017 18:52:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F29C4341898 for ; Fri, 14 Jul 2017 18:52:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98C453A56 for ; Fri, 14 Jul 2017 18:52:00 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1500058282.ce64e5d9ade4f1a102e900c8c63fa0862a1a06d8.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: ce64e5d9ade4f1a102e900c8c63fa0862a1a06d8 X-VCS-Branch: master Date: Fri, 14 Jul 2017 18:52:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f1e16d8d-54ad-4473-9b53-19c1fb86103a X-Archives-Hash: 5bbfbd127c7f0a85660779dc34a2e4cd commit: ce64e5d9ade4f1a102e900c8c63fa0862a1a06d8 Author: Robin H. Johnson gentoo org> AuthorDate: Fri Jul 14 18:51:22 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Jul 14 18:51:22 2017 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ce64e5d9 Fix LZ4 compression options. Add quiet and legacy options for better support. Thanks: pcxmac gmail.com> Fixes: https://bugs.gentoo.org/show_bug.cgi?id=619640 Signed-off-by: Robin H. Johnson gentoo.org> gen_initramfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 8bbaa2c..4075f85 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -1114,7 +1114,7 @@ create_initramfs() { bzip2) compress_ext='.bz2' compress_cmd="${cmd_bzip2} -z -f -9" ;; gzip) compress_ext='.gz' compress_cmd="${cmd_gzip} -f -9" ;; lzop) compress_ext='.lzo' compress_cmd="${cmd_lzop} -f -9" ;; - lz4) compress_ext='.lz4' compress_cmd="${cmd_lz4} -f -9" ;; + lz4) compress_ext='.lz4' compress_cmd="${cmd_lz4} -f -9 -l -q" ;; esac if [ -n "${compression}" ]; then