diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-02-19 22:02:28 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-02-19 22:02:28 +0000 |
commit | 423c72d0172174e610da83c8c3b03486fa1561c0 (patch) | |
tree | c2bd6cae1fafa8ad1b4a5009c26cb5f540d2d122 /testing/scripts/build-umlrootfs | |
parent | 3078b18778b599ff89ba0ed47c47632f7966cd51 (diff) | |
download | strongswan-423c72d0172174e610da83c8c3b03486fa1561c0.tar.bz2 strongswan-423c72d0172174e610da83c8c3b03486fa1561c0.tar.xz |
added ikev2/rw-eap-mschapv2 scenario
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 97390a610..41b1b46dc 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -149,12 +149,18 @@ if [ "$USE_EAP_SIM" = "yes" ] then echo -n " --enable-eap-sim" >> $INSTALLSHELL echo -n " --enable-eap-sim-file" >> $INSTALLSHELL - fi +fi if [ "$USE_EAP_MD5" = "yes" ] then echo -n " --enable-eap-md5" >> $INSTALLSHELL - fi +fi + +if [ "$USE_EAP_MSCHAPV2" = "yes" ] +then + echo -n " --enable-md4" >> $INSTALLSHELL + echo -n " --enable-eap-mschapv2" >> $INSTALLSHELL +fi if [ "$USE_EAP_IDENTITY" = "yes" ] then @@ -191,6 +197,11 @@ then echo -n " --enable-leak-detective" >> $INSTALLSHELL fi +if [ "$USE_LOAD_TESTS" = "yes" ] +then + echo -n " --enable-load-tests" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |