[PATCH] test/Containerfile: run wget with no-verbose flag
Sascha Hauer
sha at pengutronix.de
Mon Jun 12 05:57:46 PDT 2023
On Mon, Jun 12, 2023 at 02:47:28PM +0200, Ahmad Fatoum wrote:
> 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 at pengutronix.de>
> ---
> test/Containerfile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied, thanks
Sascha
>
> 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
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
More information about the barebox
mailing list