iso/iso/grub.cfg

36 lines
660 B
INI
Raw Normal View History

2014-02-13 16:09:58 +01:00
set default=0
set timeout=99
set color_normal=light-gray/black
2020-08-01 23:55:57 +02:00
set menu_color_normal=white/black
set menu_color_highlight=yellow/blue
2014-02-13 16:09:58 +01:00
search --file --no-floppy --set root /crux-media
set prefix=($root)/boot/grub
2020-08-01 23:55:57 +02:00
# load gfxterm if possible
if loadfont unifont; then
2014-02-13 16:09:58 +01:00
insmod efi_uga
insmod efi_gop
set gfxmode=auto
set gfxpayload=keep
2020-08-01 23:55:57 +02:00
terminal_output gfxterm
fi
2014-02-13 16:09:58 +01:00
2022-05-21 01:40:43 +02:00
menuentry "Install/Upgrade CRUX 3.7 (UEFI mode)" {
2014-02-13 16:09:58 +01:00
linux /boot/vmlinuz console=ttyS0,38400 console=tty0
initrd /boot/initramfs
}
2020-08-01 23:55:57 +02:00
menuentry "UEFI Shell" {
chainloader /boot/shell.efi
}
menuentry "Reboot system" {
reboot
}
menuentry "Halt system" {
halt
}