38 lines
848 B
Plaintext
38 lines
848 B
Plaintext
menuentry "rEFInd HARD" {
|
|
icon /EFI/refind/themes/{THEME}/icons/os_systemd-boot.png
|
|
ostype Linux
|
|
graphics on
|
|
loader /EFI/refind_hard/refind_x64.efi
|
|
}
|
|
|
|
menuentry "Windows 11" {
|
|
icon /EFI/refind/themes/{THEME}/icons/os_win11.png
|
|
ostype Windows
|
|
loader /EFI/ms11/Boot/bootmgfw.efi
|
|
}
|
|
|
|
menuentry "Memtest86+ from EFI" {
|
|
icon /EFI/refind/themes/{THEME}/icons/tool_memtest.png
|
|
loader /EFI/memtest/bootx64.efi
|
|
}
|
|
|
|
menuentry "GRUB" {
|
|
icon /EFI/refind/themes/{THEME}/icons/os_systemd-boot.png
|
|
ostype Linux
|
|
graphics on
|
|
loader /EFI/boot/grubx64.efi
|
|
|
|
disabled
|
|
}
|
|
|
|
menuentry "Systemd Boot" {
|
|
icon /EFI/refind/themes/{THEME}/icons/os_systemd-boot.png
|
|
ostype Linux
|
|
graphics on
|
|
loader /EFI/systemd/systemd-bootx64.efi
|
|
|
|
disabled
|
|
}
|
|
|
|
default_selection "linux"
|