From a33938f8d47f23c23335ecf671b1db9afcd0b726 Mon Sep 17 00:00:00 2001 From: jnqnfe Date: Sun, 11 Jan 2015 21:14:49 +0000 Subject: grub1/grub2/loopback: fix order of quiet kernel parameters in menus I believe that the `quiet` parameter is meant for d-i not the kernel and thus should be given on the end after a delimiter, as done with syslinux. Here we switch the order to move it to the end. The addition of the missing delimiter will be done in a followup commit. (See #775143) Gbp-Dch: Short --- scripts/build/binary_loopback_cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/build/binary_loopback_cfg') diff --git a/scripts/build/binary_loopback_cfg b/scripts/build/binary_loopback_cfg index 575740b0b..08629332d 100755 --- a/scripts/build/binary_loopback_cfg +++ b/scripts/build/binary_loopback_cfg @@ -233,11 +233,11 @@ if [ "${LB_DEBIAN_INSTALLER}" != "none" ] then KERNEL_DI="/install/vmlinuz" INITRD_DI="/install/initrd.gz" - APPEND_DI="vga=normal quiet ${LB_BOOTAPPEND_INSTALL}" + APPEND_DI="vga=normal ${LB_BOOTAPPEND_INSTALL} quiet" KERNEL_GI="/install/gtk/vmlinuz" INITRD_GI="/install/gtk/initrd.gz" - APPEND_GI="video=vesa:ywrap,mtrr vga=788 quiet ${LB_BOOTAPPEND_INSTALL}" + APPEND_GI="video=vesa:ywrap,mtrr vga=788 ${LB_BOOTAPPEND_INSTALL} quiet" if [ "${LB_DEBIAN_INSTALLER_GUI}" = "true" ]; then Grub_install_entry "Start installer" "installgui" "${KERNEL_GI}" "${INITRD_GI}" "${APPEND_GI}" -- cgit v1.2.3