mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] test/Containerfile: run wget with no-verbose flag
@ 2023-06-12 12:47 Ahmad Fatoum
  2023-06-12 12:57 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2023-06-12 12:47 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum

Container build results in a number of toolchain downloads and default
wget behavior of updating the progress bar results in a lot of lines
to wade through when reviewing the log. There's middle ground between
this and quiet operation in the form of the --no-verbose or -nv flag.
Make use of it.

Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 test/Containerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/Containerfile b/test/Containerfile
index 8c1f2f893805..224ea2ea4804 100644
--- a/test/Containerfile
+++ b/test/Containerfile
@@ -51,7 +51,7 @@ RUN apt-get update && apt-get install -y \
 ENV GCC_VERSION=13.1.0
 
 # Manually install the kernel.org Crosstool based toolchains
-RUN korg_crosstool_dl() { wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/${1}/${2}/${1}-gcc-${2}-nolibc-${3}.tar.xz | tar -C /opt -xJ ; } && \
+RUN korg_crosstool_dl() { wget -nv -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/${1}/${2}/${1}-gcc-${2}-nolibc-${3}.tar.xz | tar -C /opt -xJ ; } && \
     korg_crosstool_dl x86_64 ${GCC_VERSION} arm-linux-gnueabi && \
     korg_crosstool_dl x86_64 ${GCC_VERSION} aarch64-linux     && \
     korg_crosstool_dl x86_64 ${GCC_VERSION} mips-linux        && \
-- 
2.39.2




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-12 12:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-12 12:47 [PATCH] test/Containerfile: run wget with no-verbose flag Ahmad Fatoum
2023-06-12 12:57 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox