diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-10-19 15:20:54 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-10-19 15:20:54 -0700 |
commit | a60e920d61e727b3cab90f1b8079acf556cf77c2 (patch) | |
tree | 20ffbc0a4bc227b5ab43677f2abc29fd06a229d9 | |
parent | Support using init= on the command line (diff) | |
download | genkernel-a60e920d61e727b3cab90f1b8079acf556cf77c2.tar.gz genkernel-a60e920d61e727b3cab90f1b8079acf556cf77c2.tar.bz2 genkernel-a60e920d61e727b3cab90f1b8079acf556cf77c2.zip |
Missing then keyword.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | gen_bootloader.sh | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -5,6 +5,9 @@ # Distributed under the GPL v2 # $Id$ + 19 Oct 2012; Robin H. Johnson <robbat2@gentoo.org> gen_bootloader.sh: + Missing then keyword. + 15 Oct 2012; Peter Hjalmarsson <xake@rymdraket.net> defaults/linuxrc: Support using init= on the command line. diff --git a/gen_bootloader.sh b/gen_bootloader.sh index 7a4f485d..5848bd24 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} |