mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54: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
|
@ -801,14 +801,26 @@ bool css_migration_enabled(void)
|
|||
} \
|
||||
type_init(ccw_machine_register_##suffix)
|
||||
|
||||
static void ccw_machine_5_2_instance_options(MachineState *machine)
|
||||
{
|
||||
}
|
||||
|
||||
static void ccw_machine_5_2_class_options(MachineClass *mc)
|
||||
{
|
||||
}
|
||||
DEFINE_CCW_MACHINE(5_2, "5.2", true);
|
||||
|
||||
static void ccw_machine_5_1_instance_options(MachineState *machine)
|
||||
{
|
||||
ccw_machine_5_2_instance_options(machine);
|
||||
}
|
||||
|
||||
static void ccw_machine_5_1_class_options(MachineClass *mc)
|
||||
{
|
||||
ccw_machine_5_2_class_options(mc);
|
||||
compat_props_add(mc->compat_props, hw_compat_5_1, hw_compat_5_1_len);
|
||||
}
|
||||
DEFINE_CCW_MACHINE(5_1, "5.1", true);
|
||||
DEFINE_CCW_MACHINE(5_1, "5.1", false);
|
||||
|
||||
static void ccw_machine_5_0_instance_options(MachineState *machine)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue