summaryrefslogtreecommitdiff
path: root/hw/mcf5208.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2009-05-21 20:41:01 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2009-05-21 20:54:40 -0500
commit0c257437b25731d4f44985e4b30b7317f2845b4a (patch)
tree36ab639f617589370e583bd774c16a14d5eb73b4 /hw/mcf5208.c
parent993fbfdb1b1a8d9b3d32ed57afc70a7be1a5e9dc (diff)
downloadqemu-0c257437b25731d4f44985e4b30b7317f2845b4a.tar.gz
Introduce is_default field for QEMUMachine
f80f9ec changed the order that machines are registered which had the effect of changing the default machine. This changeset introduces a new is_default field so that machine types can declare that they are the default for an architecture. Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/mcf5208.c')
-rw-r--r--hw/mcf5208.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/mcf5208.c b/hw/mcf5208.c
index 21b2bc8a4c..47a0f3eae0 100644
--- a/hw/mcf5208.c
+++ b/hw/mcf5208.c
@@ -290,6 +290,7 @@ static QEMUMachine mcf5208evb_machine = {
.name = "mcf5208evb",
.desc = "MCF5206EVB",
.init = mcf5208evb_init,
+ .is_default = 1,
};
static void mcf5208evb_machine_init(void)