The GRUB and isolinux menus (and their two sources of truth — the staged templates and build.sh's write_canonical_* generators that rewrite the built menu) had drifted: GRUB shipped a lean set, isolinux carried extra display-debug entries (gsp-off, kms, kms-gsp-off) and lacked a WIPE entry in the canonical writer. Collapse all four to one set: normal, load-to-RAM (default), no-GUI/troubleshooting (gsp-off, pci=realloc), fail-safe, WIPE ALL DISKS, Memory Test, + UEFI Firmware Settings (EFI only) The fail-safe entry gains iommu=pt (AMD-Vi passthrough) — the OS-side half of the vendor fix for the MSI CG480-S6053 cross-socket nvbandwidth reboot; ACS can't be toggled from a stock-kernel cmdline so that stays a BIOS setting. default stays index 1 = toram (config.cfg set default=1). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
1.7 KiB
Plaintext
35 lines
1.7 KiB
Plaintext
label live-@FLAVOUR@-normal
|
|
menu label ^EASY-BEE v@VERSION@
|
|
linux @LINUX@
|
|
initrd @INITRD@
|
|
append @APPEND_LIVE@ nomodeset bee.nvidia.mode=normal net.ifnames=0 biosdevname=0 mitigations=off transparent_hugepage=always numa_balancing=disable pcie_aspm=off intel_idle.max_cstate=1 processor.max_cstate=1 nowatchdog nosoftlockup
|
|
|
|
label live-@FLAVOUR@-toram
|
|
menu label EASY-BEE v@VERSION@ (^load to RAM)
|
|
menu default
|
|
linux @LINUX@
|
|
initrd @INITRD@
|
|
append @APPEND_LIVE@ toram nomodeset bee.nvidia.mode=normal net.ifnames=0 biosdevname=0 mitigations=off transparent_hugepage=always numa_balancing=disable pcie_aspm=off intel_idle.max_cstate=1 processor.max_cstate=1 nowatchdog nosoftlockup
|
|
|
|
label live-@FLAVOUR@-troubleshooting
|
|
menu label EASY-BEE v@VERSION@ (^no GUI / troubleshooting: gsp-off, pci=realloc)
|
|
linux @LINUX@
|
|
initrd @INITRD@
|
|
append @APPEND_LIVE@ nomodeset bee.gui=off bee.nvidia.mode=gsp-off pci=realloc net.ifnames=0 biosdevname=0 mitigations=off transparent_hugepage=always numa_balancing=disable pcie_aspm=off intel_idle.max_cstate=1 processor.max_cstate=1 nowatchdog nosoftlockup
|
|
|
|
label live-@FLAVOUR@-failsafe
|
|
menu label EASY-BEE (^fail-safe, iommu=pt)
|
|
linux @LINUX@
|
|
initrd @INITRD@
|
|
append @APPEND_LIVE@ nomodeset bee.nvidia.mode=gsp-off noapic noapm nodma nomce nolapic nosmp vga=normal iommu=pt net.ifnames=0 biosdevname=0
|
|
|
|
label wipe-disks
|
|
menu label *** WIPE ALL DISKS (irreversible!) ***
|
|
linux @LINUX@
|
|
initrd @INITRD@
|
|
append @APPEND_LIVE@ toram nomodeset bee.gui=off bee.wipe=all net.ifnames=0 biosdevname=0
|
|
|
|
label memtest
|
|
menu label ^Memory Test (memtest86+)
|
|
linux /boot/memtest86+x64.bin
|