Commit 5f114bc6cea8798cbe6f22aa7963a5514119a353
Committed by
Anthony Liguori
1 parent
e32cba29
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>
Showing
1 changed file
with
2 additions
and
1 deletions
configure
... | ... | @@ -2036,11 +2036,12 @@ case "$target_arch2" in |
2036 | 2036 | fi |
2037 | 2037 | esac |
2038 | 2038 | case "$target_arch2" in |
2039 | - i386|x86_64|ppcemb) | |
2039 | + i386|x86_64|ppcemb|ppc|ppc64) | |
2040 | 2040 | # Make sure the target and host cpus are compatible |
2041 | 2041 | if test "$kvm" = "yes" -a "$target_softmmu" = "yes" -a \ |
2042 | 2042 | \( "$target_arch2" = "$cpu" -o \ |
2043 | 2043 | \( "$target_arch2" = "ppcemb" -a "$cpu" = "ppc" \) -o \ |
2044 | + \( "$target_arch2" = "ppc64" -a "$cpu" = "ppc" \) -o \ | |
2044 | 2045 | \( "$target_arch2" = "x86_64" -a "$cpu" = "i386" \) -o \ |
2045 | 2046 | \( "$target_arch2" = "i386" -a "$cpu" = "x86_64" \) \) ; then |
2046 | 2047 | echo "CONFIG_KVM=y" >> $config_mak | ... | ... |