index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 14:07:08 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-11-11 14:07:08 +0000 |
commit | 15e569d0bd0c910bd65573007135ab10267d82bc (patch) | |
tree | e787ab493a21b1be44b94edb2a3785b2bad039c0 /archinstall | |
parent | 58099534404ca9c9ee68b9cbc06c3a8e739cbbcc (diff) |
-rw-r--r-- | archinstall/lib/disk/filesystem.py | 5 |
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 0c535c7d..28df097e 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -165,6 +165,11 @@ class Filesystem: new_uuid_set = (previous_partition_uuids ^ {partition.uuid for partition in self.blockdevice.partitions.values()}) if len(new_uuid_set) > 0: new_uuid = new_uuid_set.pop() + print('Blockdevice:', self.blockdevice) + print('Partitions:', self.blockdevice.partitions) + print('Partition set:', new_uuid_set) + print('New UUID:', [new_uuid]) + print('get_partition():', self.blockdevice.get_partition) if new_uuid: return self.blockdevice.get_partition(new_uuid) else: |