Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-03-24 15:26:32 +0100
committerGitHub <noreply@github.com>2021-03-24 15:26:32 +0100
commit037332a18d2c506d1dd0bef7b3450c8308792f61 (patch)
treed1e210c406d17375ebb3b0697d2e2d23da3f7744 /archinstall
parent197b690456c3ce44f48a187f48fbfc44f8e91682 (diff)
Removed vfat as an option for the root partition
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/user_interaction.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index c883d6a3..e462c370 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -132,8 +132,7 @@ def ask_for_main_filesystem_format():
'btrfs' : 'btrfs',
'ext4' : 'ext4',
'xfs' : 'xfs',
- 'f2fs' : 'f2fs',
- 'vfat' : 'vfat'
+ 'f2fs' : 'f2fs'
}
value = generic_select(options.values(), "Select which filesystem your main partition should use (by number of name): ")
@@ -317,4 +316,4 @@ def select_mirror_regions(mirrors, show_top_mirrors=True):
return selected_mirrors
- raise RequirementError("Selecting mirror region require a least one region to be given as an option.") \ No newline at end of file
+ raise RequirementError("Selecting mirror region require a least one region to be given as an option.")