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@xxxxxxxxxxxxxx> --- 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