From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SGwvs-0002IY-6r for garchives@archives.gentoo.org; Sun, 08 Apr 2012 18:33:48 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 240D2E0AEB; Sun, 8 Apr 2012 18:33:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id E0800E0AE3 for ; Sun, 8 Apr 2012 18:33:35 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4CFF51B40BF for ; Sun, 8 Apr 2012 18:33:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id DC385E5402 for ; Sun, 8 Apr 2012 18:33:33 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1333906894.c0ed5530a5f904ab63ccffa2ce3ec43f4720be49.sping@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: ChangeLog gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: c0ed5530a5f904ab63ccffa2ce3ec43f4720be49 X-VCS-Branch: master Date: Sun, 8 Apr 2012 18:33:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 2cd26acd-8a93-4d76-baa9-d9b1c497b031 X-Archives-Hash: b6546b6929c47564fc9d09cee6f5896f commit: c0ed5530a5f904ab63ccffa2ce3ec43f4720be49 Author: Sebastian Pipping pipping org> AuthorDate: Sun Apr 8 17:41:34 2012 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sun Apr 8 17:41:34 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3Dc0ed5530 Fix initrd compression "gzip", reported by Peter Gantner (bug #411197) --- ChangeLog | 3 +++ gen_initramfs.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 82da676..8c35954 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ # Distributed under the GPL v2 # $Id$ =20 + 08 Apr 2012; Sebastian Pipping gen_initramfs.sh: + Fix initrd compression "gzip", reported by Peter Gantner (bug #411197) + 30 Mar 2012; Sebastian Pipping genkernel: Bump version to 3.4.28 =20 diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 419d557..09592bc 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -707,7 +707,7 @@ create_initramfs() { cmd_lzop=3D$(type -p lzop) local compression case ${COMPRESS_INITRD_TYPE} in - xz|lzma|bzip2|gzip2|lzo) compression=3D${COMPRESS_INITRD_TYPE} ;; + xz|lzma|bzip2|gzip|lzo) compression=3D${COMPRESS_INITRD_TYPE} ;; best) if grep -sq '^CONFIG_RD_XZ=3Dy' ${KERNEL_DIR}/.config && test -n "$= {cmd_xz}" ; then compression=3Dxz