memtest86plus/grub/grub-efi.cfg
Martin Whitaker 5036aa197a Provide a more user-oriented grub-memtest.iso.
grub-memtest.iso was originally intended as a means of testing all
the different boot modes. But as we publish it on memtest.org, let's
have a more user-friendly version that provides menu entries for the
most commonly needed boot options. The original test ISO can still
be built by 'make GRUB_CFG=grub-test grub-iso'.
2022-10-12 15:34:09 +01:00

21 lines
533 B
INI

if loadfont unicode ; then
set gfxmode=1024x768,800x600,auto
set gfxpayload=800x600,1024x768
terminal_output gfxterm
fi
set default=0
set timeout=-1
insmod linux
menuentry "Start Memtest86+, use built-in support for USB keyboards" {
linux /EFI/BOOT/memtest keyboard=both
}
menuentry "Start Memtest86+, use BIOS legacy emulation for USB keyboards" {
linux /EFI/BOOT/memtest keyboard=legacy
}
menuentry "Start Memtest86+, disable SMP and memory identification" {
linux /EFI/BOOT/memtest nosmp nosm nobench
}