summaryrefslogtreecommitdiffstats
path: root/hw/mips_malta.c
diff options
context:
space:
mode:
authorAnthony Liguori2009-05-22 03:41:01 +0200
committerAnthony Liguori2009-05-22 03:54:40 +0200
commit0c257437b25731d4f44985e4b30b7317f2845b4a (patch)
tree36ab639f617589370e583bd774c16a14d5eb73b4 /hw/mips_malta.c
parentRefactor how display drivers are selected (diff)
downloadqemu-0c257437b25731d4f44985e4b30b7317f2845b4a.tar.gz
qemu-0c257437b25731d4f44985e4b30b7317f2845b4a.tar.xz
qemu-0c257437b25731d4f44985e4b30b7317f2845b4a.zip
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/mips_malta.c')
-rw-r--r--hw/mips_malta.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c
index eb81edf1c2..d8621824cb 100644
--- a/hw/mips_malta.c
+++ b/hw/mips_malta.c
@@ -953,6 +953,7 @@ static QEMUMachine mips_malta_machine = {
.name = "malta",
.desc = "MIPS Malta Core LV",
.init = mips_malta_init,
+ .is_default = 1,
};
static void mips_malta_machine_init(void)