Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-08-17 20:23:20 +0200
committerAnton Hvornum <anton@hvornum.se>2021-08-17 20:23:20 +0200
commit59c366da3574bf211dcbc4a1542991232233cbdf (patch)
tree267d226788614905f853186ef00197f46ba5bbf4 /archinstall
parenta53ee624ef31afe54d6a8b491d9ea204d7ee3cb3 (diff)
Fixed a prompt error in one of the parted calls. Also started on a more reliable size-conversion that isn't limited to Gigabytes in free_space().
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py23
1 files changed, 19 insertions, 4 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index d6f6ebde..2adb4ee5 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -337,14 +337,24 @@ class BlockDevice:
for partition in json.loads(SysCommand(f'lsblk -J -o+UUID {self.path}').decode('UTF-8'))['blockdevices']:
return partition.get('uuid', None)
+ def convert_size_to_gb(self, size):
+ units = {
+ 'P' : lambda s : float(s) * 2048,
+ 'T' : lambda s : float(s) * 1024,
+ 'G' : lambda s : float(s),
+ 'M' : lambda s : float(s) / 1024,
+ 'K' : lambda s : float(s) / 2048,
+ 'B' : lambda s : float(s) / 3072,
+ }
+ unit = size[-1]
+ return float(units.get(unit, lambda s : None)(size[:-1]))
+
@property
def size(self):
output = json.loads(SysCommand(f"lsblk --json -o+SIZE {self.path}").decode('UTF-8'))
for device in output['blockdevices']:
- assert device['size'][-1] == 'G' # Make sure we're counting in Gigabytes, otherwise the next logic fails.
-
- return float(device['size'][:-1])
+ return self.convert_size_to_gb(device['size'])
@property
def bus_type(self):
@@ -362,7 +372,11 @@ class BlockDevice:
@property
def free_space(self):
- for line in SysCommand(f"parted --machine {self.path} print free"):
+ # NOTE: parted -s will default to `cancel` on prompt, skipping any partition
+ # that is "outside" the disk. in /dev/sr0 this is usually the case with Archiso,
+ # so the free will ignore the ESP partition and just give the "free" space.
+ # Doesn't harm us, but worth noting in case something weird happens.
+ for line in SysCommand(f"parted -s --machine {self.path} print free"):
if 'free' in (free_space := line.decode('UTF-8')):
_, start, end, size, *_ = free_space.strip('\r\n;').split(':')
yield (start, end, size)
@@ -912,6 +926,7 @@ def all_disks(*args, **kwargs):
continue
drives[drive['path']] = BlockDevice(drive['path'], drive)
+
return drives