aboutsummaryrefslogtreecommitdiff
path: root/boot/grub.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'boot/grub.cfg')
-rw-r--r--boot/grub.cfg14
1 files changed, 13 insertions, 1 deletions
diff --git a/boot/grub.cfg b/boot/grub.cfg
index 8a730f9..8cef020 100644
--- a/boot/grub.cfg
+++ b/boot/grub.cfg
@@ -1,8 +1,20 @@
# Copyright (c) 2026 Arslaan Pathan
# This software is licensed under the ARPL. See LICENSE for details.
-menuentry "FrenchToastOS" {
+menuentry "FrenchToastOS (UEFI)" {
+ set gfxmode=auto
+ insmod efi_gop
+ insmod efi_uga
+ insmod all_video
+ insmod multiboot
+ multiboot /boot/FrenchToastOS.bin
+ boot
+}
+
+menuentry "FrenchToastOS (BIOS)" {
+ # in BIOS we can do as much arbitrary stuff as we want so just set the one we wanted
set gfxmode=1024x768x32
insmod multiboot
multiboot /boot/FrenchToastOS.bin
+ boot
}