aboutsummaryrefslogtreecommitdiff
path: root/hw/m68k
diff options
context:
space:
mode:
authorLaurent Vivier <laurent@vivier.eu>2021-11-06 20:41:58 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-11-09 12:14:18 +0100
commit6ed25621f2890d8f1c3b9e6f7a0e91c841aea1f8 (patch)
treec1f91a6197e16559ac53a2ea2dc7a87347926bce /hw/m68k
parent6837f299762679429924242a63f16490862578e3 (diff)
downloadqemu-6ed25621f2890d8f1c3b9e6f7a0e91c841aea1f8.zip
qemu-6ed25621f2890d8f1c3b9e6f7a0e91c841aea1f8.tar.gz
qemu-6ed25621f2890d8f1c3b9e6f7a0e91c841aea1f8.tar.bz2
hw: m68k: virt: Add compat machine for 6.2
Add the missing machine type for m68k/virt Signed-off-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20211106194158.4068596-3-laurent@vivier.eu> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/m68k')
-rw-r--r--hw/m68k/virt.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/hw/m68k/virt.c b/hw/m68k/virt.c
index 0d9e3f8..978c26e 100644
--- a/hw/m68k/virt.c
+++ b/hw/m68k/virt.c
@@ -304,10 +304,17 @@ type_init(virt_machine_register_types)
} \
type_init(machvirt_machine_##major##_##minor##_init);
+static void virt_machine_6_2_options(MachineClass *mc)
+{
+}
+DEFINE_VIRT_MACHINE(6, 2, true)
+
static void virt_machine_6_1_options(MachineClass *mc)
{
+ virt_machine_6_2_options(mc);
+ compat_props_add(mc->compat_props, hw_compat_6_1, hw_compat_6_1_len);
}
-DEFINE_VIRT_MACHINE(6, 1, true)
+DEFINE_VIRT_MACHINE(6, 1, false)
static void virt_machine_6_0_options(MachineClass *mc)
{