summaryrefslogtreecommitdiff
path: root/scripts/install.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-10-07 05:33:10 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-10-07 05:33:10 +0200
commit51ce4a5f070087d6697ffe9d6b27d88485aab5db (patch)
tree715832215eecd0fe6a27b17b49de3878bb600ea2 /scripts/install.sh
parent51985248cd56c21aba0c0f3c980a4141090f4907 (diff)
-q breaks mkfs.vfat, reported by joern
Diffstat (limited to 'scripts/install.sh')
-rwxr-xr-xscripts/install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh
index cf9d5ecf6..66553de6b 100755
--- a/scripts/install.sh
+++ b/scripts/install.sh
@@ -200,7 +200,7 @@ case $ostype {
umount "$1"
}
function create_fs {
- mkfs.$3 -q "$1"
+ mkfs.$3 "$1"
tune2fs -c 0 -i 0 "$1"
}
;;