diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-08-20 12:47:15 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-08-20 12:47:44 +0200 |
commit | 906680029dc05606fa1b92221092f020f70b0b2f (patch) | |
tree | a21e1bc9fc51c0901ff3065863d2296e1ebd0f66 | |
parent | cb3f0c9b3170a12406f42912778a35687a7d17ba (diff) | |
download | strongswan-906680029dc05606fa1b92221092f020f70b0b2f.tar.bz2 strongswan-906680029dc05606fa1b92221092f020f70b0b2f.tar.xz |
enable the ccm and gcm plugins in the UML scenarios
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 | ||||
-rwxr-xr-x | testing/testing.conf | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index a44e9b44d..7e6822d17 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -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 diff --git a/testing/testing.conf b/testing/testing.conf index 4031e99f7..0a5b1a135 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -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 |