From c9a3dd9cd3c004e61836a252aa34b65b89038bee Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Wed, 1 Jun 2022 19:09:52 +0200 Subject: [PATCH] Switch to Cortex-A72 cpu on AArch64 CPU model "max" fails to boot CirrOS and some other images when QEMU 7.0 is used. Change-Id: Ie34a883ac7ae989d7f74c19b9c9ee9f08a82a35f --- tests/templates/nova-compute-overrides.j2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/templates/nova-compute-overrides.j2 b/tests/templates/nova-compute-overrides.j2 index 26c756a043..209c050ac7 100644 --- a/tests/templates/nova-compute-overrides.j2 +++ b/tests/templates/nova-compute-overrides.j2 @@ -1,5 +1,6 @@ [libvirt] {% if ansible_architecture == 'aarch64' %} cpu_mode=custom -cpu_model=max +# cpu_model=max fails to boot multiple images with QEMU 7.0 and -M virt (works with "-M virt-6.2") +cpu_model=cortex-a72 {% endif %}