Adjust Linux boot options
- CLI option was dropped in Syslinux due to keep the list to a minimum. Also, its main use was to avoid display issues and nomodeset is a better option IMO
This commit is contained in:
parent
272fd3e43f
commit
667de2d672
2 changed files with 10 additions and 4 deletions
|
|
@ -22,9 +22,15 @@ menuentry "Linux" {
|
|||
initrd /arch/boot/amd_ucode.img
|
||||
initrd /arch/boot/x86_64/initramfs-linux.img
|
||||
options "archisobasedir=arch archisodevice=/dev/disk/by-uuid/_______ copytoram loglevel=3"
|
||||
submenuentry "Linux (Safe Video)" {
|
||||
add_options "nomodeset i915.modeset=0 nouveau.modeset=0"
|
||||
}
|
||||
submenuentry "Linux (CLI)" {
|
||||
add_options "nox"
|
||||
}
|
||||
submenuentry "Linux (CLI w/ Safe Video)" {
|
||||
add_options "nox nomodeset i915.modeset=0 nouveau.modeset=0"
|
||||
}
|
||||
}
|
||||
|
||||
menuentry "MemTest86+" {
|
||||
|
|
|
|||
|
|
@ -8,14 +8,14 @@ LINUX /arch/boot/x86_64/vmlinuz-linux
|
|||
INITRD /arch/boot/intel-ucode.img,/arch/boot/amd-ucode.img,/arch/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=arch archisodevice=/dev/disk/by-uuid/_______ copytoram loglevel=3
|
||||
|
||||
LABEL wk_linux_cli
|
||||
LABEL wk_linux_safe
|
||||
TEXT HELP
|
||||
A live Linux environment (CLI)
|
||||
A live Linux environment (Safe Video)
|
||||
* HW diagnostics, file-based backups, data recovery, etc
|
||||
ENDTEXT
|
||||
MENU LABEL Linux (CLI)
|
||||
MENU LABEL Linux (Safe Video)
|
||||
LINUX /arch/boot/x86_64/vmlinuz-linux
|
||||
INITRD /arch/boot/intel-ucode.img,/arch/boot/amd-ucode.img,/arch/boot/x86_64/initramfs-linux.img
|
||||
APPEND archisobasedir=arch archisodevice=/dev/disk/by-uuid/_______ copytoram nox
|
||||
APPEND archisobasedir=arch archisodevice=/dev/disk/by-uuid/_______ copytoram nomodeset i915.modeset=0 nouveau.modeset=0
|
||||
SYSAPPEND 3
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue