Improve Limine without boot partition unsupported message (#3305)

This commit is contained in:
mintsuki 2025-03-29 01:16:55 +01:00 committed by GitHub
parent 21249ee2c7
commit ea94535e26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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