2020-03-27 20:33:59 -01:00
|
|
|
source /boot/grub/config.cfg
|
2009-10-28 11:15:30 -01:00
|
|
|
|
2016-12-13 16:37:41 -01:00
|
|
|
# Live boot
|
2020-03-26 04:42:11 -01:00
|
|
|
@LINUX_LIVE@
|
2009-10-28 11:15:30 -01:00
|
|
|
|
2016-12-13 16:37:41 -01:00
|
|
|
# You can add more entries like this
|
|
|
|
# menuentry "Alternate live boot" {
|
2020-03-26 04:42:11 -01:00
|
|
|
# linux @KERNEL_LIVE@ @APPEND_LIVE@ custom options here
|
|
|
|
# initrd @INITRD_LIVE@
|
2016-12-13 16:37:41 -01:00
|
|
|
# }
|
|
|
|
# menuentry "Alternate graphical installer" {
|
2020-03-26 04:42:11 -01:00
|
|
|
# linux @KERNEL_GI@ @APPEND_GI@ custom options here
|
|
|
|
# initrd @INITRD_GI@
|
2016-12-13 16:37:41 -01:00
|
|
|
# }
|
|
|
|
# menuentry "Alternate textual installer" {
|
2020-03-26 04:42:11 -01:00
|
|
|
# linux @KERNEL_DI@ @APPEND_DI@ custom options here
|
|
|
|
# initrd @INITRD_DI@
|
2016-12-13 16:37:41 -01:00
|
|
|
# }
|
|
|
|
|
|
|
|
# Installer (if any)
|
2020-03-24 21:19:16 -01:00
|
|
|
if @ENABLE_INSTALL_MENU@; then
|
|
|
|
|
2020-04-30 05:55:34 +00:00
|
|
|
source /boot/grub/install_start.cfg
|
2009-10-28 11:15:30 -01:00
|
|
|
|
2020-04-04 04:27:31 +00:00
|
|
|
submenu 'Advanced install options ...' --hotkey=a {
|
2016-12-02 20:41:55 -01:00
|
|
|
|
2020-03-27 20:33:59 -01:00
|
|
|
source /boot/grub/theme.cfg
|
|
|
|
|
2020-04-30 05:55:34 +00:00
|
|
|
source /boot/grub/install.cfg
|
2016-12-02 20:41:55 -01:00
|
|
|
|
2020-03-24 21:19:16 -01:00
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
2015-01-28 23:33:25 -01:00
|
|
|
submenu 'Utilities...' --hotkey=u {
|
2020-03-24 21:19:16 -01:00
|
|
|
|
2020-03-27 20:33:59 -01:00
|
|
|
source /boot/grub/theme.cfg
|
|
|
|
|
2020-03-25 01:59:44 -01:00
|
|
|
# Memtest (if any)
|
2022-11-01 03:55:14 -01:00
|
|
|
if @ENABLE_MEMTEST@; then
|
2020-07-26 05:35:28 +00:00
|
|
|
source /boot/grub/memtest.cfg
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Firmware setup (UEFI)
|
|
|
|
if [ "${grub_platform}" = "efi" ]; then
|
|
|
|
menuentry "UEFI Firmware Settings" {
|
|
|
|
fwsetup
|
|
|
|
}
|
|
|
|
fi
|
2016-12-02 20:41:55 -01:00
|
|
|
|
|
|
|
}
|