mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2025-12-06 07:12:01 +01:00
Added fwsetup, reboot, halt entries to the UEFI boot menu
This commit is contained in:
parent
aa99b61c3d
commit
525663bfdc
|
|
@ -56,9 +56,21 @@ menuentry "Stop during the boot process before mounting the root filesystem" {
|
||||||
initrd /%INSTALL_DIR%/boot/intel_ucode.img /%INSTALL_DIR%/boot/amd_ucode.img /%INSTALL_DIR%/boot/%ISO_ARCH%/sysresccd.img
|
initrd /%INSTALL_DIR%/boot/intel_ucode.img /%INSTALL_DIR%/boot/amd_ucode.img /%INSTALL_DIR%/boot/%ISO_ARCH%/sysresccd.img
|
||||||
}
|
}
|
||||||
|
|
||||||
menuentry "EFI Shell" {
|
menuentry "Start EFI Shell" {
|
||||||
insmod fat
|
insmod fat
|
||||||
insmod chain
|
insmod chain
|
||||||
terminal_output console
|
terminal_output console
|
||||||
chainloader /EFI/shell.efi
|
chainloader /EFI/shell.efi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
menuentry "EFI Firmware setup" {
|
||||||
|
fwsetup
|
||||||
|
}
|
||||||
|
|
||||||
|
menuentry "Reboot" {
|
||||||
|
reboot
|
||||||
|
}
|
||||||
|
|
||||||
|
menuentry "Power off" {
|
||||||
|
halt
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue