diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-03-25 07:26:53 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-03-25 07:26:53 +0000 |
commit | 0ada62af06e7d7df1da3da4998efbe36abce1249 (patch) | |
tree | 07f724298de8eff86930ad7844b81510cff0b3c2 | |
parent | 232c80bb4d0da916c17dec09dc38cb5f396d8b33 (diff) | |
download | strongswan-0ada62af06e7d7df1da3da4998efbe36abce1249.tar.bz2 strongswan-0ada62af06e7d7df1da3da4998efbe36abce1249.tar.xz |
enable eap-radius plugin in uml scenarios
-rwxr-xr-x | testing/scripts/build-umlrootfs | 5 | ||||
-rwxr-xr-x | testing/testing.conf | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 41b1b46dc..0bd131b12 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -167,6 +167,11 @@ then echo -n " --enable-eap-identity" >> $INSTALLSHELL fi +if [ "$USE_EAP_RADIUS" = "yes" ] +then + echo -n " --enable-eap-radius" >> $INSTALLSHELL +fi + if [ "$USE_SQL" = "yes" ] then echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL diff --git a/testing/testing.conf b/testing/testing.conf index 120f7031a..ff45f1642 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -21,13 +21,13 @@ UMLTESTDIR=~/strongswan-testing # Bzipped kernel sources # (file extension .tar.bz2 required) -KERNEL=$UMLTESTDIR/linux-2.6.28.8.tar.bz2 +KERNEL=$UMLTESTDIR/linux-2.6.29.tar.bz2 # Extract kernel version KERNELVERSION=`basename $KERNEL .tar.bz2 | sed -e 's/linux-//'` # Kernel configuration file -KERNELCONFIG=$UMLTESTDIR/.config-2.6.28 +KERNELCONFIG=$UMLTESTDIR/.config-2.6.29 # Bzipped uml patch for kernel #UMLPATCH=$UMLTESTDIR/uml-2.6.26.patch.bz2 @@ -43,6 +43,7 @@ USE_EAP_SIM="yes" USE_EAP_MD5="yes" USE_EAP_MSCHAPV2="yes" USE_EAP_IDENTITY="yes" +USE_EAP_RADIUS="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes" |