From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MRlyt-0000NG-F8 for qemu-devel@nongnu.org; Fri, 17 Jul 2009 07:52:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MRlym-0000Gf-3z for qemu-devel@nongnu.org; Fri, 17 Jul 2009 07:52:00 -0400 Received: from [199.232.76.173] (port=36964 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MRlyl-0000G1-7q for qemu-devel@nongnu.org; Fri, 17 Jul 2009 07:51:55 -0400 Received: from cantor.suse.de ([195.135.220.2]:43122 helo=mx1.suse.de) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MRlyj-0001ar-Uk for qemu-devel@nongnu.org; Fri, 17 Jul 2009 07:51:54 -0400 From: Alexander Graf Date: Fri, 17 Jul 2009 13:51:42 +0200 Message-Id: <1247831508-19023-2-git-send-email-agraf@suse.de> In-Reply-To: <1247831508-19023-1-git-send-email-agraf@suse.de> References: <1247831508-19023-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 1/7] Enable PPC KVM for non-embedded List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: hollisb@us.ibm.com We now have KVM on PPC64 too and might get it on PPC32 as well, as soon as someone writes it. So let's enable KVM for PPC32 and PPC64 targets. Signed-off-by: Alexander Graf --- 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.0.2