PPC: 440: Default to 440EP CPU

Today we're exposing a Virtex 440 CPU to the guest despite the fact
that we're telling the guest that we're running on a 440EP one in the
device tree.

So let's better default to a real 440EP to make things synced again.

Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
Alexander Graf 2012-01-03 22:00:23 +01:00
parent c148b2b47a
commit e5ba83c53a

View File

@ -48,7 +48,7 @@ CPUState *ppc440ep_init(MemoryRegion *address_space_mem, ram_addr_t *ram_size,
qemu_irq *pci_irqs;
if (cpu_model == NULL) {
cpu_model = "440-Xilinx"; // XXX: should be 440EP
cpu_model = "440EP";
}
env = cpu_init(cpu_model);
if (!env) {