diff options
author | Cornelia Huck <cohuck@redhat.com> | 2023-03-14 18:30:09 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2023-04-21 04:25:52 -0400 |
commit | 0259dd3e6ffe35145068ddc1bfb5c3ec06b33f48 (patch) | |
tree | e9c97a48fe3de3dddb93fe697524240ebb24756f /hw/i386/pc.c | |
parent | 5ec7755eb7c503fc66fe44083ee5113bd5b87bd9 (diff) | |
download | qemu-0259dd3e6ffe35145068ddc1bfb5c3ec06b33f48.zip qemu-0259dd3e6ffe35145068ddc1bfb5c3ec06b33f48.tar.gz qemu-0259dd3e6ffe35145068ddc1bfb5c3ec06b33f48.tar.bz2 |
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: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@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 1489abf..615e1d3 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" }, }; |