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>
This commit is contained in:
parent
df90c626e0
commit
30348c2058
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue