qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

tests/docker: move our powerpc cross compile to Buster

Now Buster is released we can stop relying on the movable feast that
is Sid for our cross-compiler for building tests.

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>

+4 -6
+1 -1
tests/docker/Makefile.include
··· 99 99 docker-image-debian-win64-cross: docker-image-debian9-mxe 100 100 101 101 docker-image-debian-arm64-cross: docker-image-debian10 102 + docker-image-debian-powerpc-cross: docker-image-debian10 102 103 103 104 docker-image-debian-alpha-cross: docker-image-debian-sid 104 105 docker-image-debian-hppa-cross: docker-image-debian-sid ··· 107 108 docker-image-debian-sparc64-cross: docker-image-debian-sid 108 109 docker-image-debian-mips64-cross: docker-image-debian-sid 109 110 docker-image-debian-riscv64-cross: docker-image-debian-sid 110 - docker-image-debian-powerpc-cross: docker-image-debian-sid 111 111 docker-image-debian-ppc64-cross: docker-image-debian-sid 112 112 docker-image-travis: NOUSER=1 113 113
+3 -5
tests/docker/dockerfiles/debian-powerpc-cross.docker
··· 1 1 # 2 2 # Docker powerpc cross-compiler target 3 3 # 4 - # This docker target builds on the debian sid base image which 5 - # contains cross compilers for Debian "ports" targets. The original 6 - # Jessie based no longer builds. 4 + # This docker target builds on the debian Buster base image. 7 5 # 8 - FROM qemu:debian-sid 6 + FROM qemu:debian10 9 7 10 8 RUN apt update && \ 11 9 DEBIAN_FRONTEND=noninteractive eatmydata \ 12 10 apt install -y --no-install-recommends \ 13 11 gcc-powerpc-linux-gnu \ 14 - libc6-dev-powerpc-cross || { echo "Failed to build - see debian-sid.docker notes"; exit 1; } 12 + libc6-dev-powerpc-cross