mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 22:25:25 +00:00
445a09bdc9
Right now when building the qemu command line, we try to do various unconditional validations of the guest CPU against the host CPU. However this checks are overly applied. The only time we should use the checks are: - The user requests host-model/host-passthrough, or - When KVM is requsted. CPU features requested in TCG mode are always emulated by qemu and are independent of the host CPU, so no host CPU checks should be performed. Right now if trying to specify a CPU for arm on an x86 host, it attempts to do non-sensical validation and falls over. Switch all the test cases that were intending to test CPU validation to use KVM, so they continue to test the intended code. Amend some aarch64 XML tests with a CPU model, to ensure things work correctly.
16 lines
893 B
Plaintext
16 lines
893 B
Plaintext
LC_ALL=C PATH=/bin HOME=/home/test USER=test LOGNAME=test QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-aarch64 -S -M virt -cpu cortex-a53 \
|
|
-m 1024 -smp 1 -nographic \
|
|
-nodefconfig -nodefaults -monitor unix:/tmp/test-monitor,server,nowait \
|
|
-boot c -kernel /aarch64.kernel -initrd /aarch64.initrd -append \
|
|
'earlyprintk console=ttyAMA0,115200n8 rw root=/dev/vda rootwait' \
|
|
-dtb /aarch64.dtb -device virtio-serial-device,id=virtio-serial0 -usb \
|
|
-drive file=/aarch64.raw,if=none,id=drive-virtio-disk0 \
|
|
-device virtio-blk-device,drive=drive-virtio-disk0,id=virtio-disk0 \
|
|
-device virtio-net-device,vlan=0,id=net0,mac=52:54:00:09:a4:37 \
|
|
-net user,vlan=0,name=hostnet0 -serial pty -chardev pty,id=charconsole1 \
|
|
-device virtconsole,chardev=charconsole1,id=console1 \
|
|
-device virtio-balloon-device,id=balloon0 \
|
|
-object rng-random,id=rng0,filename=/dev/random \
|
|
-device virtio-rng-device,rng=rng0
|