diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-01-31 05:47:05 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-01-31 05:47:05 +0100 |
commit | b6a8cfab4b111ae2e92c2f2d9e99c74fee4076bb (patch) | |
tree | ab79e0818e40ea9e422372505169b3ef5474a621 /testing/scripts/build-umlrootfs | |
parent | ad061503b879c9558d396f066c0e6212e172a1b7 (diff) | |
download | strongswan-b6a8cfab4b111ae2e92c2f2d9e99c74fee4076bb.tar.bz2 strongswan-b6a8cfab4b111ae2e92c2f2d9e99c74fee4076bb.tar.xz |
additional UML configuration options
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index ec74adae6..023b71750 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -202,6 +202,16 @@ then echo -n " --enable-tnccs-11" >> $INSTALLSHELL fi +if [ "$USE_TNCCS_20" = "yes" ] +then + echo -n " --enable-tnccs-20" >> $INSTALLSHELL +fi + +if [ "$USE_TNCCS_DYNAMIC" = "yes" ] +then + echo -n " --enable-tnccs-dynamic" >> $INSTALLSHELL +fi + if [ "$USE_SQL" = "yes" ] then echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL @@ -297,6 +307,11 @@ then echo -n " --enable-ha" >> $INSTALLSHELL fi +if [ "$USE_CISCO_QUIRKS" = "yes" ] +then + echo -n " --enable-cisco-quirks" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make -j" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |