From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37971) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aG7mR-0005Mb-Fl for qemu-devel@nongnu.org; Mon, 04 Jan 2016 11:14:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aG7mM-0005ZO-JK for qemu-devel@nongnu.org; Mon, 04 Jan 2016 11:14:47 -0500 Received: from e19.ny.us.ibm.com ([129.33.205.209]:57546) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aG7mM-0005ZJ-F3 for qemu-devel@nongnu.org; Mon, 04 Jan 2016 11:14:42 -0500 Received: from localhost by e19.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 4 Jan 2016 11:14:42 -0500 From: Stefan Berger Date: Mon, 4 Jan 2016 11:14:22 -0500 Message-Id: <1451924064-8625-2-git-send-email-stefanb@us.ibm.com> In-Reply-To: <1451924064-8625-1-git-send-email-stefanb@us.ibm.com> References: <1451924064-8625-1-git-send-email-stefanb@us.ibm.com> Subject: [Qemu-devel] [PATCH v2 1/3] Enable PPC64 with TPM support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-ppc@nongnu.org Cc: thuth@redhat.com, aik@au1.ibm.com, nikunj@linux.vnet.ibm.com, Stefan Berger , agraf@suse.de, qemu-devel@nongnu.org, jb613w@att.com From: Stefan Berger Compile the TPM passthrough device emulation on ppc64. Signed-off-by: Stefan Berger CC: Alexander Graf CC: qemu-ppc@nongnu.org --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 83b40fc..82ca1b5 100755 --- a/configure +++ b/configure @@ -3229,7 +3229,8 @@ fi ########################################## # TPM passthrough is only on x86 Linux -if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64; then +if test "$targetos" = Linux && test "$cpu" = i386 -o "$cpu" = x86_64 \ + -o "$cpu" = ppc64; then tpm_passthrough=$tpm else tpm_passthrough=no -- 2.4.3