From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MRb8K-0000FK-J7 for qemu-devel@nongnu.org; Thu, 16 Jul 2009 20:17:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MRb8F-0000F8-Ci for qemu-devel@nongnu.org; Thu, 16 Jul 2009 20:17:03 -0400 Received: from [199.232.76.173] (port=58080 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MRb8F-0000F5-A6 for qemu-devel@nongnu.org; Thu, 16 Jul 2009 20:16:59 -0400 Received: from mx2.redhat.com ([66.187.237.31]:41701) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MRb8E-0000Uz-QA for qemu-devel@nongnu.org; Thu, 16 Jul 2009 20:16:59 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6H0GwdB004121 for ; Thu, 16 Jul 2009 20:16:58 -0400 From: quintela@redhat.com Date: Fri, 17 Jul 2009 02:15:12 +0200 Message-Id: <1247789712-16833-1-git-send-email-quintela@redhat.com> In-Reply-To: <1247766736-17197-2-git-send-email-agraf@suse.de> References: <1247766736-17197-2-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH] Enable kvm for ppc/ppc64 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Juan Quintela From: Juan Quintela Hi With new configure, patch should be like this. Signed-off-by: Juan Quintela --- configure | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 2a6ae40..753061b 100755 --- a/configure +++ b/configure @@ -2016,11 +2016,12 @@ case "$target_arch2" in fi esac case "$target_arch2" in - i386|x86_64|ppcemb) + i386|x86_64|ppcemb|ppc|ppc64) # Make sure the target and host cpus are compatible if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ \( "$target_arch2" = "$cpu" -o \ \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ + \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then echo "CONFIG_KVM=y" >> $config_mak -- 1.6.2.5