diff options
author | Felix Singer <felixsinger@posteo.net> | 2022-08-20 11:16:05 +0200 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-08-27 16:01:12 +0000 |
commit | acbdc4d72ed9b2027dc32439cb13d3c0d75ea1fc (patch) | |
tree | f3bcebe9504925e6a54c91cba9c969b1b1747823 /util | |
parent | 3729b1c2a8b35265dad2d1e327ca39a8a95b296f (diff) |
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 <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66923
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tom Hiller <thrilleratplay@gmail.com>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util')
-rw-r--r-- | util/docker/coreboot-sdk/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
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 \ |