We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b77a43b commit ccebb68Copy full SHA for ccebb68
1 file changed
archinstall/lib/models/device.py
@@ -967,9 +967,7 @@ def is_efi(self) -> bool:
967
return PartitionFlag.ESP in self.flags
968
969
def is_boot(self) -> bool:
970
- if self.mountpoint is not None:
971
- return self.mountpoint == Path('/boot')
972
- return False
+ return PartitionFlag.BOOT in self.flags
973
974
def is_root(self) -> bool:
975
if self.mountpoint is not None:
0 commit comments