mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-10 01:08:28 +02:00
installer: Remove support for ReiserFS
https://lore.kernel.org/lkml/YhIwUEpymVzmytdp@casper.infradead.org/ ReiserFS is an old file system which has not been actively maintained in the Linux kernel for a long time. It is potentially going to be removed soon which is why we shouldn't encourage people to create new installations with ReiserFS any more. This patch removes support for ReiserFS from the installer. We should keep it enabled in the kernel for as long as it is available, but we will have to encourage users potentially to re-install on a different file system. Since ReiserFS isn't very popular any more, I don't think that there will be many users left. Signed-off-by: Michael Tremer <michael.tremer@ipfire.org> Acked-by: Peter Müller <peter.mueller@ipfire.org> Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -720,7 +720,6 @@ int main(int argc, char *argv[]) {
|
||||
{ HW_FS_EXT4, _("ext4 Filesystem") },
|
||||
{ HW_FS_EXT4_WO_JOURNAL, _("ext4 Filesystem without journal") },
|
||||
{ HW_FS_XFS, _("XFS Filesystem") },
|
||||
{ HW_FS_REISERFS, _("ReiserFS Filesystem") },
|
||||
{ 0, NULL },
|
||||
};
|
||||
unsigned int num_filesystems = sizeof(filesystems) / sizeof(*filesystems);
|
||||
@@ -735,7 +734,7 @@ int main(int argc, char *argv[]) {
|
||||
}
|
||||
|
||||
rc = newtWinMenu(_("Filesystem Selection"), _("Please choose your filesystem:"),
|
||||
50, 5, 5, 6, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
|
||||
50, 5, 5, 5, fs_names, &fs_choice, _("OK"), _("Cancel"), NULL);
|
||||
|
||||
if (rc == 2)
|
||||
goto EXIT;
|
||||
|
||||
Reference in New Issue
Block a user