]> git.proxmox.com Git - qemu.git/commit
Introduce -machine command option.
authorAnthony PERARD <anthony.perard@citrix.com>
Tue, 21 Sep 2010 19:05:31 +0000 (20:05 +0100)
committerAlexander Graf <agraf@suse.de>
Sun, 8 May 2011 08:09:59 +0000 (10:09 +0200)
commit303d4e865b74402b49f52e975c396c952f063e58
tree5c707ba23fd12751f3dc48aae9315aa69230c30b
parent85097db6956bc86e2377b63a8309cb8b24d54139
Introduce -machine command option.

This option gives the ability to switch one "accelerator" like kvm, xen
or the default one tcg. We can specify more than one accelerator by
separate them by a colon. QEMU will try each one and use the first whose
works.

So,
./qemu -machine accel=xen:kvm:tcg

which would try Xen support first, then KVM and finally TCG if none of
the other works.

By default, QEMU will use TCG. But we can specify another default in the
global configuration file.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch_init.c
arch_init.h
qemu-config.c
qemu-options.hx
vl.c