mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
hw: add compat machines for 5.2
Add 5.2 machine types for arm/i440fx/q35/s390x/spapr. Reviewed-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Acked-by: David Gibson <david@gibson.dropbear.id.au> Acked-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20200819144016.281156-1-cohuck@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
c556600598
commit
3ff3c5d317
9 changed files with 73 additions and 8 deletions
|
@ -4580,14 +4580,25 @@ static void spapr_machine_latest_class_options(MachineClass *mc)
|
|||
type_init(spapr_machine_register_##suffix)
|
||||
|
||||
/*
|
||||
* pseries-5.1
|
||||
* pseries-5.2
|
||||
*/
|
||||
static void spapr_machine_5_1_class_options(MachineClass *mc)
|
||||
static void spapr_machine_5_2_class_options(MachineClass *mc)
|
||||
{
|
||||
/* Defaults for the latest behaviour inherited from the base class */
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE(5_1, "5.1", true);
|
||||
DEFINE_SPAPR_MACHINE(5_2, "5.2", true);
|
||||
|
||||
/*
|
||||
* pseries-5.1
|
||||
*/
|
||||
static void spapr_machine_5_1_class_options(MachineClass *mc)
|
||||
{
|
||||
spapr_machine_5_2_class_options(mc);
|
||||
compat_props_add(mc->compat_props, hw_compat_5_1, hw_compat_5_1_len);
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE(5_1, "5.1", false);
|
||||
|
||||
/*
|
||||
* pseries-5.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue