From 36597756e589622ee6c6628efb47c1b130d5ee85 Mon Sep 17 00:00:00 2001 From: David 'Digit' Turner Date: Fri, 20 May 2011 01:18:01 +0200 Subject: x86: kvm: fix KVM build + enable auto-detection. This patch fixes the build of KVM support in the x86 emulator by copying official Ubuntu Lucid KVM headers into android/config/linux-*/ This removes the need to rely on the build machine's versions of these headers, which caused various issues. Also, by default, the emulator will now probe the system to see if it can start in KVM mode automatically. See android-kvm.c for details. You can see the result of the probing with the -verbose option. IMPORTANT NOTE: It looks like there is a bug in the KVM code when the emulator is built as a 32-bit binary, running on a 64-bit kernel, so we explicitely disable KVM when we detect this case. It's hard to tell whether this is a bug in QEMU or some versions of the KVM driver. As such, KVM only works when building the emulator as a 64-bit program. For now, this is only possible with "android-configure.sh --try-64", not the Android build system. + Add a new QEMU option (-disable-kvm) to explicitely disable KVM if needed. This is an addition to -enable-kvm which already exists (and forces usage of KVM). Change-Id: I6a397cae29ab62b1c56fce95c1ee75a4664d6688 --- qemu-options.hx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'qemu-options.hx') diff --git a/qemu-options.hx b/qemu-options.hx index f35b4d0..76432a5 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1350,6 +1350,8 @@ ETEXI #ifdef CONFIG_KVM DEF("enable-kvm", 0, QEMU_OPTION_enable_kvm, \ "-enable-kvm enable KVM full virtualization support\n") +DEF("disable-kvm", 0, QEMU_OPTION_disable_kvm, \ + "-disable-kvm disable KVM full virtualization support\n") #endif STEXI @item -enable-kvm -- cgit v1.1