diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-10-13 00:09:44 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-10-13 00:09:44 +0000 |
commit | 35c365c2e3f5ea57f2b073a6ff940482c81bc478 (patch) | |
tree | 17dff4280180775d103815318cb462ac50ba7ce2 /testing/scripts/build-umlrootfs | |
parent | 405e8ecfe3982954d9d9324840bfca402d62fd14 (diff) | |
download | strongswan-35c365c2e3f5ea57f2b073a6ff940482c81bc478.tar.bz2 strongswan-35c365c2e3f5ea57f2b073a6ff940482c81bc478.tar.xz |
add support of --enable-eap-sim-file and --enable-kernel-pfkey configuration options
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 49988d203..119dbcaf2 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -148,6 +148,7 @@ fi if [ "$USE_EAP_SIM" = "yes" ] then echo -n " --enable-eap-sim" >> $INSTALLSHELL + echo -n " --enable-eap-sim-file >> $INSTANTSHELL fi if [ "$USE_EAP_MD5" = "yes" ] @@ -174,7 +175,12 @@ if [ "$USE_OPENSSL" = "yes" ] then echo -n " --enable-openssl" >> $INSTALLSHELL fi - + +if [ "$USE_KERNEL_PFKEY" = "yes" ] +then + echo -n " --enable-kernel-pfkey" >> $INSTALLSHELL +fi + if [ "$USE_INTEGRITY_TEST" = "yes" ] then echo -n " --enable-integrity-test" >> $INSTALLSHELL |