From: Vladimir Serbinenko Date: Thu, 2 Feb 2017 22:32:38 +0000 (+0100) Subject: grub-fs-tester: Fix mkudffs invocation. X-Git-Tag: 2.02-rc1~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5bd52990e4ecda96cedd8a7c44d1ec566f91479;p=thirdparty%2Fgrub.git grub-fs-tester: Fix mkudffs invocation. With current invocation order of arguments is wrong and path is hardcoded. --- diff --git a/tests/util/grub-fs-tester.in b/tests/util/grub-fs-tester.in index ad65e81c8..9fa9ce02e 100644 --- a/tests/util/grub-fs-tester.in +++ b/tests/util/grub-fs-tester.in @@ -654,7 +654,7 @@ for ((LOGSECSIZE=MINLOGSECSIZE;LOGSECSIZE<=MAXLOGSECSIZE;LOGSECSIZE=LOGSECSIZE + MOUNTOPTS="iocharset=utf8,compression," MOUNTFS="ntfs-3g";; x"udf") - "/usr/bin/mkudffs" -b $BLKSIZE --utf8 --lvid="$FSLABEL" "${LODEVICES[0]}" + "mkudffs" --utf8 -b $BLKSIZE --lvid="$FSLABEL" "${LODEVICES[0]}" MOUNTOPTS="iocharset=utf8,bs=$BLKSIZE,";; x"ufs2") "mkfs.ufs" -b $BLKSIZE -L "$FSLABEL" -O 2 "${LODEVICES[0]}"