diff options
| author | Alex Bennée | 2019-08-15 21:39:16 +0200 |
|---|---|---|
| committer | Alex Bennée | 2019-09-10 15:14:31 +0200 |
| commit | d2467284e82f091a8997ec6a018107d3af009e84 (patch) | |
| tree | a95b0314d2743d74339d76d112e67a39054bfb6a /tests/docker/dockerfiles/debian-s390x-cross.docker | |
| parent | tests/docker: add debian-amd64-cross for non-x86 hosts (diff) | |
| download | qemu-d2467284e82f091a8997ec6a018107d3af009e84.tar.gz qemu-d2467284e82f091a8997ec6a018107d3af009e84.tar.xz qemu-d2467284e82f091a8997ec6a018107d3af009e84.zip | |
tests/docker: use --arch-only for installing deps
The Debian QEMU packages require a bunch of cross compilers for
building firmware which aren't available on all host architectures.
Using --arch-only skips this particular requirement and allows us to
install just the dependencies we need.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'tests/docker/dockerfiles/debian-s390x-cross.docker')
| -rw-r--r-- | tests/docker/dockerfiles/debian-s390x-cross.docker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/docker/dockerfiles/debian-s390x-cross.docker b/tests/docker/dockerfiles/debian-s390x-cross.docker index efa346007d..eb73c98855 100644 --- a/tests/docker/dockerfiles/debian-s390x-cross.docker +++ b/tests/docker/dockerfiles/debian-s390x-cross.docker @@ -17,7 +17,7 @@ RUN apt update && \ RUN apt update && \ DEBIAN_FRONTEND=noninteractive eatmydata \ - apt build-dep -yy -a s390x qemu + apt build-dep -yy -a s390x --arch-only qemu # Specify the cross prefix for this image (see tests/docker/common.rc) ENV QEMU_CONFIGURE_OPTS --cross-prefix=s390x-linux-gnu- |
