qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 6/7] Only treat KVM specific cmdline options for KVM


From: Jes . Sorensen
Subject: [Qemu-devel] [PATCH 6/7] Only treat KVM specific cmdline options for KVM enabled builds
Date: Tue, 15 Jun 2010 14:51:17 +0200

From: Jes Sorensen <address@hidden>

Only treat KVM specific cmdline options for KVM enabled builds. This
fixes build breakage for target MIPS etc.

Signed-off-by: Jes Sorensen <address@hidden>
---
 vl.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/vl.c b/vl.c
index 9e9c176..e4a9aa9 100644
--- a/vl.c
+++ b/vl.c
@@ -3264,6 +3264,7 @@ int main(int argc, char **argv, char **envp)
            case QEMU_OPTION_no_kvm:
                kvm_allowed = 0;
                break;
+#ifdef CONFIG_KVM
            case QEMU_OPTION_no_kvm_irqchip: {
                kvm_irqchip = 0;
                kvm_pit = 0;
@@ -3281,6 +3282,7 @@ int main(int argc, char **argv, char **envp)
                kvm_nested = 1;
                break;
            }
+#endif
 #if defined(TARGET_I386) || defined(TARGET_X86_64) || defined(TARGET_IA64) || 
defined(__linux__)
             case QEMU_OPTION_pcidevice:
                if (assigned_devices_index >= MAX_DEV_ASSIGN_CMDLINE) {
-- 
1.6.6.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]