mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-20 09:35:26 +00:00
40 lines
1.0 KiB
INI
40 lines
1.0 KiB
INI
set default="0"
|
|
set timeout="5"
|
|
|
|
menuentry "ShredOS" {
|
|
linux /boot/bzImage console=tty3 loglevel=3
|
|
}
|
|
|
|
menuentry "ShredOS (nomodeset - display issues? try this)" {
|
|
linux /boot/bzImage console=tty3 loglevel=3 nomodeset
|
|
}
|
|
|
|
if [ "${grub_platform}" = "efi" ]; then
|
|
menuentry "Memtest86+ (BIOS legacy emulation for USB keyboard)" {
|
|
linux /EFI/BOOT/memtest.efi keyboard=legacy
|
|
}
|
|
menuentry "Memtest86+ (USB keyboards)" {
|
|
linux /EFI/BOOT/memtest.efi keyboard=both
|
|
}
|
|
menuentry "Memtest86+ (Disable SMP and memory identification)" {
|
|
linux /EFI/BOOT/memtest.efi nosmp nosm nobench
|
|
}
|
|
fi
|
|
|
|
if [ "${grub_platform}" = "pc" ]; then
|
|
menuentry "Memtest86+ (Use BIOS legacy emulation for USB keyboards)" {
|
|
linux /boot/memtest keyboard=legacy
|
|
}
|
|
menuentry "Memtest86+ (USB keyboards)" {
|
|
linux /boot/memtest keyboard=both
|
|
}
|
|
menuentry "Memtest86+ (Disable SMP and memory identification)" {
|
|
linux /boot/memtest nosmp nosm nobench
|
|
}
|
|
menuentry "Memtest86+ (Serial line RS232, ttyS0,115200)" {
|
|
linux /boot/memtest console=ttyS0,115200
|
|
}
|
|
fi
|
|
|
|
|