mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
hw: Add compat machines for 8.0
Add 8.0 machine types for arm/i440fx/m68k/q35/s390x/spapr. Reviewed-by: Cédric Le Goater <clg@kaod.org> [ppc] Reviewed-by: Thomas Huth <thuth@redhat.com> [s390x] Reviewed-by: Greg Kurz <groug@kaod.org> [ppc] Signed-off-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20221212152145.124317-2-cohuck@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Cédric Le Goater <clg@kaod.org>
This commit is contained in:
parent
6f10a29e76
commit
db723c80b1
10 changed files with 82 additions and 10 deletions
|
@ -4734,14 +4734,25 @@ static void spapr_machine_latest_class_options(MachineClass *mc)
|
|||
type_init(spapr_machine_register_##suffix)
|
||||
|
||||
/*
|
||||
* pseries-7.2
|
||||
* pseries-8.0
|
||||
*/
|
||||
static void spapr_machine_7_2_class_options(MachineClass *mc)
|
||||
static void spapr_machine_8_0_class_options(MachineClass *mc)
|
||||
{
|
||||
/* Defaults for the latest behaviour inherited from the base class */
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE(7_2, "7.2", true);
|
||||
DEFINE_SPAPR_MACHINE(8_0, "8.0", true);
|
||||
|
||||
/*
|
||||
* pseries-7.2
|
||||
*/
|
||||
static void spapr_machine_7_2_class_options(MachineClass *mc)
|
||||
{
|
||||
spapr_machine_8_0_class_options(mc);
|
||||
compat_props_add(mc->compat_props, hw_compat_7_2, hw_compat_7_2_len);
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE(7_2, "7.2", false);
|
||||
|
||||
/*
|
||||
* pseries-7.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue