[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 1/5] PPC: bamboo: remove old machine descriptions
From: |
Alexander Graf |
Subject: |
[Qemu-ppc] [PATCH 1/5] PPC: bamboo: remove old machine descriptions |
Date: |
Tue, 10 Jan 2012 20:44:20 +0100 |
Nobody needs to run bamboo in 0.12 compat mode. Remove the machine.
Signed-off-by: Alexander Graf <address@hidden>
---
hw/ppc440_bamboo.c | 22 +---------------------
1 files changed, 1 insertions(+), 21 deletions(-)
diff --git a/hw/ppc440_bamboo.c b/hw/ppc440_bamboo.c
index c17f6f7..84e45b4 100644
--- a/hw/ppc440_bamboo.c
+++ b/hw/ppc440_bamboo.c
@@ -214,34 +214,14 @@ static void bamboo_init(ram_addr_t ram_size,
}
static QEMUMachine bamboo_machine = {
- .name = "bamboo-0.13",
- .alias = "bamboo",
+ .name = "bamboo",
.desc = "bamboo",
.init = bamboo_init,
};
-static QEMUMachine bamboo_machine_v0_12 = {
- .name = "bamboo-0.12",
- .desc = "bamboo",
- .init = bamboo_init,
- .compat_props = (GlobalProperty[]) {
- {
- .driver = "virtio-serial-pci",
- .property = "max_ports",
- .value = stringify(1),
- },{
- .driver = "virtio-serial-pci",
- .property = "vectors",
- .value = stringify(0),
- },
- { /* end of list */ }
- },
-};
-
static void bamboo_machine_init(void)
{
qemu_register_machine(&bamboo_machine);
- qemu_register_machine(&bamboo_machine_v0_12);
}
machine_init(bamboo_machine_init);
--
1.6.0.2
- [Qemu-ppc] [PATCH 0/5] Convert bamboo to qdev, Alexander Graf, 2012/01/10
- [Qemu-ppc] [PATCH 4/5] PPC: Bamboo: fold ppc440.c and ppc440_bamboo.c into a single file, Alexander Graf, 2012/01/10
- [Qemu-ppc] [PATCH 1/5] PPC: bamboo: remove old machine descriptions,
Alexander Graf <=
- [Qemu-ppc] [PATCH 5/5] PPC: Bamboo: Integrate SoC instatiation, use qdev for PCI, Alexander Graf, 2012/01/10
- [Qemu-ppc] [PATCH 2/5] PPC: bamboo: fix whitespace, Alexander Graf, 2012/01/10
- [Qemu-ppc] [PATCH 3/5] PPC: 4xx: Qdevify the 440 PCI host controller, Alexander Graf, 2012/01/10