mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
1371ea92f0
In virDomainVirtioSerialAddrNext, add another controller if we've exhausted all ports of the existing controllers. https://bugzilla.redhat.com/show_bug.cgi?id=1076708
34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu -S -M pc -m 214 -smp 1 \
|
|
-nographic -nodefconfig -nodefaults \
|
|
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=readline \
|
|
-no-acpi -boot c \
|
|
-device virtio-serial-pci,id=virtio-serial0,max_ports=4,vectors=4,bus=pci.0,addr=0x3 \
|
|
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0x4 \
|
|
-usb -hda /dev/HostVG/QEMUGuest1 \
|
|
-chardev pty,id=charchannel0 \
|
|
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
|
|
id=channel0,name=org.linux-kvm.port.0 \
|
|
-chardev pty,id=charchannel1 \
|
|
-device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel1,\
|
|
id=channel1,name=org.linux-kvm.port.foo \
|
|
-chardev pty,id=charchannel2 \
|
|
-device virtserialport,bus=virtio-serial0.0,nr=3,chardev=charchannel2,\
|
|
id=channel2,name=org.linux-kvm.port.bar \
|
|
-chardev pty,id=charchannel3 \
|
|
-device virtserialport,bus=virtio-serial1.0,nr=1,chardev=charchannel3,\
|
|
id=channel3,name=org.linux-kvm.port.wizz \
|
|
-chardev pty,id=charchannel4 \
|
|
-device virtserialport,bus=virtio-serial1.0,nr=2,chardev=charchannel4,\
|
|
id=channel4,name=org.linux-kvm.port.ooh \
|
|
-chardev pty,id=charchannel5 \
|
|
-device virtserialport,bus=virtio-serial1.0,nr=3,chardev=charchannel5,\
|
|
id=channel5,name=org.linux-kvm.port.lla \
|
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x5
|