diff options
author | Alexander Graf | 2009-07-17 13:51:42 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-07-22 17:58:45 +0200 |
commit | 5f114bc6cea8798cbe6f22aa7963a5514119a353 (patch) | |
tree | 144ac0acfc3557a7226fbec999972b280166a6f5 /configure | |
parent | Sparc32: convert Sun4c interrupt controller to qdev (diff) | |
download | qemu-5f114bc6cea8798cbe6f22aa7963a5514119a353.tar.gz qemu-5f114bc6cea8798cbe6f22aa7963a5514119a353.tar.xz qemu-5f114bc6cea8798cbe6f22aa7963a5514119a353.zip |
Enable PPC KVM for non-embedded
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 <agraf@suse.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2036,11 +2036,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 |