diff --git a/archinstall/lib/models/device_model.py b/archinstall/lib/models/device_model.py index 13a50ec711..e5742e7aa7 100644 --- a/archinstall/lib/models/device_model.py +++ b/archinstall/lib/models/device_model.py @@ -964,8 +964,9 @@ def is_efi(self) -> bool: def is_boot(self) -> bool: """ Returns True if any of the boot indicator flags are found in self.flags + or if the partition is mounted on /boot """ - return any(set(self.flags) & set(self._boot_indicator_flags)) + return any(set(self.flags) & set(self._boot_indicator_flags)) or Path('/boot') == self.mountpoint def is_root(self) -> bool: if self.mountpoint is not None: