summaryrefslogtreecommitdiffstats
path: root/util/chromeos
diff options
context:
space:
mode:
authorTristan Corrick <tristan@corrick.kiwi>2018-12-31 20:41:11 +1300
committerPatrick Georgi <pgeorgi@google.com>2019-01-03 16:52:57 +0000
commit30348c2058e926b3991888a7bc3d84445c0fe7cc (patch)
treebbdf9082bbc9e79f8f1a7598c26f44825bdbd3c5 /util/chromeos
parentdf90c626e055f63a7ef38f679b009e402566c47f (diff)
downloadcoreboot-30348c2058e926b3991888a7bc3d84445c0fe7cc.tar.gz
coreboot-30348c2058e926b3991888a7bc3d84445c0fe7cc.tar.bz2
coreboot-30348c2058e926b3991888a7bc3d84445c0fe7cc.zip
util/chromeos/crosfirmware.sh: Print download status
It's quite useful to know the download progress, as it can take a while even with a fast connection. For example, the peppy recovery image is ~600 MiB. It also lets the user know that disk space is being filled. Change-Id: I8c175f9095478ffe33c95b7ef9907c25b5f10f8c Signed-off-by: Tristan Corrick <tristan@corrick.kiwi> Reviewed-on: https://review.coreboot.org/c/30548 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/chromeos')
-rwxr-xr-xutil/chromeos/crosfirmware.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/chromeos/crosfirmware.sh b/util/chromeos/crosfirmware.sh
index aaf30acee199..0d3c40a28130 100755
--- a/util/chromeos/crosfirmware.sh
+++ b/util/chromeos/crosfirmware.sh
@@ -43,7 +43,7 @@ download_image()
_file=$2
debug "Downloading recovery image"
- curl -s "$_url" > "$_file.zip"
+ curl "$_url" > "$_file.zip"
debug "Decompressing recovery image"
unzip -q "$_file.zip"
rm "$_file.zip"