Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/partition.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/disk/partition.py')
-rw-r--r--archinstall/lib/disk/partition.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/archinstall/lib/disk/partition.py b/archinstall/lib/disk/partition.py
index b3db143a..afd34f20 100644
--- a/archinstall/lib/disk/partition.py
+++ b/archinstall/lib/disk/partition.py
@@ -46,11 +46,12 @@ class Partition:
except DiskError:
mount_information = {}
- if self.mountpoint != mount_information.get('target', None) and mountpoint:
- raise DiskError(f"{self} was given a mountpoint but the actual mountpoint differs: {mount_information.get('target', None)}")
+ if mount_information.get('target', None):
+ if self.mountpoint != mount_information.get('target', None) and mountpoint:
+ raise DiskError(f"{self} was given a mountpoint but the actual mountpoint differs: {mount_information.get('target', None)}")
- if target := mount_information.get('target', None):
- self.mountpoint = target
+ if target := mount_information.get('target', None):
+ self.mountpoint = target
if not self.filesystem and autodetect_filesystem:
if fstype := mount_information.get('fstype', get_filesystem_type(path)):
@@ -130,6 +131,9 @@ class Partition:
for device in lsblk['blockdevices']:
return convert_size_to_gb(device['size'])
+ elif handle.exit_code == 8192:
+ # Device is not a block device
+ return None
time.sleep(storage['DISK_TIMEOUTS'])
@@ -225,7 +229,7 @@ class Partition:
return bind_name
def partprobe(self) -> bool:
- if SysCommand(f'partprobe {self.block_device.device}').exit_code == 0:
+ if self.block_device and SysCommand(f'partprobe {self.block_device.device}').exit_code == 0:
time.sleep(1)
return True
return False