diff options
| author | Jan Kiszka | 2012-10-05 19:51:45 +0200 |
|---|---|---|
| committer | Marcelo Tosatti | 2012-10-31 02:39:53 +0100 |
| commit | a0dac021fa4b8b87160192c1f60ee26fc6c5ce2e (patch) | |
| tree | 1a7c6b2e5473d028b8bcb326d7b15499799bb407 | |
| parent | Issue warning when deprecated -tdf option is used (diff) | |
| download | qemu-a0dac021fa4b8b87160192c1f60ee26fc6c5ce2e.tar.gz qemu-a0dac021fa4b8b87160192c1f60ee26fc6c5ce2e.tar.xz qemu-a0dac021fa4b8b87160192c1f60ee26fc6c5ce2e.zip | |
Emulate qemu-kvms -no-kvm option
Releases of qemu-kvm will be interrupted at qemu 1.3.0.
Users should switch to plain qemu releases.
To avoid breaking scenarios which are setup with command line
options specific to qemu-kvm, port these switches from qemu-kvm
to qemu.git.
Port -no-kvm option.
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
| -rw-r--r-- | qemu-options.hx | 3 | ||||
| -rw-r--r-- | vl.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/qemu-options.hx b/qemu-options.hx index 628bd44591..fe8f15c541 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -2888,6 +2888,9 @@ STEXI Enable FIPS 140-2 compliance mode. ETEXI +HXCOMM Deprecated by -machine accel=tcg property +DEF("no-kvm", HAS_ARG, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386) + HXCOMM Deprecated by kvm-pit driver properties DEF("no-kvm-pit-reinjection", HAS_ARG, QEMU_OPTION_no_kvm_pit_reinjection, "", QEMU_ARCH_I386) @@ -3171,6 +3171,10 @@ int main(int argc, char **argv, char **envp) machine = machine_parse(optarg); } break; + case QEMU_OPTION_no_kvm: + olist = qemu_find_opts("machine"); + qemu_opts_parse(olist, "accel=tcg", 0); + break; case QEMU_OPTION_no_kvm_pit: { fprintf(stderr, "Warning: KVM PIT can no longer be disabled " "separately.\n"); |
