From 81823518ff31ce5fc02e3e71b6d6a4819e7299e9 Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Sat, 21 Mar 2026 13:32:45 +1300 Subject: Unified ISO, make it work properly on EFI, video modes fix, remove docker stuff because it sucks (just use native stuff no one cares --- boot/grub.cfg | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'boot/grub.cfg') 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 } -- cgit v1.2.3