ppc440_bamboo: Add 0.12 and 0.13 machine types for backward compat
authorAmit Shah <amit.shah@redhat.com>
Thu, 25 Feb 2010 13:56:11 +0000 (19:26 +0530)
committerAurelien Jarno <aurelien@aurel32.net>
Sat, 6 Mar 2010 21:56:53 +0000 (22:56 +0100)
Add a 0.12 machine type for compatibility with older versions. Mark the
default one as 0.13.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
hw/ppc440_bamboo.c

index 40e463b..470ecd0 100644 (file)
@@ -173,7 +173,15 @@ static void bamboo_init(ram_addr_t ram_size,
 }
 
 static QEMUMachine bamboo_machine = {
-    .name = "bamboo",
+    .name = "bamboo-0.13",
+    .alias = "bamboo",
+    .desc = "bamboo",
+    .init = bamboo_init,
+    .is_default = 1,
+};
+
+static QEMUMachine bamboo_machine_v0_12 = {
+    .name = "bamboo-0.12",
     .desc = "bamboo",
     .init = bamboo_init,
 };
@@ -181,6 +189,7 @@ static QEMUMachine bamboo_machine = {
 static void bamboo_machine_init(void)
 {
     qemu_register_machine(&bamboo_machine);
+    qemu_register_machine(&bamboo_machine_v0_12);
 }
 
 machine_init(bamboo_machine_init);