Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-06-06 17:13:42 +0200
committerAnton Hvornum <anton@hvornum.se>2021-06-06 17:13:42 +0200
commit0552d040ac8fb4517d77f3fa86ec3039ab71fb4b (patch)
tree889618fbaa89a09c8b0eec2367fb039ba8369dea /archinstall/lib/user_interaction.py
parentce4b1fbcff00a3029de06f4b20e60dcaa9e3af93 (diff)
Added a json.dumps() helper that wraps JSON cls. Also tweaked the logic for the size creation so that they don't overlap
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-rw-r--r--archinstall/lib/user_interaction.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index e28b66b2..30fb7e51 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -633,8 +633,8 @@ def get_default_partition_layout(block_devices):
"type" : "primary",
"start" : "513MiB",
"encrypted" : True,
- "size" : f"{max(block_devices[0].size*0.2, 20)}GiB",
- "mountpoint" : "",
+ "size" : f"{max(block_devices[0].size*0.2, 20)*1024}MiB", # Warning: Won't work on small where max size is 16GB for instance.
+ "mountpoint" : "/",
"filesystem" : {
"format" : "btrfs"
}
@@ -642,7 +642,7 @@ def get_default_partition_layout(block_devices):
{ # Home
"type" : "primary",
"encrypted" : True,
- "start" : f"{max(block_devices[0].size*0.2, 20)}GiB",
+ "start" : f"{513 + (max(block_devices[0].size*0.2, 20)*1024)}MiB",
"size" : "100%",
"mountpoint" : "/home",
"filesystem" : {