From 8d249e07f17dbb2390788cdc6a1b3f85bfdb1462 Mon Sep 17 00:00:00 2001 From: Vojtech Trefny Date: Tue, 14 Nov 2023 07:29:21 +0100 Subject: [PATCH] Remove support for labelling JFS and ReiserFS Next version of Blivet is going to remove support for JFS and ReiserFS. --- blivetgui/dialogs/helpers.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/blivetgui/dialogs/helpers.py b/blivetgui/dialogs/helpers.py index ae198332..fd3f4d6b 100644 --- a/blivetgui/dialogs/helpers.py +++ b/blivetgui/dialogs/helpers.py @@ -33,7 +33,7 @@ from blivet import devicefactory from blivet.devicelibs import btrfs, lvm, crypto -from blivet.tasks.fslabeling import Ext2FSLabeling, FATFSLabeling, JFSLabeling, ReiserFSLabeling, XFSLabeling, NTFSLabeling +from blivet.tasks.fslabeling import Ext2FSLabeling, FATFSLabeling, XFSLabeling, NTFSLabeling # ---------------------------------------------------------------------------- # @@ -109,10 +109,6 @@ def is_label_valid(format_type, label): return Ext2FSLabeling.label_format_ok(label) elif format_type == "vfat": return FATFSLabeling.label_format_ok(label) - elif format_type == "jfs": - return JFSLabeling.label_format_ok(label) - elif format_type == "raiserfs": - return ReiserFSLabeling.label_format_ok(label) elif format_type == "xfs": return XFSLabeling.label_format_ok(label) elif format_type == "ntfs":