Added fwsetup, reboot, halt entries to the UEFI boot menu

This commit is contained in:
fdupoux 2020-10-22 07:37:15 +01:00
parent aa99b61c3d
commit 525663bfdc

View file

@ -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
}
menuentry "EFI Shell" {
menuentry "Start EFI Shell" {
insmod fat
insmod chain
terminal_output console
chainloader /EFI/shell.efi
}
menuentry "EFI Firmware setup" {
fwsetup
}
menuentry "Reboot" {
reboot
}
menuentry "Power off" {
halt
}