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:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-11-22 11:22:51 -0500
committerGitHub <noreply@github.com>2021-11-22 17:22:51 +0100
commit0c96ae049dd188c0df247c29ea36715e92428d3a (patch)
tree1a49b9add857a3c6fd7d6a4a2cdb5e486dbc2d78 /archinstall/lib/user_interaction.py
parent29d0b3d15570a12ad89feff8b49dd9be478e69c2 (diff)
NTFS Root Filesystem Support (#748)
* For fun, allow NTFS as a root filesystem type Add ability to format a filesystem as NTFS Try to force filesystem type Fix FAT mounting * Split out mount fs type method * Handle rootfstype on non-GRUB bootloaders * Add -Q to mkfs.ntfs command line for quick formatting * I believe this will fix GRUB with NTFS root * Remove the fsck hook if NTFS is used as the root partition * Looks like the string is ntfs3 not ntfs so this logic wasn't running
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-rw-r--r--archinstall/lib/user_interaction.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 05cba3ca..82113ba0 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -486,7 +486,8 @@ def ask_for_main_filesystem_format():
'btrfs': 'btrfs',
'ext4': 'ext4',
'xfs': 'xfs',
- 'f2fs': 'f2fs'
+ 'f2fs': 'f2fs',
+ 'ntfs': 'ntfs'
}
value = generic_select(options, "Select which filesystem your main partition should use (by number or name): ", allow_empty_input=False)