[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 07/14] hw/mips/Kconfig: Fulong 2e board requires ati
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-devel] [PATCH 07/14] hw/mips/Kconfig: Fulong 2e board requires ati-vga/rtl8139 PCI devices |
Date: |
Sat, 16 Mar 2019 21:08:11 +0100 |
This fixes when configuring with --without-default-devices:
$ qemu-system-mips64el -bios /dev/null -M fulong2e
qemu-system-mips64el: Unknown device 'ati-vga' for bus 'PCI'
Aborted (core dumped)
(gdb) bt
#0 0x00007ffff5a2753f in __GI_raise (address@hidden) at
../sysdeps/unix/sysv/linux/raise.c:50
#1 0x00007ffff5a11895 in __GI_abort () at abort.c:79
#2 0x00005555558768d3 in qdev_create (address@hidden, address@hidden
"ati-vga") at hw/core/qdev.c:131
#3 0x00005555558d15e1 in pci_create_multifunction (address@hidden,
address@hidden, address@hidden, address@hidden "ati-vga") at hw/pci/pci.c:2104
#4 0x00005555558d1a7a in pci_create (address@hidden, address@hidden,
address@hidden "ati-vga") at hw/pci/pci.c:2121
#5 0x0000555555763081 in mips_fulong2e_init (machine=<optimized out>) at
hw/mips/mips_fulong2e.c:352
#6 0x000055555587e23b in machine_run_board_init (machine=0x5555560b2000) at
hw/core/machine.c:1030
#7 0x00005555556cbea2 in main (argc=<optimized out>, argv=<optimized out>,
envp=<optimized out>) at vl.c:4463
And then:
$ qemu-system-mips64el -bios /dev/null -M fulong2e
qemu-system-mips64el: Unsupported NIC model: rtl8139
Fixes: 862b4a291dc and 7c28b925b7e
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
default-configs/mips64el-softmmu.mak | 2 ++
1 file changed, 2 insertions(+)
diff --git a/default-configs/mips64el-softmmu.mak
b/default-configs/mips64el-softmmu.mak
index 8b255efc54..a67c9517a2 100644
--- a/default-configs/mips64el-softmmu.mak
+++ b/default-configs/mips64el-softmmu.mak
@@ -6,6 +6,8 @@ CONFIG_RC4030=y
CONFIG_DP8393X=y
CONFIG_DS1225Y=y
CONFIG_FULONG=y
+CONFIG_ATI_VGA=y
+CONFIG_RTL8139_PCI=y
CONFIG_JAZZ=y
CONFIG_G364FB=y
CONFIG_JAZZ_LED=y
--
2.20.1
- [Qemu-devel] [PATCH 00/14] hw/Kconfig: Fixes when running ./configure --without-default-devices, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 01/14] hw/isa/Kconfig: PIIX4 southbridge requires USB UHCI, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 02/14] hw/isa/Kconfig: i82378 SuperIO requires PC speaker device, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 03/14] hw/i386/Kconfig: Q35 machine requires e1000e network card, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 04/14] hw/i386/Kconfig: isapc machine requires VGA display, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 05/14] hw/i386/Kconfig: isapc machine requires e1000 network card, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 06/14] hw/mips/Kconfig: Malta machine requires the pcnet network card, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 07/14] hw/mips/Kconfig: Fulong 2e board requires ati-vga/rtl8139 PCI devices,
Philippe Mathieu-Daudé <=
- [Qemu-devel] [PATCH 08/14] hw/ppc/Kconfig: Bamboo machine requires e1000 network card, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 09/14] hw/ppc/Kconfig: e500 based machines require virtio-net-pci device, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 10/14] hw/s390x/Kconfig: s390x machines require virtio-net-ccw device, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 11/14] hw/sparc/Kconfig: SPARCstation machine requires the TCX display, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 12/14] hw/sh4/Kconfig: r2d machine requires the rtl8139 network card, Philippe Mathieu-Daudé, 2019/03/16
- [Qemu-devel] [PATCH 13/14] hw/hppa/Kconfig: Dino board requires e1000 network card, Philippe Mathieu-Daudé, 2019/03/16