Files
RedBear-OS/local/recipes/core/grub/grub.cfg
T

29 lines
757 B
INI

# Red Bear OS GRUB Configuration
#
# GRUB presents this menu at boot and chainloads the Redox bootloader.
# The Redox bootloader then reads the RedoxFS partition and boots the kernel.
#
# Place this file at EFI/BOOT/grub.cfg on the ESP.
# The installer (redbear-full-grub.toml) or install-grub.sh handles this.
#
# To customize: edit this file before building GRUB (make r.grub),
# or modify the ESP directly with fat_tool.py:
# python3 local/scripts/fat_tool.py cp-in harddrive.img 1048576 grub.cfg EFI/BOOT/grub.cfg
set default=0
set timeout=5
# Default: boot Red Bear OS via Redox bootloader chainload
menuentry "Red Bear OS" {
chainloader /EFI/REDBEAR/redbear.efi
boot
}
menuentry "Reboot" {
reboot
}
menuentry "Shutdown" {
halt
}