From ea94535e2687311415d02a60e282b2b2350238b1 Mon Sep 17 00:00:00 2001 From: mintsuki <36459316+mintsuki@users.noreply.github.com> Date: Sat, 29 Mar 2025 01:16:55 +0100 Subject: [PATCH] Improve Limine without boot partition unsupported message (#3305) --- archinstall/lib/global_menu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/global_menu.py b/archinstall/lib/global_menu.py index 3e1fcf84..d2b21a84 100644 --- a/archinstall/lib/global_menu.py +++ b/archinstall/lib/global_menu.py @@ -438,7 +438,7 @@ class GlobalMenu(AbstractMenu): if bootloader == Bootloader.Limine: if boot_partition.fs_type != FilesystemType.Fat32: - return "Limine does not support booting from filesystems other than FAT32" + return "Limine does not support booting without a FAT boot partition" return None