diff options
author | Cornelia Huck <cohuck@redhat.com> | 2020-04-29 16:46:05 +0200 |
---|---|---|
committer | Stefan Berger <stefanb@linux.vnet.ibm.com> | 2020-05-06 10:12:16 -0400 |
commit | 541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3 (patch) | |
tree | 6b4ce0b9f7f8cff0a3694487c15cb944e8dd4405 /include | |
parent | b13d31ca17cc22c79b2dc29abd030802e4cc36f4 (diff) | |
download | qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.zip qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.tar.gz qemu-541aaa1df80df465c7dc934dc8cf57c0e3dfd6c3.tar.bz2 |
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 'include')
-rw-r--r-- | include/hw/boards.h | 3 | ||||
-rw-r--r-- | include/hw/i386/pc.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/hw/boards.h b/include/hw/boards.h index fd4d62b..18815d9 100644 --- a/include/hw/boards.h +++ b/include/hw/boards.h @@ -318,6 +318,9 @@ struct MachineState { } \ type_init(machine_initfn##_register_types) +extern GlobalProperty hw_compat_5_0[]; +extern const size_t hw_compat_5_0_len; + extern GlobalProperty hw_compat_4_2[]; extern const size_t hw_compat_4_2_len; diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 05e1945..8d764f9 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -191,6 +191,9 @@ void pc_system_firmware_init(PCMachineState *pcms, MemoryRegion *rom_memory); void pc_madt_cpu_entry(AcpiDeviceIf *adev, int uid, const CPUArchIdList *apic_ids, GArray *entry); +extern GlobalProperty pc_compat_5_0[]; +extern const size_t pc_compat_5_0_len; + extern GlobalProperty pc_compat_4_2[]; extern const size_t pc_compat_4_2_len; |