All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Berger <stefanb@linux.vnet.ibm.com>
To: stefanb@linux.vnet.ibm.com, qemu-devel@nongnu.org
Cc: mst@redhat.com, andreas.niederl@iaik.tugraz.at, serge@hallyn.com
Subject: [Qemu-devel] [PATCH V12 6/8] Introduce --enable-tpm-passthrough configure option
Date: Tue, 11 Oct 2011 13:32:22 -0400	[thread overview]
Message-ID: <20111011173306.643535119@linux.vnet.ibm.com> (raw)
In-Reply-To: 20111011173216.247822737@linux.vnet.ibm.com

[-- Attachment #1: qemu_tpm_pt_config_opt.diff --]
[-- Type: text/plain, Size: 2160 bytes --]

Introduce --enable-tpm-passthrough configure option.

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>

---
 configure |   16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

Index: qemu-git.pt/configure
===================================================================
--- qemu-git.pt.orig/configure
+++ qemu-git.pt/configure
@@ -183,6 +183,7 @@ opengl=""
 zlib="yes"
 guest_agent="yes"
 tpm="no"
+tpm_passthrough="no"
 
 # parse CC options first
 for opt do
@@ -775,11 +776,20 @@ for opt do
   ;;
   --enable-tpm) tpm="yes"
   ;;
+  --enable-tpm-passthrough) tpm_passthrough="yes"
+  ;;
   *) echo "ERROR: unknown option $opt"; show_help="yes"
   ;;
   esac
 done
 
+if test "$tpm" = "no" ; then
+    if test "$tpm_passthrough" = "yes"; then
+        echo "ERROR: --enable-tpm-passthrough requires --enable-tpm"
+        exit 1
+    fi
+fi
+
 #
 # If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
 # QEMU_CFLAGS/LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
@@ -1058,6 +1068,7 @@ echo "  --enable-usb-redir       enable 
 echo "  --disable-guest-agent    disable building of the QEMU Guest Agent"
 echo "  --enable-guest-agent     enable building of the QEMU Guest Agent"
 echo "  --enable-tpm             enable TPM support"
+echo "  --enable-tpm-passthrough enable TPM passthrough driver"
 echo ""
 echo "NOTE: The object files are built at the place where configure is launched"
 exit 1
@@ -2725,6 +2736,7 @@ echo "usb net redir     $usb_redir"
 echo "OpenGL support    $opengl"
 echo "build guest agent $guest_agent"
 echo "TPM support       $tpm"
+echo "TPM passthrough   $tpm_passthrough"
 
 if test "$sdl_too_old" = "yes"; then
 echo "-> Your SDL version is too old - please upgrade to have SDL support"
@@ -3575,7 +3587,9 @@ fi
 if test "$tpm" = "yes"; then
   if test "$target_softmmu" = "yes" ; then
     if test "$linux" = "yes" ; then
-      echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_target_mak
+      if test "$tpm_passthrough" = "yes" ; then
+        echo "CONFIG_TPM_PASSTHROUGH=y" >> $config_target_mak
+      fi
     fi
     echo "CONFIG_TPM=y" >> $config_host_mak
   fi

  parent reply	other threads:[~2011-10-11 17:40 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-11 17:32 [Qemu-devel] [PATCH V12 0/8] Qemu Trusted Platform Module (TPM) integration Stefan Berger
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 1/8] Support for TPM command line options Stefan Berger
2011-12-12 16:01   ` Anthony Liguori
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 2/8] Add TPM (frontend) hardware interface (TPM TIS) to Qemu Stefan Berger
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 3/8] Add a debug register Stefan Berger
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 4/8] Build the TPM frontend code Stefan Berger
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 5/8] Add a TPM Passthrough backend driver implementation Stefan Berger
2011-10-11 17:32 ` Stefan Berger [this message]
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 7/8] Move parsing of filedescriptor into common function Stefan Berger
2011-10-11 17:32 ` [Qemu-devel] [PATCH V12 8/8] Add fd parameter for TPM passthrough driver Stefan Berger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20111011173306.643535119@linux.vnet.ibm.com \
    --to=stefanb@linux.vnet.ibm.com \
    --cc=andreas.niederl@iaik.tugraz.at \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=serge@hallyn.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.