diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2013-01-02 14:18:20 +0100 |
---|---|---|
committer | Yves-Alexis Perez <corsac@debian.org> | 2013-01-02 14:18:20 +0100 |
commit | c1343b3278cdf99533b7902744d15969f9d6fdc1 (patch) | |
tree | d5ed3dc5677a59260ec41cd39bb284d3e94c91b3 /testing/scripts | |
parent | b34738ed08c2227300d554b139e2495ca5da97d6 (diff) | |
download | vyos-strongswan-c1343b3278cdf99533b7902744d15969f9d6fdc1.tar.gz vyos-strongswan-c1343b3278cdf99533b7902744d15969f9d6fdc1.zip |
Imported Upstream version 5.0.1
Diffstat (limited to 'testing/scripts')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 4c066001c..92595222c 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -172,6 +172,11 @@ then echo -n " --enable-eap-radius" >> $INSTALLSHELL fi +if [ "$USE_EAP_DYNAMIC" = "yes" ] +then + echo -n " --enable-eap-dynamic" >> $INSTALLSHELL +fi + if [ "$USE_EAP_TLS" = "yes" ] then echo -n " --enable-eap-tls" >> $INSTALLSHELL @@ -362,6 +367,16 @@ then echo -n " --enable-whitelist" >> $INSTALLSHELL fi +if [ "$USE_XAUTH_GENERIC" = "yes" ] +then + echo -n " --enable-xauth-generic" >> $INSTALLSHELL +fi + +if [ "$USE_XAUTH_EAP" = "yes" ] +then + echo -n " --enable-xauth-eap" >> $INSTALLSHELL +fi + if [ "$USE_PKCS8" = "yes" ] then echo -n " --enable-pkcs8" >> $INSTALLSHELL @@ -377,6 +392,11 @@ then echo -n " --enable-cisco-quirks" >> $INSTALLSHELL fi +if [ "$USE_UNITY" = "yes" ] +then + echo -n " --enable-unity" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make -j" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |