29 lines
725 B
Plaintext
29 lines
725 B
Plaintext
menuentry "EFI {OSNAME} ({KERNEL})" {
|
|
icon /EFI/refind/themes/{THEME}/icons/os_{ICON}.png
|
|
ostype Linux
|
|
graphics on
|
|
|
|
loader /EFI/Linux/{KERNEL_EFI}.efi
|
|
|
|
submenuentry "EFI {OSNAME} ({KERNEL}) fallback" {
|
|
loader /EFI/Linux/{KERNEL_EFI}-fallback.efi
|
|
}
|
|
|
|
submenuentry "Terminal" {
|
|
add_options "systemd.unit=multi-user.target"
|
|
}
|
|
|
|
submenuentry "{OSNAME} ({KERNEL})" {
|
|
loader /EFI/Linux/{KERNEL_VMLINUZ}
|
|
initrd /EFI/Linux/{INITRAMFS}
|
|
options "{CMDLINE}"
|
|
}
|
|
|
|
submenuentry "{OSNAME} ({KERNEL}) fallback" {
|
|
loader /EFI/Linux/{KERNEL_VMLINUZ}
|
|
initrd /EFI/Linux/{INITRAMFS_FALLBACK}
|
|
options "{CMDLINE}"
|
|
}
|
|
}
|
|
|