diff options
author | bionel <ionel.busuioc@gmail.com> | 2016-03-20 13:24:16 +0200 |
---|---|---|
committer | bionel <ionel.busuioc@gmail.com> | 2016-03-20 13:24:16 +0200 |
commit | 6d690bfe0b4b34475f1f8dbf97e20be7b4413da0 (patch) | |
tree | fc08b587683968a90802f3385e1d674c3e63e52a | |
parent | 6891b33291e79eb97750efb29d9b2c200752eed0 (diff) |
put kernel parameters in safe order
-rwxr-xr-x | cdroot/boot/grub/grub.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cdroot/boot/grub/grub.cfg b/cdroot/boot/grub/grub.cfg index 8aab10a..42b8fc3 100755 --- a/cdroot/boot/grub/grub.cfg +++ b/cdroot/boot/grub/grub.cfg @@ -89,7 +89,7 @@ menuentry "Start $iso_distro $iso_flavour $iso_version" { echo "Language: ${bootlang}" echo "Keyboard: ${bootkeymap}" echo "Please wait..." - linux /boot/vmlinuz rd.live.image root=CDLABEL=$iso_label rootfstype=auto console=tty0 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 splash quiet vconsole.keymap=${bootkeymap} rd.locale.LANG=${bootlang} ${vesa_opt} ${modeset_opt} ${acpi_opt} -- + linux /boot/vmlinuz rd.live.image root=CDLABEL=$iso_label rootfstype=auto vconsole.keymap=${bootkeymap} rd.locale.LANG=${bootlang} console=tty0 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 splash quiet ${vesa_opt} ${modeset_opt} ${acpi_opt} -- initrd /boot/initrd } |