diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2018-03-07 10:31:40 +0100 |
---|---|---|
committer | Corentin LABBE <clabbe@baylibre.com> | 2018-03-08 20:07:14 +0100 |
commit | c79a1c359bf42a0164f85d7e54476e7b1430b0ec (patch) | |
tree | c294a69cfd10c9cde92963e64c9ffb25217664c6 /lava-slave/Dockerfile | |
parent | 4bd2731463230669c7c19c0ee085f3019f3ef169 (diff) |
Install qemu-kvm only on x86/x86_64
qemu-kvm is not availlable on ARM.
Install it only on supported x86/x86_64
Diffstat (limited to 'lava-slave/Dockerfile')
-rw-r--r-- | lava-slave/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lava-slave/Dockerfile b/lava-slave/Dockerfile index 6f2181e..b6a2cee 100644 --- a/lava-slave/Dockerfile +++ b/lava-slave/Dockerfile @@ -24,10 +24,11 @@ RUN \ qemu-system \ qemu-system-arm \ qemu-system-i386 \ - qemu-kvm \ xnbd-server \ e2fsprogs +RUN if [ "$(uname -m)" = "x86_64" -o "$(uname -m)" = "x86" ] ;then apt-get -y install qemu-kvm ; fi + # Uncomment the following for having the latest package (you need to comment all build-lava below) #RUN DEBIAN_FRONTEND=noninteractive apt-get -y install wget gnupg \ # && wget http://images.validation.linaro.org/production-repo/production-repo.key.asc \ |