From a822c9ab77b316475bf3c1e7da29ad174f945a2f Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 31 Jul 2019 08:41:47 -0400 Subject: [PATCH] Add mips to qemu dockerfile --- images/qemu/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/images/qemu/Dockerfile b/images/qemu/Dockerfile index d209cea..a9b4b41 100644 --- a/images/qemu/Dockerfile +++ b/images/qemu/Dockerfile @@ -41,7 +41,7 @@ RUN cd qemu-4.0.0 && ./configure \ --disable-glusterfs \ --disable-tools \ --disable-werror \ - --target-list="x86_64-softmmu,i386-softmmu,aarch64-softmmu,arm-softmmu,ppc64-softmmu,s390x-softmmu,riscv64-softmmu" + --target-list="x86_64-softmmu,i386-softmmu,aarch64-softmmu,arm-softmmu,ppc64-softmmu,s390x-softmmu,riscv64-softmmu,mips-softmmu,mipsel-softmmu,mips64el-softmmu" RUN cd qemu-4.0.0 && make && make install @@ -53,6 +53,9 @@ COPY --from=0 /bin/qemu-system-arm /bin/ COPY --from=0 /bin/qemu-system-ppc64 /bin/ COPY --from=0 /bin/qemu-system-ppc64le /bin/ COPY --from=0 /bin/qemu-system-s390x /bin/ +COPY --from=0 /bin/qemu-system-mips /bin/ +COPY --from=0 /bin/qemu-system-mipsel /bin/ +COPY --from=0 /bin/qemu-system-mips64el /bin/ COPY --from=0 /share/qemu/ /share/qemu/ COPY --from=0 /lib/x86_64-linux-gnu/libnss_dns-2.28.so /lib/x86_64-linux-gnu/ COPY --from=0 /lib/x86_64-linux-gnu/libnss_dns.so.2 /lib/x86_64-linux-gnu/ -- 2.38.5