summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--initramfs/stage3-stuff/etc/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/initramfs/stage3-stuff/etc/functions b/initramfs/stage3-stuff/etc/functions
index 851ad74d..8eff711f 100644
--- a/initramfs/stage3-stuff/etc/functions
+++ b/initramfs/stage3-stuff/etc/functions
@@ -347,7 +347,7 @@ wget_get () {
echo "[wget_get] download of \"$file\" from \"$file_server\" ... failed"
return 0;
fi
- wget $file_server$file -O /tmp/$(basename $file)
+ wget -q $file_server$file -O /tmp/$(basename $file)
[ -s /tmp/$(basename $file) ] && download_successful=1
countdown=$(expr $countdown - 1)
usleep 200000