From 14777c378490c5f93bf6f65155a0e6990b763821 Mon Sep 17 00:00:00 2001 From: Ilya Leoshkevich Date: Mon, 9 May 2022 12:53:42 +0200 Subject: [PATCH] vmtest: use debian bookworm A newer iproute2 version is required for MPTCP tests. Use a newer distro version, which has it. Signed-off-by: Ilya Leoshkevich --- travis-ci/rootfs/mkrootfs_debian.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis-ci/rootfs/mkrootfs_debian.sh b/travis-ci/rootfs/mkrootfs_debian.sh index 5130184..2ccbb9f 100755 --- a/travis-ci/rootfs/mkrootfs_debian.sh +++ b/travis-ci/rootfs/mkrootfs_debian.sh @@ -16,7 +16,7 @@ trap 'rm -r "$root"' EXIT # Install packages. packages=binutils,busybox,elfutils,ethtool,iproute2,libcap2,libelf1,strace,zlib1g -debootstrap --include="$packages" --variant=minbase bullseye "$root" +debootstrap --include="$packages" --variant=minbase bookworm "$root" # Remove the init scripts (tests use their own). Also remove various # unnecessary files in order to save space.