When downloading toolchains, we already use the wget -nv (non-verbose) option to avoid a lot of progress indication clutter in the logs: 12300K .......... .......... .......... .......... .......... 19% 165M 0s 12350K .......... .......... .......... .......... .......... 19% 138M 0s 12400K .......... .......... .......... .......... .......... 19% 151M 0s 12450K .......... .......... .......... .......... .......... 19% 155M 0s Add the option to the two other wget invocations that lack them. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- test/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Containerfile b/test/Containerfile index 23f33dc8d7ff..5c49164d33b6 100644 --- a/test/Containerfile +++ b/test/Containerfile @@ -60,14 +60,14 @@ RUN korg_crosstool_dl() { wget -nv -O - https://mirrors.edge.kernel.org/pub/tool korg_crosstool_dl x86_64 ${GCC_VERSION} powerpc-linux && \ korg_crosstool_dl x86_64 ${GCC_VERSION} riscv64-linux -RUN wget -O kvx.tgz https://github.com/kalray/build-scripts/releases/download/v5.0.0/gcc-kalray-kvx-ubuntu-22.04-v5.0.0.tar.gz +RUN wget -nv -O kvx.tgz https://github.com/kalray/build-scripts/releases/download/v5.0.0/gcc-kalray-kvx-ubuntu-22.04-v5.0.0.tar.gz RUN echo "d27b3d6e6246f5debffee0bb01e77eb133bd32c658782a68a779cf9fb4c436bc kvx.tgz" | \ sha256sum --check --status RUN tar -C /opt -xzf kvx.tgz && rm kvx.tgz -RUN wget "https://github.com/qemu/qemu/blob/v5.2.0/pc-bios/opensbi-riscv32-generic-fw_dynamic.bin?raw=true" -O /usr/share/qemu/opensbi-riscv32-generic-fw_dynamic.bin +RUN wget -nv "https://github.com/qemu/qemu/blob/v5.2.0/pc-bios/opensbi-riscv32-generic-fw_dynamic.bin?raw=true" -O /usr/share/qemu/opensbi-riscv32-generic-fw_dynamic.bin # Create our user/group RUN useradd -m -U barebox -- 2.39.2