mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
adff345e1e
QEMU supports feature specification with -cpu host and we just skip using that. Since QEMU developers themselves would like to use this feature, this patch modifies the code to work. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1178850 Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
23 lines
329 B
Plaintext
23 lines
329 B
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUD\
|
|
IO_DRV=none \
|
|
/usr/bin/qemu \
|
|
-S \
|
|
-M pc \
|
|
-cpu host,+abm,+ds,-invtsc \
|
|
-m 214 \
|
|
-smp 1 \
|
|
-nographic \
|
|
-monitor unix:/tmp/test-monitor,server,nowait \
|
|
-no-acpi \
|
|
-boot c \
|
|
-usb \
|
|
-hda /dev/HostVG/QEMUGuest1 \
|
|
-net none \
|
|
-serial none \
|
|
-parallel none
|