qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] configure: Change --enable-tpm to --disable-tpm


From: Cole Robinson
Subject: [Qemu-devel] [PATCH] configure: Change --enable-tpm to --disable-tpm
Date: Mon, 21 Apr 2014 19:09:13 -0400

I don't see why tpm is disabled by default: it doesn't have any
external dependencies, or change default behavior. Leaving it disabled
is just going to cause it to bit rot.

Enable it by default, and change --enable-tpm to --disable-tpm if
people still want an option to compile it out.

Signed-off-by: Cole Robinson <address@hidden>
---
 configure | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure b/configure
index 69b9f56..45dc100 100755
--- a/configure
+++ b/configure
@@ -320,7 +320,7 @@ virtio_blk_data_plane=""
 gtk=""
 gtkabi="2.0"
 vte=""
-tpm="no"
+tpm="yes"
 libssh2=""
 vhdx=""
 quorum="no"
@@ -1073,7 +1073,7 @@ for opt do
   ;;
   --enable-vte) vte="yes"
   ;;
-  --enable-tpm) tpm="yes"
+  --disable-tpm) tpm="no"
   ;;
   --disable-libssh2) libssh2="no"
   ;;
@@ -1343,7 +1343,7 @@ Advanced options (experts only):
   --disable-glusterfs      disable GlusterFS backend
   --enable-gcov            enable test coverage analysis with gcov
   --gcov=GCOV              use specified gcov [$gcov_tool]
-  --enable-tpm             enable TPM support
+  --disable-tpm            disable TPM support
   --disable-libssh2        disable ssh block device support
   --enable-libssh2         enable ssh block device support
   --disable-vhdx           disables support for the Microsoft VHDX image format
-- 
1.9.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]