Code Review
/
fuel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
d8cf4a9
)
lib.sh: Reduce useless wget dot reporting
49/51149/1
author
Alexandru Avadanii
<Alexandru.Avadanii@enea.com>
Thu, 25 Jan 2018 22:30:30 +0000
(23:30 +0100)
committer
Alexandru Avadanii
<Alexandru.Avadanii@enea.com>
Thu, 25 Jan 2018 22:30:30 +0000
(23:30 +0100)
Downloading the base image (usually a few hundred MB) outputs a lot
of useless dots to show progress. Switch to 1M per dot (from 1K).
Change-Id: I8c525cad0b46e8ba3a7f6da4dd7f8277a49df91f
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
mcp/scripts/lib.sh
patch
|
blob
|
history
diff --git
a/mcp/scripts/lib.sh
b/mcp/scripts/lib.sh
index
2985903
..
d2ffaa6
100644
(file)
--- a/
mcp/scripts/lib.sh
+++ b/
mcp/scripts/lib.sh
@@
-32,7
+32,7
@@
function get_base_image {
local image_dir=$2
mkdir -p "${image_dir}"
- wget -P "${image_dir}" -N "${base_image}"
+ wget -
-progress=dot:giga -
P "${image_dir}" -N "${base_image}"
}
function __kernel_modules {