xfs as partition option

This commit is contained in:
advaithm 2021-01-22 15:32:29 +05:30
parent 6fb2e0c129
commit 40c6aad0ed
No known key found for this signature in database
GPG Key ID: E557E45E6DAFFC0C
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -190,7 +190,8 @@ class Installer():
if self.partition.filesystem == 'btrfs':
#if self.partition.encrypted:
self.base_packages.append('btrfs-progs')
if self.part.filesystem == 'xfs':
self.base_packages.append('xfsprogs')
self.pacstrap(self.base_packages)
#self.genfstab()
@ -310,4 +311,4 @@ class Installer():
with open(f'{self.mountpoint}/etc/vconsole.conf', 'w') as vconsole:
vconsole.write(f'KEYMAP={language}\n')
vconsole.write(f'FONT=lat9w-16\n')
return True
return True