Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk.py
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-01-22 15:32:29 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-01-22 15:32:29 +0530
commit40c6aad0ed68ba8c3a5e98084f923d7840f4ed4e (patch)
treecbb94f1cb77ae4a06da795ee56c069828ff12df6 /archinstall/lib/disk.py
parent6fb2e0c129544e34c1033c0c220246f8c68d402a (diff)
xfs as partition option
Diffstat (limited to 'archinstall/lib/disk.py')
-rw-r--r--archinstall/lib/disk.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 80dc4735..35ff5712 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -134,6 +134,10 @@ class Partition():
if (handle := sys_command(f'/usr/bin/mkfs.ext4 -F {self.path}')).exit_code != 0:
raise DiskError(f'Could not format {self.path} with {filesystem} because: {b"".join(handle)}')
self.filesystem = 'ext4'
+ elif filesystem == 'xfs':
+ if (handle:= sys_command(f'/usr/bin/mkfs.xfs -f {self.path}')).exit_code != 0:
+ raise DiskError(f'Could not format {self.path} with {filesystem} because: {b"".join(handle)}')
+ self.filesystem = 'xfs'
else:
raise DiskError(f'Fileformat {filesystem} is not yet implemented.')
return True