diff options
author | Laurent Vivier <laurent@vivier.eu> | 2021-11-06 20:41:57 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2021-11-09 12:14:07 +0100 |
commit | 6837f299762679429924242a63f16490862578e3 (patch) | |
tree | 8d02d774e343b54b6d7623e8601a7b4e08bc417f | |
parent | 85549204552b624fe254831537e7a0f6450228b8 (diff) | |
download | qemu-6837f299762679429924242a63f16490862578e3.zip qemu-6837f299762679429924242a63f16490862578e3.tar.gz qemu-6837f299762679429924242a63f16490862578e3.tar.bz2 |
hw: m68k: virt: Add compat machine for 6.1
Add the missing machine type for m68k/virt
Cc: qemu-stable@nongnu.org
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20211106194158.4068596-2-laurent@vivier.eu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rw-r--r-- | hw/m68k/virt.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/m68k/virt.c b/hw/m68k/virt.c index 4e8bce5..0d9e3f8 100644 --- a/hw/m68k/virt.c +++ b/hw/m68k/virt.c @@ -304,7 +304,14 @@ type_init(virt_machine_register_types) } \ type_init(machvirt_machine_##major##_##minor##_init); +static void virt_machine_6_1_options(MachineClass *mc) +{ +} +DEFINE_VIRT_MACHINE(6, 1, true) + static void virt_machine_6_0_options(MachineClass *mc) { + virt_machine_6_1_options(mc); + compat_props_add(mc->compat_props, hw_compat_6_0, hw_compat_6_0_len); } -DEFINE_VIRT_MACHINE(6, 0, true) +DEFINE_VIRT_MACHINE(6, 0, false) |