diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-03-16 21:08:13 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-20 11:44:13 +0100 |
commit | bcb7ef9d1b2f40410869ed2c1ffda769b2ef4ac4 (patch) | |
tree | cd520470c539c83554272ee47258ed6f58467205 /hw | |
parent | f7b5cdcbf27104d67d8ff860d83c22687f58eece (diff) |
hw/ppc/Kconfig: e500 based machines require virtio-net-pci device
This fixes when configuring with CONFIG_PCI_DEVICES=n:
$ qemu-system-ppc64 -bios /dev/null -M ppce500
qemu-system-ppc64: Unsupported NIC model: virtio-net-pci
And:
$ qemu-system-ppc64 -bios /dev/null -M mpc8544ds
qemu-system-ppc64: Unsupported NIC model: virtio-net-pci
Fixes: 98bd1db99f
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190316200818.8265-10-philmd@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ppc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/ppc/Kconfig b/hw/ppc/Kconfig index 0024873fd9..ae07b4da63 100644 --- a/hw/ppc/Kconfig +++ b/hw/ppc/Kconfig @@ -98,6 +98,7 @@ config MAC_NEWWORLD config E500 bool imply AT24C + imply VIRTIO_PCI select ETSEC select OPENPIC select PLATFORM_BUS |