diff options
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 | ||||
-rwxr-xr-x | testing/testing.conf | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 69781de05..a44e9b44d 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -177,6 +177,11 @@ then echo -n " --enable-eap-tls" >> $INSTALLSHELL fi +if [ "$USE_EAP_TTLS" = "yes" ] +then + echo -n " --enable-eap-ttls" >> $INSTALLSHELL +fi + if [ "$USE_SQL" = "yes" ] then echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL @@ -252,6 +257,11 @@ then echo -n " --enable-addrblock" >> $INSTALLSHELL fi +if [ "$USE_CTR" = "yes" ] +then + echo -n " --enable-ctr" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL diff --git a/testing/testing.conf b/testing/testing.conf index 20c1f486f..86acfd290 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -43,6 +43,7 @@ USE_EAP_MSCHAPV2="yes" USE_EAP_IDENTITY="yes" USE_EAP_RADIUS="yes" USE_EAP_TLS="yes" +USE_EAP_TTLS="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes" @@ -58,6 +59,7 @@ USE_SOCKET_DYNAMIC="yes" USE_DHCP="yes" USE_FARP="yes" USE_ADDRBLOCK="yes" +USE_CTR="yes" # Gentoo linux root filesystem ROOTFS=$UMLTESTDIR/gentoo-fs-20100703.tar.bz2 |