From 6d15d4e7c27477507ba355384a340ce86cec617b Mon Sep 17 00:00:00 2001 From: Daniel Berrange Date: Tue, 24 Aug 2010 14:27:15 +0100 Subject: [PATCH] Add -nodefconfig command line option to qemu. Without this option, qemu will read some defaults from /etc/qemu/ configuration files. --- src/launch.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/launch.c b/src/launch.c index 9262cc5..287cc40 100644 --- a/src/launch.c +++ b/src/launch.c @@ -342,6 +342,9 @@ guestfs__launch (guestfs_h *g) */ g->cmdline[0] = g->qemu; + if (qemu_supports (g, "-nodefconfig")) + add_cmdline (g, "-nodefconfig"); + /* qemu sometimes needs this option to enable hardware * virtualization, but some versions of 'qemu-kvm' will use KVM * regardless (even where this option appears in the help text). -- 1.8.3.1