enable eap-radius plugin in uml scenarios

This commit is contained in:
Andreas Steffen 2009-03-25 07:26:53 +00:00
parent 232c80bb4d
commit 0ada62af06
2 changed files with 8 additions and 2 deletions

View File

@ -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

View File

@ -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"