GRUB templates: provide menu entry for UEFI Firmware Settings
[grml-live.git] / templates / boot / grub / addons.cfg
index 86f117f..34ae54c 100644 (file)
@@ -78,7 +78,12 @@ if [ "${grub_platform}" != "efi" ] ; then
 fi # efi mode
 }
 
-menuentry "Boot OS of first partition on first disk" {
-    set root=(hd0,1)
-    chainloader +1
+if [ "${grub_platform}" == "efi" ] ; then
+menuentry "UEFI Firmware Settings" {
+    fwsetup
+}
+fi # efi mode
+
+menuentry "Boot from next device" {
+    exit
 }