2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

scripts/build: use the last stable release for s390

And get qemu-static from the 18.04 LTS Ubuntu repos.

https://github.com/checkpoint-restore/criu/issues/652
Signed-off-by: Andrei Vagin <avagin@gmail.com>
This commit is contained in:
Andrei Vagin
2019-03-28 00:15:31 -07:00
parent b3a199186d
commit 0d5c0b2d3a
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
FROM s390x/debian:jessie-backports
FROM s390x/debian:latest
ENV QEMU_CPU z900
COPY scripts/build/qemu-user-static/usr/bin/qemu-s390x-static /usr/bin/qemu-s390x-static

View File

@@ -4,7 +4,7 @@ set -e
set -u
set -o pipefail
MIRROR="https://mirrors.kernel.org/ubuntu"
PKGS="$MIRROR/dists/xenial/universe/binary-amd64/Packages.gz"
PKGS="$MIRROR/dists/bionic/universe/binary-amd64/Packages.gz"
if [ $# -ne 1 ]; then
echo "Usage: $0 package-name" 1>&2