From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 624C3138010 for ; Fri, 19 Oct 2012 22:18:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6ADD21C008; Fri, 19 Oct 2012 22:18:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2F53F21C008 for ; Fri, 19 Oct 2012 22:18:36 +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 8F94F33D860 for ; Fri, 19 Oct 2012 22:18:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 36FE8E5436 for ; Fri, 19 Oct 2012 22:18:34 +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: <1350685254.a60e920d61e727b3cab90f1b8079acf556cf77c2.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: ChangeLog gen_bootloader.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: a60e920d61e727b3cab90f1b8079acf556cf77c2 X-VCS-Branch: master Date: Fri, 19 Oct 2012 22:18:34 +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: 90ae0a74-a279-44b7-8298-6ec9369de320 X-Archives-Hash: ee445fedb8f32e65e0ad5516ace9a93b commit: a60e920d61e727b3cab90f1b8079acf556cf77c2 Author: Robin H. Johnson gentoo org> AuthorDate: Fri Oct 19 22:20:54 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Oct 19 22:20:54 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=a60e920d Missing then keyword. Signed-off-by: Robin H. Johnson gentoo.org> --- ChangeLog | 3 +++ gen_bootloader.sh | 1 + 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/ChangeLog b/ChangeLog index 023016b..7902101 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ # Distributed under the GPL v2 # $Id$ + 19 Oct 2012; Robin H. Johnson gen_bootloader.sh: + Missing then keyword. + 15 Oct 2012; Peter Hjalmarsson defaults/linuxrc: Support using init= on the command line. diff --git a/gen_bootloader.sh b/gen_bootloader.sh index 7a4f485..5848bd2 100755 --- a/gen_bootloader.sh +++ b/gen_bootloader.sh @@ -91,6 +91,7 @@ set_bootloader_grub() { echo "title=Gentoo Linux ($KV)" >> ${GRUB_CONF} echo -e "\tkernel /kernel-${KNAME}-${ARCH}-${KV} root=${GRUB_ROOTFS}" >> ${GRUB_CONF} if [ "${BUILD_INITRD}" = '1' ] + then if [ "${PAT}" -gt '4' ] then echo -e "\tinitrd /initramfs-${KNAME}-${ARCH}-${KV}" >> ${GRUB_CONF}