]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
tests: mkreiserfs only supports 4096 block size
authorGlenn Washburn <development@efficientek.com>
Fri, 17 Sep 2021 23:03:56 +0000 (23:03 +0000)
committerDaniel Kiper <daniel.kiper@oracle.com>
Thu, 14 Oct 2021 13:09:06 +0000 (15:09 +0200)
Signed-off-by: Glenn Washburn <development@efficientek.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
tests/util/grub-fs-tester.in

index 7378f812e5e32fb35f90e176e22ef9b9cdd31696..f6ef7503054a6045f08a9a381fd31ac6162d5a31 100644 (file)
@@ -126,8 +126,10 @@ for LOGSECSIZE in $(range "$MINLOGSECSIZE" "$MAXLOGSECSIZE" 1); do
            MAXBLKSIZE=4096
            ;;
        xreiserfs*)
-           MINBLKSIZE=512
-               # OS LIMITATION: 8192 isn't supported.
+           # OS LIMITATION: mkreiserfs says block sizes smaller than 4 KiB are
+           # not supported and bails. Its been this way since at least 2014.
+           MINBLKSIZE=4096
+           # OS LIMITATION: 8192 isn't supported.
            MAXBLKSIZE=4096
            ;;
        x"mdraid"*)