diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2009-10-21 15:25:43 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-27 12:28:42 -0500 |
commit | 844e78ef9c6102cc3e33e4aa00efc8abdf0d8dde (patch) | |
tree | 90e020cd6050d36529e7f632d554d147724997e5 /hw/pc.c | |
parent | 9ad4531e1e00b996ba55de04d6ecfb4d02a9fd7c (diff) | |
download | qemu-844e78ef9c6102cc3e33e4aa00efc8abdf0d8dde.tar.gz qemu-844e78ef9c6102cc3e33e4aa00efc8abdf0d8dde.tar.bz2 qemu-844e78ef9c6102cc3e33e4aa00efc8abdf0d8dde.zip |
pc.c: only load e1000 rom.
The other pxe roms are loaded by the drivers individual drivers now.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/pc.c')
-rw-r--r-- | hw/pc.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1163,6 +1163,11 @@ static void pc_init1(ram_addr_t ram_size, rom_add_option(option_rom[i]); } +#if 1 + /* + * Needed for the e1000 rom only. The rom doesn't do proper BEV + * and thus we can't load it unconditionally. + */ for (i = 0; i < nb_nics; i++) { char nic_oprom[1024]; const char *model = nd_table[i].model; @@ -1172,10 +1177,12 @@ static void pc_init1(ram_addr_t ram_size, if (model == NULL) model = "e1000"; + if (strcmp(model,"e1000") != 0) + continue; snprintf(nic_oprom, sizeof(nic_oprom), "pxe-%s.bin", model); - rom_add_option(nic_oprom); } +#endif cpu_irq = qemu_allocate_irqs(pic_irq_request, NULL, 1); i8259 = i8259_init(cpu_irq[0]); |