Anton Hvornum 2025-01-21 18:53:55 +01:00 committed by GitHub
parent 4aa8317b7c
commit 6d371da5df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 4 deletions

View File

@ -30,7 +30,6 @@ depends=(
'lvm2'
'f2fs-tools'
'ntfs-3g'
'reiserfsprogs'
)
makedepends=(
'python-setuptools'

View File

@ -278,8 +278,6 @@ class DeviceHandler:
case FilesystemType.Ntfs:
# Skip zeroing and bad sector check
options.append('--fast')
case FilesystemType.Reiserfs:
pass
case FilesystemType.LinuxSwap:
command = "mkswap"
case _:

View File

@ -766,7 +766,6 @@ class FilesystemType(Enum):
Fat16 = 'fat16'
Fat32 = 'fat32'
Ntfs = 'ntfs'
Reiserfs = 'reiserfs'
Xfs = 'xfs'
LinuxSwap = 'linux-swap'