diff options
author | Cornelia Huck | 2020-04-29 16:46:05 +0200 |
---|---|---|
committer | Stefan Berger | 2020-05-06 16:12:16 +0200 |
commit | 541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3 (patch) | |
tree | 6b4ce0b9f7f8cff0a3694487c15cb944e8dd4405 /hw/i386/pc.c | |
parent | hw/arm/virt: Remove the compat forcing tpm-tis-device PPI to off (diff) | |
download | qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.tar.gz qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.tar.xz qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.zip |
hw: add compat machines for 5.1
Add 5.1 machine types for arm/i440fx/q35/s390x/spapr.
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20200429144605.7262-1-cohuck@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 f6b8431c8b..97e345faea 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -95,6 +95,9 @@ #include "fw_cfg.h" #include "trace.h" +GlobalProperty pc_compat_5_0[] = {}; +const size_t pc_compat_5_0_len = G_N_ELEMENTS(pc_compat_5_0); + GlobalProperty pc_compat_4_2[] = { { "mch", "smbase-smram", "off" }, }; |