Skip to content

Commit

Permalink
configure: Enable TPM by default, add --disable-tpm
Browse files Browse the repository at this point in the history
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 add a --disable-tpm option.

Signed-off-by: Cole Robinson <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
  • Loading branch information
crobinso authored and Michael Tokarev committed Jun 24, 2014
1 parent 5d831be commit e91c793
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ virtio_blk_data_plane=""
gtk=""
gtkabi=""
vte=""
tpm="no"
tpm="yes"
libssh2=""
vhdx=""
quorum=""
Expand Down Expand Up @@ -1105,6 +1105,8 @@ for opt do
;;
--enable-vte) vte="yes"
;;
--disable-tpm) tpm="no"
;;
--enable-tpm) tpm="yes"
;;
--disable-libssh2) libssh2="no"
Expand Down Expand Up @@ -1382,6 +1384,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]
--disable-tpm disable TPM support
--enable-tpm enable TPM support
--disable-libssh2 disable ssh block device support
--enable-libssh2 enable ssh block device support
Expand Down

0 comments on commit e91c793

Please sign in to comment.