diff options
| author | Cornelia Huck <cohuck@redhat.com> | 2023-03-14 18:30:09 +0100 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-04-20 06:44:15 +0200 |
| commit | f9be4771d3bdfaa8ace096e03c38f6b538ff6d85 (patch) | |
| tree | 43bbafa5ca57cb054dec86ac29d060e2433680c1 /hw/i386/pc.c | |
| parent | c1eb2ddf0f8075faddc5f7c3d39feae3e8e9d6b4 (diff) | |
| download | focaccia-qemu-f9be4771d3bdfaa8ace096e03c38f6b538ff6d85.tar.gz focaccia-qemu-f9be4771d3bdfaa8ace096e03c38f6b538ff6d85.zip | |
hw: Add compat machines for 8.1
Add 8.1 machine types for arm/i440fx/m68k/q35/s390x/spapr. Signed-off-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20230314173009.152667-1-cohuck@redhat.com> Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Acked-by: Gavin Shan <gshan@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/i386/pc.c')
| -rw-r--r-- | hw/i386/pc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index 1489abf010..615e1d3d06 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -116,6 +116,9 @@ { "qemu64-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, },\ { "athlon-" TYPE_X86_CPU, "model-id", "QEMU Virtual CPU version " v, }, +GlobalProperty pc_compat_8_0[] = {}; +const size_t pc_compat_8_0_len = G_N_ELEMENTS(pc_compat_8_0); + GlobalProperty pc_compat_7_2[] = { { "ICH9-LPC", "noreboot", "true" }, }; |