From b076121430a6db5ff52adbd9fe7ffdc63a8bd121 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 7 Jul 2010 14:25:16 +0000 Subject: [PATCH] * Don't use the -v flag because not every fsck backend knows it. svn path=/nixos/trunk/; revision=22512 --- modules/system/boot/stage-1-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/boot/stage-1-init.sh b/modules/system/boot/stage-1-init.sh index c6a09d1e9a3..727322c6b40 100644 --- a/modules/system/boot/stage-1-init.sh +++ b/modules/system/boot/stage-1-init.sh @@ -168,7 +168,7 @@ checkFS() { return 0 fi - FSTAB_FILE="/etc/mtab" fsck -V -v -C -a "$device" + FSTAB_FILE="/etc/mtab" fsck -V -C -a "$device" fsckResult=$? if test $(($fsckResult | 2)) = $fsckResult; then