mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 10:13:56 -06:00
hw: add compat machines for 6.0
Add 6.0 machine types for arm/i440fx/q35/s390x/spapr. Signed-off-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20201109173928.1001764-1-cohuck@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
21e8709b29
commit
576a00bdeb
9 changed files with 73 additions and 8 deletions
|
@ -789,14 +789,26 @@ bool css_migration_enabled(void)
|
|||
} \
|
||||
type_init(ccw_machine_register_##suffix)
|
||||
|
||||
static void ccw_machine_6_0_instance_options(MachineState *machine)
|
||||
{
|
||||
}
|
||||
|
||||
static void ccw_machine_6_0_class_options(MachineClass *mc)
|
||||
{
|
||||
}
|
||||
DEFINE_CCW_MACHINE(6_0, "6.0", true);
|
||||
|
||||
static void ccw_machine_5_2_instance_options(MachineState *machine)
|
||||
{
|
||||
ccw_machine_6_0_instance_options(machine);
|
||||
}
|
||||
|
||||
static void ccw_machine_5_2_class_options(MachineClass *mc)
|
||||
{
|
||||
ccw_machine_6_0_class_options(mc);
|
||||
compat_props_add(mc->compat_props, hw_compat_5_2, hw_compat_5_2_len);
|
||||
}
|
||||
DEFINE_CCW_MACHINE(5_2, "5.2", true);
|
||||
DEFINE_CCW_MACHINE(5_2, "5.2", false);
|
||||
|
||||
static void ccw_machine_5_1_instance_options(MachineState *machine)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue