diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-01-10 20:01:32 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-01-10 20:01:32 +0000 |
commit | 069c13faae106ae93fdda53e7f8a35de42baf9a1 (patch) | |
tree | 5d1a2802b9f82355835839bbdad08b0d719fc8de | |
parent | 9aee5b1ea839bcd03f6700dcac2259e626ace553 (diff) |
remove ancient stuff, right now it causes huge performance issues
-rwxr-xr-x | cdroot/boot/grub/grub.cfg | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/cdroot/boot/grub/grub.cfg b/cdroot/boot/grub/grub.cfg index 7bc86de..be52f48 100755 --- a/cdroot/boot/grub/grub.cfg +++ b/cdroot/boot/grub/grub.cfg @@ -54,39 +54,22 @@ if [ x$bootkeymap = x ]; then export bootkeymap fi -if [ x$vesa_opt = x]; then - vesa_opt='' - export vesa_opt -fi - if [ x$acpi_opt = x ]; then acpi_opt='' export acpi_opt fi -if [ x$modeset_opt = x ]; then - modeset_opt='' - export modeset_opt -fi - menuentry "Start $iso_distro $iso_version" --class redcore --class gentoo --class gnu-linux { set gfxpayload=keep echo "Language: ${bootlang}" echo "Keyboard: ${bootkeymap}" echo "Please wait..." - linux /boot/vmlinuz rd.live.image root=CDLABEL=$iso_label rootfstype=auto vconsole.keymap=${bootkeymap} rd.locale.LANG=${bootlang} modprobe.blacklist=vboxvideo loglevel=1 console=tty0 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 splash quiet ${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} modprobe.blacklist=vboxvideo loglevel=1 console=tty0 rd.luks=0 rd.lvm=0 rd.md=0 rd.dm=0 splash quiet ${acpi_opt} -- initrd /boot/initrd } submenu "Advanced Options" { - menuentry "VirtualBox safe graphic" { - echo "Disabling VirtualBox driver, this is needed for installer at this time..." - set modeset_opt="modprobe.blacklist=vboxvideo" - export modeset_opt - configfile /boot/grub/grub.cfg - } - menuentry "Disable ACPI" { echo "Disabling ACPI..." set acpi_opt="noacpi acpi=off" |