Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-06-10 20:38:35 +0200
committerAnton Hvornum <anton@hvornum.se>2021-06-10 20:38:35 +0200
commit4e9b1c163574b44517c6e09de4c91c4ef5995969 (patch)
tree8916cff57309f986047e4be9d5276e0014e65a3e /examples
parent4691bad46b0cc7c4a04ce401ff2c7de93128d717 (diff)
Renamed vfat -> fat32 for the purpose of consistency. Most actions are referring to fat32, it's only mkfs that has the notion vfat and then -F32 for format 32. And I think vfat confuses more people than it does good, so sticking with fat32 which works better with parted as well. Also added the partitioning logic, started on the mounting logic
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/guided.py b/examples/guided.py
index f477a738..2e2d0d98 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -223,6 +223,7 @@ def perform_filesystem_operations():
for drive in archinstall.arguments['harddrives']:
with archinstall.Filesystem(drive, mode) as fs:
fs.load_layout(archinstall.storage['disk_layouts'][drive])
+ fs.mount_ordered_layout(archinstall.storage['disk_layouts'][drive])
perform_installation(archinstall.storage.get('MOUNT_POINT', '/mnt'))