index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | archinstall/lib/disk.py | 6 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 58e2eb59..0c46e779 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -570,6 +570,12 @@ class Filesystem: SysCommand('sync') return True + def load_layout(self, layout :dict): + for partition in layout: + print(partition) + + exit(0) + def find_partition(self, mountpoint): for partition in self.blockdevice: if partition.target_mountpoint == mountpoint or partition.mountpoint == mountpoint: |