grub-fs-tester: Fix mkudffs invocation.
With current invocation order of arguments is wrong and path is hardcoded.
This commit is contained in:
parent
1d4e3db907
commit
a5bd52990e
1 changed files with 1 additions and 1 deletions
|
@ -654,7 +654,7 @@ for ((LOGSECSIZE=MINLOGSECSIZE;LOGSECSIZE<=MAXLOGSECSIZE;LOGSECSIZE=LOGSECSIZE +
|
||||||
MOUNTOPTS="iocharset=utf8,compression,"
|
MOUNTOPTS="iocharset=utf8,compression,"
|
||||||
MOUNTFS="ntfs-3g";;
|
MOUNTFS="ntfs-3g";;
|
||||||
x"udf")
|
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,";;
|
MOUNTOPTS="iocharset=utf8,bs=$BLKSIZE,";;
|
||||||
x"ufs2")
|
x"ufs2")
|
||||||
"mkfs.ufs" -b $BLKSIZE -L "$FSLABEL" -O 2 "${LODEVICES[0]}"
|
"mkfs.ufs" -b $BLKSIZE -L "$FSLABEL" -O 2 "${LODEVICES[0]}"
|
||||||
|
|
Loading…
Reference in a new issue