diff mbox series

[3/3] Dockerfile: Build QEMU for RISC-V 32-bit

Message ID 1585238694-2714-3-git-send-email-bmeng.cn@gmail.com
State New
Headers show
Series [1/3] Dockerfile: Install riscv32 toolchain from kernel.org | expand

Commit Message

Bin Meng March 26, 2020, 4:04 p.m. UTC
Build qemu-system-riscv32 executable for U-Boot testing.

Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---

 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Dockerfile b/Dockerfile
index a19067e..3a94eb4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -163,7 +163,7 @@  RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \
 	cd /tmp/qemu && \
 	git submodule update --init dtc && \
 	git checkout v4.2.0 && \
-	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv64-softmmu,x86_64-softmmu,xtensa-softmmu" && \
+	./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,x86_64-softmmu,xtensa-softmmu" && \
 	make -j$(nproc) all install && \
 	rm -rf /tmp/qemu