diff options
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 5 | ||||
-rwxr-xr-x | testing/testing.conf | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 7e6822d17..26b247e72 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -182,6 +182,11 @@ then echo -n " --enable-eap-ttls" >> $INSTALLSHELL fi +if [ "$USE_EAP_TNC" = "yes" ] +then + echo -n " --enable-eap-tnc" >> $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 0a5b1a135..d67d7b3e5 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -44,6 +44,7 @@ USE_EAP_IDENTITY="yes" USE_EAP_RADIUS="yes" USE_EAP_TLS="yes" USE_EAP_TTLS="yes" +USE_EAP_TNC="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes" |