[U-Boot] [PATCH] Dockerfile: Build a copy of QEMU and install it under /opt

Heinrich Schuchardt xypron.glpk at gmx.de
Thu Jul 25 19:43:10 UTC 2019


On 7/24/19 9:51 PM, Tom Rini wrote:
> In order to run our test.py suite on a number of platforms in CI we use
> QEMU.  Configure and build a copy here so that all our jobs can rely on
> it as our code is under test and not QEMU.
>
> Signed-off-by: Tom Rini <trini at konsulko.com>
> ---
>   Dockerfile | 8 ++++++++
>   1 file changed, 8 insertions(+)
>
> diff --git a/Dockerfile b/Dockerfile
> index b599af8af6a0..73c1b8b1e021 100644
> --- a/Dockerfile
> +++ b/Dockerfile
> @@ -76,6 +76,14 @@ RUN apt-get update && apt-get install -y \
>   	zip \
>   	&& rm -rf /var/lib/apt/lists/*
>
> +RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \
> +	cd /tmp/qemu && \
> +	git submodule update --init dtc && \
> +	git checkout 506179e42112be77bfd071f050b15762d3b2cd43 && \
> +	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,x86_64-softmmu,xtensa-softmmu" && \
> +	make -j$(nproc) all install && \
> +	rm -rf /tmp/qemu
> +
>   # Create the buildman config file
>   RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman
>   RUN /bin/echo -e "kernelorg = /opt/gcc-7.3.0-nolibc/*" >> ~/.buildman
>

The file '/Dockerfile' does not exist in the current U-Boot
origin/master. It is hard to evaluate the patch without having the
complete file.

Where would I find the file?
It might be useful to add it to tools/ in the U-Boot git.

Best regards

Heinrich


More information about the U-Boot mailing list