mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
147ebe6ddf
Set the VIR_PCI_CONNECT_AGGREGATE_SLOT flag for pcie-root-ports so that they will be assigned to all the functions on a slot. Some qemu test case outputs had to be adjusted due to the pcie-root-ports now being put on multiple functions.
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-aarch64 \
|
|
-name aarch64test \
|
|
-S \
|
|
-M virt \
|
|
-cpu cortex-a53 \
|
|
-m 1024 \
|
|
-smp 1,sockets=1,cores=1,threads=1 \
|
|
-uuid 496d7ea8-9739-544b-4ebd-ef08be936e8b \
|
|
-nographic \
|
|
-nodefconfig \
|
|
-nodefaults \
|
|
-monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
|
|
-boot c \
|
|
-kernel /aarch64.kernel \
|
|
-initrd /aarch64.initrd \
|
|
-append 'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
|
-dtb /aarch64.dtb \
|
|
-device ioh3420,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,\
|
|
addr=0x1 \
|
|
-device ioh3420,port=0x9,chassis=2,id=pci.2,bus=pcie.0,addr=0x1.0x1 \
|
|
-device ioh3420,port=0xa,chassis=3,id=pci.3,bus=pcie.0,addr=0x1.0x2 \
|
|
-device ioh3420,port=0xb,chassis=4,id=pci.4,bus=pcie.0,addr=0x1.0x3 \
|
|
-device ioh3420,port=0xc,chassis=5,id=pci.5,bus=pcie.0,addr=0x1.0x4 \
|
|
-device ioh3420,port=0xd,chassis=6,id=pci.6,bus=pcie.0,addr=0x1.0x5 \
|
|
-device virtio-serial-pci,id=virtio-serial0,bus=pci.2,addr=0x0 \
|
|
-drive file=/aarch64.raw,format=raw,if=none,id=drive-virtio-disk0 \
|
|
-device virtio-blk-pci,bus=pci.3,addr=0x0,drive=drive-virtio-disk0,\
|
|
id=virtio-disk0 \
|
|
-device virtio-net-pci,vlan=0,id=net0,mac=52:54:00:09:a4:37,bus=pci.1,addr=0x0 \
|
|
-net user,vlan=0,name=hostnet0 \
|
|
-serial pty \
|
|
-chardev pty,id=charconsole1 \
|
|
-device virtconsole,chardev=charconsole1,id=console1 \
|
|
-device virtio-balloon-pci,id=balloon0,bus=pci.4,addr=0x0 \
|
|
-object rng-random,id=objrng0,filename=/dev/random \
|
|
-device virtio-rng-pci,rng=objrng0,id=rng0,bus=pci.5,addr=0x0
|