From acbdc4d72ed9b2027dc32439cb13d3c0d75ea1fc Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 20 Aug 2022 11:16:05 +0200 Subject: [PATCH] util/docker/coreboot-sdk: Replace package qemu with qemu-system The qemu package doesn't exist anymore or it was renamed. Instead of installing QEMU for all available architectures, install only the packages which ship architectures that are supported by coreboot. * qemu-system-arm * qemu-system-misc (for RISC-V) * qemu-system-ppc * qemu-system-x86 Change-Id: Ifc46a8c9fcb1ab3c38dc8cbbc906882e93a719d7 Signed-off-by: Felix Singer Reviewed-on: https://review.coreboot.org/c/coreboot/+/66923 Tested-by: build bot (Jenkins) Reviewed-by: Tom Hiller Reviewed-by: Angel Pons --- util/docker/coreboot-sdk/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/util/docker/coreboot-sdk/Dockerfile b/util/docker/coreboot-sdk/Dockerfile index 55edf5d5d5..6859ba161c 100644 --- a/util/docker/coreboot-sdk/Dockerfile +++ b/util/docker/coreboot-sdk/Dockerfile @@ -68,7 +68,10 @@ RUN \ pkg-config \ python2 \ python3 \ - qemu \ + qemu-system-arm \ + qemu-system-misc \ + qemu-system-ppc \ + qemu-system-x86 \ rsync \ shellcheck \ subversion \