diff mbox

mips_malta: use compat props to avoid loading efi-pcnet.rom

Message ID 1426860662-20843-1-git-send-email-leon.alrae@imgtec.com
State New
Headers show

Commit Message

Leon Alrae March 20, 2015, 2:11 p.m. UTC
Currently qemu-system-mips aborts if it fails to find efi-pcnet.rom file which
does not make sense. NIC on Malta board should not require x86 firmware.

Reported-by: Maciej W. Rozycki <macro@linux-mips.org>
Suggested-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
---
Hi,

This fixes a problem reported some time ago:
http://lists.gnu.org/archive/html/qemu-devel/2014-12/msg01870.html

Regards,
Leon
---
 hw/mips/mips_malta.c | 8 ++++++++
 1 file changed, 8 insertions(+)
diff mbox

Patch

diff --git a/hw/mips/mips_malta.c b/hw/mips/mips_malta.c
index 533b2e6..b857941 100644
--- a/hw/mips/mips_malta.c
+++ b/hw/mips/mips_malta.c
@@ -1212,6 +1212,14 @@  static QEMUMachine mips_malta_machine = {
     .init = mips_malta_init,
     .max_cpus = 16,
     .is_default = 1,
+    .compat_props = (GlobalProperty[]) {
+        {
+            .driver   = TYPE_PCI_DEVICE,
+            .property = "romfile",
+            .value    = "",
+        },
+        { /* end of list */ }
+    },
 };
 
 static void mips_malta_register_types(void)