From: Andreas Steffen Date: Sun, 18 Dec 2011 17:07:47 +0000 (+0100) Subject: added Attestation IMC/IMV to UML build X-Git-Tag: 4.6.2~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=034b792b90b2c2ebd107b9d285137d40da57fc84;p=thirdparty%2Fstrongswan.git added Attestation IMC/IMV to UML build --- diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index f521f9c1c3..068882b80b 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -237,6 +237,16 @@ then echo -n " --enable-imv-scanner" >> $INSTALLSHELL fi +if [ "$USE_IMC_ATTESTATION" = "yes" ] +then + echo -n " --enable-imc-attestation" >> $INSTALLSHELL +fi + +if [ "$USE_IMV_ATTESTATION" = "yes" ] +then + echo -n " --enable-imv-attestation" >> $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 192c24f487..265bafed4e 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -55,6 +55,8 @@ USE_IMC_TEST="yes" USE_IMV_TEST="yes" USE_IMC_SCANNER="yes" USE_IMV_SCANNER="yes" +USE_IMC_ATTESTATION="yes" +USE_IMV_ATTESTATION="yes" USE_SQL="yes" USE_MEDIATION="yes" USE_OPENSSL="yes"