Re: Boot to BIOS
Reply #1 –
Slightly pedantic but you want to boot into UEFI I guess? AFAIK this feature is not supported on BIOS systems ?
This is something I looked at in the past and decided not to bother.
But there's a efi variable named OsIndications.
You can view and manipulate efi variables with efivar
If you search OsIndications plus other relevant terms you'll find discussion of what you ask.
But some people are saying set OsIndications = 1, some are saying set only the first bit of OsIndications to 1.
I decided not to mess with efi variables because 'Here there be dragons' and.....
rEfInd can do this from its boot menu so long as it's on the default theme (needs adding to many of the other themes available).
You can add a custom entry to grub containing fwsetup
example from the arch wiki
if [ ${grub_platform} == "efi" ]; then
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
fwsetup
}
fi