mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
hw: add compat machines for 10.0
Add 10.0 machine types for arm/i440fx/m68k/q35/s390x/spapr. Signed-off-by: Cornelia Huck <cohuck@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-ID: <20241126103005.3794748-3-cohuck@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
7956b06068
commit
0a7c438a42
10 changed files with 79 additions and 12 deletions
|
@ -4733,14 +4733,25 @@ static void spapr_machine_latest_class_options(MachineClass *mc)
|
|||
DEFINE_SPAPR_MACHINE_IMPL(false, major, minor)
|
||||
|
||||
/*
|
||||
* pseries-9.2
|
||||
* pseries-10.0
|
||||
*/
|
||||
static void spapr_machine_9_2_class_options(MachineClass *mc)
|
||||
static void spapr_machine_10_0_class_options(MachineClass *mc)
|
||||
{
|
||||
/* Defaults for the latest behaviour inherited from the base class */
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE_AS_LATEST(9, 2);
|
||||
DEFINE_SPAPR_MACHINE_AS_LATEST(10, 0);
|
||||
|
||||
/*
|
||||
* pseries-9.2
|
||||
*/
|
||||
static void spapr_machine_9_2_class_options(MachineClass *mc)
|
||||
{
|
||||
spapr_machine_10_0_class_options(mc);
|
||||
compat_props_add(mc->compat_props, hw_compat_9_2, hw_compat_9_2_len);
|
||||
}
|
||||
|
||||
DEFINE_SPAPR_MACHINE(9, 2);
|
||||
|
||||
/*
|
||||
* pseries-9.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue