Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-01-26 00:02:13 +0100
committerGitHub <noreply@github.com>2021-01-26 00:02:13 +0100
commit2885da3f71288c507eb1a4f8539139c65d3b70a5 (patch)
tree2873e71a7d2e2a86d454b53b011ac7c646fd465f /archinstall/lib/installer.py
parent6cac9b86106ae6153946da866296beefb58420a3 (diff)
parenteb7f44d03dc3635c4cf4a0c719977c824b5e7a87 (diff)
Merge pull request #90 from Reiddragon/master
Added basic F2FS support
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index c4cdf857..21c1b5d9 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -259,6 +259,8 @@ class Installer():
self.base_packages.append('btrfs-progs')
if self.partition.filesystem == 'xfs':
self.base_packages.append('xfsprogs')
+ if self.partition.filesystem == 'f2fs':
+ self.base_packages.append('f2fs-tools')
self.pacstrap(self.base_packages)
self.helper_flags['base-strapped'] = True
#self.genfstab()