From acf5aa2e36816d6cc2bddec375e095f064341390 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Fri, 24 Apr 2020 14:21:44 +0200 Subject: qemu-arm: fix the qemu virt version With recent qemu, the ARM virt machine hit: pci-host-generic 4010000000.pcie: can't claim ECAM area [mem 0x10000000-0x1fffffff]: address conflict with pcie@10000000 [mem 0x10000000-0x3efeffff] pci-host-generic: probe of 4010000000.pcie failed with error -16 Without the PCI working, the storage for tests cannot work. So let's fix to the last version of the vmachine which work without kernel hacking. This patch should not be merged until LAVA 2020.02 since stretch qemu does not support virt-2.11 Change-Id: Ifbb352a491cf917c45d48e0f88af20c146ca5422 Bug-AGL: SPEC-3210 Signed-off-by: Corentin LABBE --- templates/machines/qemuarm.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/machines/qemuarm.jinja2 b/templates/machines/qemuarm.jinja2 index 3949f48..7e0b904 100644 --- a/templates/machines/qemuarm.jinja2 +++ b/templates/machines/qemuarm.jinja2 @@ -7,7 +7,7 @@ {%- set device_mach = "arm" %} {%- set qemu_arch = "arm" %} {%- set qemu_cpu = "cortex-a15" %} -{%- set qemu_machine = "virt" %} +{%- set qemu_machine = "virt-2.11" %} {%- set qemu_memory = "2048" %} {%- set qemu_args = "-soundhw hda -device usb-ehci -device virtio-rng-pci" %} {%- set qemu_cmdline = "console=ttyAMA0,115200 root=/dev/vda verbose systemd.log_color=false " %} -- cgit 1.2.3-korg