Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/global_menu.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/global_menu.py')
-rw-r--r--archinstall/lib/global_menu.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/archinstall/lib/global_menu.py b/archinstall/lib/global_menu.py
index e4aa1235..d3d87603 100644
--- a/archinstall/lib/global_menu.py
+++ b/archinstall/lib/global_menu.py
@@ -363,8 +363,11 @@ class GlobalMenu(AbstractMenu):
if boot_partition is None:
return "Boot partition not found"
- if bootloader == Bootloader.Limine and boot_partition.fs_type == disk.FilesystemType.Btrfs:
- return "Limine bootloader does not support booting from BTRFS filesystem"
+ if bootloader == Bootloader.Limine:
+ if boot_partition.fs_type != disk.FilesystemType.Fat32:
+ return "Limine does not support booting from filesystems other than FAT32"
+ elif self._menu_options['uki'].current_selection:
+ return "Limine does not support booting UKIs"
return None