diff options
author | Daniel P. Berrangé | 2021-02-16 20:10:26 +0100 |
---|---|---|
committer | Paolo Bonzini | 2021-02-25 14:14:33 +0100 |
commit | 1bd39ea91115603977df48128b669a115d222dc8 (patch) | |
tree | d30737c0c0b5ab5d2356e48db541f6e5cb2e48f6 /docs/COLO-FT.txt | |
parent | docs: update to show preferred boolean syntax for -vnc (diff) | |
download | qemu-1bd39ea91115603977df48128b669a115d222dc8.tar.gz qemu-1bd39ea91115603977df48128b669a115d222dc8.tar.xz qemu-1bd39ea91115603977df48128b669a115d222dc8.zip |
docs: update to show preferred boolean syntax for -cpu
The preferred syntax is to use "foo=on|off", rather than a bare
"+foo" or "-foo"
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20210216191027.595031-10-berrange@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/COLO-FT.txt')
-rw-r--r-- | docs/COLO-FT.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/COLO-FT.txt b/docs/COLO-FT.txt index 8874690e83..8d6d53a5a2 100644 --- a/docs/COLO-FT.txt +++ b/docs/COLO-FT.txt @@ -158,7 +158,7 @@ instance. # imagefolder="/mnt/vms/colo-test-primary" -# qemu-system-x86_64 -enable-kvm -cpu qemu64,+kvmclock -m 512 -smp 1 -qmp stdio \ +# qemu-system-x86_64 -enable-kvm -cpu qemu64,kvmclock=on -m 512 -smp 1 -qmp stdio \ -device piix3-usb-uhci -device usb-tablet -name primary \ -netdev tap,id=hn0,vhost=off,helper=/usr/lib/qemu/qemu-bridge-helper \ -device rtl8139,id=e0,netdev=hn0 \ @@ -189,7 +189,7 @@ any IP's here, except for the $primary_ip variable. # qemu-img create -f qcow2 $imagefolder/secondary-hidden.qcow2 10G -# qemu-system-x86_64 -enable-kvm -cpu qemu64,+kvmclock -m 512 -smp 1 -qmp stdio \ +# qemu-system-x86_64 -enable-kvm -cpu qemu64,kvmclock=on -m 512 -smp 1 -qmp stdio \ -device piix3-usb-uhci -device usb-tablet -name secondary \ -netdev tap,id=hn0,vhost=off,helper=/usr/lib/qemu/qemu-bridge-helper \ -device rtl8139,id=e0,netdev=hn0 \ |