diff mbox series

[1/2] Dockerfile: Add m68k-softmmu to qemu

Message ID 20230321193143.220810-1-trini@konsulko.com
State Accepted
Commit 3854706f0fbcab76cb84e7abcaeeb98253a80471
Delegated to: Tom Rini
Headers show
Series [1/2] Dockerfile: Add m68k-softmmu to qemu | expand

Commit Message

Tom Rini March 21, 2023, 7:31 p.m. UTC
Given efforts to add an m68k target to CI, build qemu for it.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
Cc: Marek Vasut <marek.vasut+renesas@mailbox.org>
---
 tools/docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Marek Vasut March 22, 2023, 12:48 a.m. UTC | #1
On 3/21/23 20:31, Tom Rini wrote:
> Given efforts to add an m68k target to CI, build qemu for it.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> Cc: Marek Vasut <marek.vasut+renesas@mailbox.org>

Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

+CC Angelo too.
Tom Rini March 22, 2023, 2:37 p.m. UTC | #2
On Tue, Mar 21, 2023 at 03:31:42PM -0400, Tom Rini wrote:

> Given efforts to add an m68k target to CI, build qemu for it.
> 
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Marek Vasut <marek.vasut+renesas@mailbox.org>

Applied to u-boot/next, thanks!
diff mbox series

Patch

diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile
index fdcb0c7f3d29..2d94ed9fbacf 100644
--- a/tools/docker/Dockerfile
+++ b/tools/docker/Dockerfile
@@ -182,7 +182,7 @@  RUN git clone https://gitlab.com/qemu-project/qemu.git /tmp/qemu && \
 	git config user.email u-boot@denx.de && \
 	# manually apply the bug fix for QEMU 6.1.0 Xilinx Zynq UART emulation codes
 	wget -O - http://patchwork.ozlabs.org/project/qemu-devel/patch/20210823020813.25192-2-bmeng.cn@gmail.com/mbox/ | git am && \
-	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,sh4-softmmu,x86_64-softmmu,xtensa-softmmu" && \
+	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,m68k-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,sh4-softmmu,x86_64-softmmu,xtensa-softmmu" && \
 	make -j$(nproc) all install && \
 	rm -rf /tmp/qemu