diff options
Diffstat (limited to 'src/core/procedures')
-rw-r--r-- | src/core/procedures/automatic | 1 | ||||
-rw-r--r-- | src/core/procedures/base | 1 | ||||
-rw-r--r-- | src/core/procedures/interactive | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/core/procedures/automatic b/src/core/procedures/automatic index 596aed3..6fdc1d8 100644 --- a/src/core/procedures/automatic +++ b/src/core/procedures/automatic @@ -82,6 +82,7 @@ worker_runtime_network () worker_prepare_disks () { + get_possible_fs echo "$var_PARTITIONS" > $TMP_PARTITIONS echo "$var_BLOCKDATA" > $TMP_BLOCKDEVICES process_disks || die_error "Could not process_disks" diff --git a/src/core/procedures/base b/src/core/procedures/base index f357908..98a816b 100644 --- a/src/core/procedures/base +++ b/src/core/procedures/base @@ -139,6 +139,7 @@ worker_interactive_time () worker_prepare_disks () { partition # use lib-archboot function by default + get_possible_fs # in official installer: autoprepare or diy first partitions, then mountpoints } diff --git a/src/core/procedures/interactive b/src/core/procedures/interactive index b64101b..5673347 100644 --- a/src/core/procedures/interactive +++ b/src/core/procedures/interactive @@ -101,6 +101,7 @@ worker_configure_system() worker_prepare_disks() { + get_possible_fs interactive_prepare_disks } |