From 35ff0935fbbad6ec44fecf374e9f450693966df7 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Mon, 13 May 2019 11:18:48 -0400 Subject: [PATCH] Update qemu to 4.0.0 --- images/qemu/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/images/qemu/Dockerfile b/images/qemu/Dockerfile index 37e8f7e..5c49715 100644 --- a/images/qemu/Dockerfile +++ b/images/qemu/Dockerfile @@ -3,8 +3,8 @@ FROM debian:sid RUN apt-get -y update && apt-get -y upgrade && apt-get install -y \ build-essential pkg-config curl xz-utils -RUN curl -O https://download.qemu.org/qemu-3.0.0.tar.xz \ - && tar xvf qemu-3.0.0.tar.xz +RUN curl -O https://download.qemu.org/qemu-4.0.0.tar.xz \ + && tar xvf qemu-4.0.0.tar.xz RUN apt-get install -y \ python \ @@ -18,7 +18,7 @@ RUN apt-get install -y \ libpixman-1-dev \ libglib2.0-dev -RUN cd qemu-3.0.0 && ./configure \ +RUN cd qemu-4.0.0 && ./configure \ --prefix=/ \ --static \ --python=/usr/bin/python2 \ @@ -41,9 +41,9 @@ RUN cd qemu-3.0.0 && ./configure \ --disable-glusterfs \ --disable-tools \ --disable-werror \ - --target-list="x86_64-softmmu,i386-softmmu,aarch64-softmmu,arm-softmmu,ppc64-softmmu,s390x-softmmu" + --target-list="x86_64-softmmu,i386-softmmu,aarch64-softmmu,arm-softmmu,ppc64-softmmu,s390x-softmmu,riscv64-softmmu" -RUN cd qemu-3.0.0 && make && make install +RUN cd qemu-4.0.0 && make && make install FROM scratch COPY --from=0 /bin/qemu-system-x86_64 /bin/ -- 2.38.5