[PATCH 4/5] sync_qemu_models_i386: Generate missing -v1 variants

Jiri Denemark posted 5 patches 4 weeks ago
There is a newer version of this series
[PATCH 4/5] sync_qemu_models_i386: Generate missing -v1 variants
Posted by Jiri Denemark 4 weeks ago
QEMU supports -v1 variant of any CPU model even though the list of
versions is not defined (i.e., even { .version = 1 } item is missing).

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
---
 src/cpu_map/sync_qemu_models_i386.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/cpu_map/sync_qemu_models_i386.py b/src/cpu_map/sync_qemu_models_i386.py
index 82437a6788..f71a3ab9a6 100755
--- a/src/cpu_map/sync_qemu_models_i386.py
+++ b/src/cpu_map/sync_qemu_models_i386.py
@@ -512,6 +512,9 @@ def expand_model(outdir, model):
     print(result['name'])
     yield result
 
+    if len(versions) == 0:
+        versions.append({".version": "1"})
+
     name = result["name"]
     for version in versions:
         result = copy.deepcopy(result)
-- 
2.47.0