From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47011) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4gbI-0007dc-PP for qemu-devel@nongnu.org; Mon, 15 Jun 2015 22:27:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z4gbC-0001g4-NF for qemu-devel@nongnu.org; Mon, 15 Jun 2015 22:27:44 -0400 Received: from e19.ny.us.ibm.com ([129.33.205.209]:48248) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z4gbC-0001ft-JL for qemu-devel@nongnu.org; Mon, 15 Jun 2015 22:27:38 -0400 Received: from /spool/local by e19.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 15 Jun 2015 22:27:38 -0400 From: Stefan Berger Date: Mon, 15 Jun 2015 22:27:19 -0400 Message-Id: <1434421641-1954510-2-git-send-email-stefanb@linux.vnet.ibm.com> In-Reply-To: <1434421641-1954510-1-git-send-email-stefanb@linux.vnet.ibm.com> References: <1434421641-1954510-1-git-send-email-stefanb@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH 1/3] Enable PPC64 with TPM support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-ppc@nongnu.org, aik@au1.ibm.com, nikunj@linux.vnet.ibm.com Cc: Stefan Berger , agraf@suse.de, qemu-devel@nongnu.org Compile the TPM passthrough device emulation on ppc64. Signed-off-by: Stefan Berger --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 409edf9..d260057 100755 --- a/configure +++ b/configure @@ -3029,7 +3029,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 -- 1.9.3