mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-08 22:39:56 +00:00
0d668434f4
When support for dmi-to-pci-bridge was added, it was assumed that, just as with the pci-root bus, slot 0 was reserved. This is not the case - it can be used to connect a device just like any other slot, so remove the restriction and update the test cases that auto-assign an address on a dmi-to-pci-bridge.
33 lines
970 B
Plaintext
33 lines
970 B
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 \
|
|
-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 i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1 \
|
|
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x0 \
|
|
-device virtio-scsi-pci,id=scsi0,bus=pcie.0,addr=0x3 \
|
|
-usb \
|
|
-drive file=/aarch64.raw,format=raw,if=none,id=drive-scsi0-0-0-0 \
|
|
-device scsi-disk,bus=scsi0.0,channel=0,scsi-id=0,lun=0,drive=drive-scsi0-0-0-0,\
|
|
id=scsi0-0-0-0 \
|
|
-device virtio-net-pci,vlan=0,id=net0,mac=52:54:00:09:a4:37,bus=pcie.0,addr=0x2 \
|
|
-net user,vlan=0,name=hostnet0
|