From a625146517c86e84af1e58a14e6b238e67f02dd7 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Tue, 26 Aug 2008 19:17:14 +0000 Subject: [PATCH] enable-eap-identity in UML scenarios --- testing/scripts/build-umlrootfs | 5 +++++ testing/testing.conf | 1 + 2 files changed, 6 insertions(+) diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 68750f082..49988d203 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -155,6 +155,11 @@ then echo -n " --enable-eap-md5" >> $INSTALLSHELL fi +if [ "$USE_EAP_IDENTITY" = "yes" ] +then + echo -n " --enable-eap-identity" >> $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 9cbc1dd35..4236a6c3d 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -41,6 +41,7 @@ USE_LDAP="yes" USE_EAP_AKA="yes" USE EAP_SIM="yes" USE_EAP_MD5="yes" +USE_EAP_IDENTITY="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes"