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

2023-03-22 Thread Tom Rini
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 
> Reviewed-by: Marek Vasut 

Applied to u-boot/next, thanks!

-- 
Tom


signature.asc
Description: PGP signature


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

2023-03-21 Thread Marek Vasut

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 
---
Cc: Marek Vasut 


Reviewed-by: Marek Vasut 

+CC Angelo too.


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

2023-03-21 Thread Tom Rini
Given efforts to add an m68k target to CI, build qemu for it.

Signed-off-by: Tom Rini 
---
Cc: Marek Vasut 
---
 tools/docker/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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-b...@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...@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
 
-- 
2.34.1