aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/scripts/build-umlrootfs15
-rwxr-xr-xtesting/testing.conf5
2 files changed, 19 insertions, 1 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs
index 06a67f90c..1f9c45c53 100755
--- a/testing/scripts/build-umlrootfs
+++ b/testing/scripts/build-umlrootfs
@@ -185,6 +185,21 @@ then
echo -n " --enable-openssl" >> $INSTALLSHELL
fi
+if [ "$USE_BLOWFISH" = "yes" ]
+then
+ echo -n " --enable-blowfish" >> $INSTALLSHELL
+fi
+
+if [ "$USE_TWOFISH" = "yes" ]
+then
+ echo -n " --enable-twofish" >> $INSTALLSHELL
+fi
+
+if [ "$USE_SERPENT" = "yes" ]
+then
+ echo -n " --enable-serpent" >> $INSTALLSHELL
+fi
+
if [ "$USE_KERNEL_PFKEY" = "yes" ]
then
echo -n " --enable-kernel-pfkey" >> $INSTALLSHELL
diff --git a/testing/testing.conf b/testing/testing.conf
index dbaa1ed6b..de43e6a72 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.29.1.tar.bz2
+KERNEL=$UMLTESTDIR/linux-2.6.29.3.tar.bz2
# Extract kernel version
KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'`
@@ -45,6 +45,9 @@ USE_EAP_RADIUS="yes"
USE_SQL="yes"
USE_MEDIATION="yes"
USE_OPENSSL="yes"
+USE_BLOWFISH="yes"
+USE_TWOFISH="yes"
+USE_SERPENT="yes"
USE_KERNEL_PFKEY="yes"
USE_INTEGRITY_TEST="yes"
USE_LEAK_DETECTIVE="yes"