From 7dbfa88015a50cf0e797935fd515f80176b51209 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Sat, 25 Feb 2023 18:06:52 -0300 Subject: [PATCH] dragora-installer: Do not offer Reiserfs4 for now MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The provided kernel needs to be patched in order to support this. A request to the Reiser maintainer has been made for both kernels in Dragora (i586/amd64) but there are no answers, yet. Signed-off-by: Matías Fonzo --- archive/dragora-installer/parts/MakeFS | 24 ------------------------ recipes/tools/dragora-installer/recipe | 4 ++-- 2 files changed, 2 insertions(+), 26 deletions(-) diff --git a/archive/dragora-installer/parts/MakeFS b/archive/dragora-installer/parts/MakeFS index 5d1669ce..d73f59b0 100644 --- a/archive/dragora-installer/parts/MakeFS +++ b/archive/dragora-installer/parts/MakeFS @@ -151,26 +151,6 @@ _mkbtrfs() sleep 4 } -_mkreiser4() -{ - # Check if the device name is a SDD - case $1 in - *nvme*) - reiser_sdd=-d - ;; - esac - - dialog --clear - - echo "Making reiser4 filesystem for $1 ..." - echo "" - - mkfs.reiser4 -yf $reiser_sdd -o create=reg40,node=node41 "$1" - sleep 4 - - unset -v reiser_sdd -} - _mkxfs() { dialog --clear @@ -194,7 +174,6 @@ formatMenu() "ext3" "Third extended filesystem" "ext3 is suitable for both 32-bit and 64-bit systems" \ "ext4" "Fourth extended filesystem" "We suggest using it more for a 64-bit system than for a 32-bit system" \ "btrfs" "Btrfs filesystem" "A modern copy on write (CoW) filesystem for GNU/Linux" \ -"reiser4" "Reiser4 filesystem" "Reiser4 is a successor of ReiserFS (a general-purpose, journaling file system)" \ "xfs" "XFS filesystem" "XFS is a high-performance 64-bit journaling file system suitable for real-time applications" \ 2> "${SUBTMPDIR}/return-MakeFS_formatMenu" || _status=$? @@ -221,9 +200,6 @@ formatMenu() btrfs) _mkbtrfs "$1" ;; - reiser4) - _mkreiser4 "$1" - ;; xfs) _mkxfs "$1" ;; diff --git a/recipes/tools/dragora-installer/recipe b/recipes/tools/dragora-installer/recipe index 499d05b0..1f40204d 100644 --- a/recipes/tools/dragora-installer/recipe +++ b/recipes/tools/dragora-installer/recipe @@ -1,6 +1,6 @@ # Build recipe for dragora-installer. # -# Copyright (c) 2019-2022 Matias Fonzo, . +# Copyright (c) 2019-2023 Matias Fonzo, . # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -18,7 +18,7 @@ set -e program=dragora-installer -version=20221010 +version=20230225 release=1 # Define a category for the output of the package name -- 2.11.4.GIT