testing: Migration of KVM framework to Linux 4.x kernel

This commit is contained in:
Andreas Steffen 2015-04-25 18:05:00 +02:00
parent 17a2e00a31
commit ce354443bf
3 changed files with 2207 additions and 5 deletions

File diff suppressed because it is too large Load Diff

View File

@ -14,7 +14,7 @@ cd $BUILDDIR
if [ ! -f "$KERNELTARBALL" ]
then
url=ftp://ftp.kernel.org/pub/linux/kernel/v3.x/$KERNELTARBALL
url=ftp://ftp.kernel.org/pub/linux/kernel/v4.x/$KERNELTARBALL
log_action "Downloading $url"
execute "wget -q $url"
fi

View File

@ -24,14 +24,14 @@ fi
: ${TESTDIR=/srv/strongswan-testing}
# Kernel configuration
: ${KERNELVERSION=3.15.1}
: ${KERNELVERSION=4.0}
: ${KERNEL=linux-$KERNELVERSION}
: ${KERNELTARBALL=$KERNEL.tar.xz}
: ${KERNELCONFIG=$DIR/../config/kernel/config-3.15}
: ${KERNELPATCH=ha-3.15-ah-abicompat.patch.bz2}
: ${KERNELCONFIG=$DIR/../config/kernel/config-4.0}
: ${KERNELPATCH=ha-3.18-abicompat.patch.bz2}
# strongSwan version used in tests
: ${SWANVERSION=5.2.0}
: ${SWANVERSION=5.3.1}
# Build directory where the guest kernel and images will be built
: ${BUILDDIR=$TESTDIR/build}