Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion archinstall/lib/models/device_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down