18 lines
410 B
INI
18 lines
410 B
INI
source /boot/grub/config.cfg
|
|
|
|
menuentry "Bee Hardware Audit" {
|
|
linux @KERNEL_LIVE@ @APPEND_LIVE@
|
|
initrd @INITRD_LIVE@
|
|
}
|
|
|
|
menuentry "Bee Hardware Audit (fail-safe)" {
|
|
linux @KERNEL_LIVE@ @APPEND_LIVE@ memtest noapic noapm nodma nomce nolapic nosmp vga=normal
|
|
initrd @INITRD_LIVE@
|
|
}
|
|
|
|
if [ "${grub_platform}" = "efi" ]; then
|
|
menuentry "UEFI Firmware Settings" {
|
|
fwsetup
|
|
}
|
|
fi
|