enable the ccm and gcm plugins in the UML scenarios

This commit is contained in:
Andreas Steffen
2010-08-20 12:47:44 +02:00
parent cb3f0c9b31
commit 906680029d
2 changed files with 13 additions and 1 deletions
+10
View File
@@ -262,6 +262,16 @@ then
echo -n " --enable-ctr" >> $INSTALLSHELL
fi
if [ "$USE_CCM" = "yes" ]
then
echo -n " --enable-ccm" >> $INSTALLSHELL
fi
if [ "$USE_GCM" = "yes" ]
then
echo -n " --enable-gcm" >> $INSTALLSHELL
fi
echo "" >> $INSTALLSHELL
echo "make" >> $INSTALLSHELL
echo "make install" >> $INSTALLSHELL
+3 -1
View File
@@ -19,7 +19,7 @@ UMLTESTDIR=~/strongswan-testing
# Bzipped kernel sources
# (file extension .tar.bz2 required)
KERNEL=$UMLTESTDIR/linux-2.6.35.1.tar.bz2
KERNEL=$UMLTESTDIR/linux-2.6.35.2.tar.bz2
# Extract kernel version
KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'`
@@ -60,6 +60,8 @@ USE_DHCP="yes"
USE_FARP="yes"
USE_ADDRBLOCK="yes"
USE_CTR="yes"
USE_CCM="yes"
USE_GCM="yes"
# Gentoo linux root filesystem
ROOTFS=$UMLTESTDIR/gentoo-fs-20100805.tar.bz2