diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-03-16 21:08:07 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-03-20 11:44:13 +0100 |
commit | 09cba51e4f3ebe3ed726db37f2b00e5c227e4197 (patch) | |
tree | a2fdec2008f891443da11017e78396abc5ae5a8a /hw | |
parent | fa80da7b6984f3a32632da81baea8d4c0c6df68d (diff) |
hw/i386/Kconfig: enable devices that can be created by default
This fixes when configuring with CONFIG_PCI_DEVICES=n:
$ qemu-system-x86_64 -M q35
qemu-system-x86_64: Unsupported NIC model: e1000e
$ qemu-system-x86_64 -M pc
qemu-system-x86_64: Unsupported NIC model: e1000
Fixes: 7c28b925b7e
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20190316200818.8265-4-philmd@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/Kconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/i386/Kconfig b/hw/i386/Kconfig index 756b1eaef8..8e8444dbf9 100644 --- a/hw/i386/Kconfig +++ b/hw/i386/Kconfig @@ -18,6 +18,7 @@ config PC imply TEST_DEVICES imply TPM_CRB imply TPM_TIS + imply VGA_PCI select FDC select I8259 select I8254 @@ -47,6 +48,7 @@ config PC_ACPI config I440FX bool + imply E1000_PCI select PC_PCI select PC_ACPI select ACPI_SMBUS @@ -72,6 +74,7 @@ config Q35 bool imply VTD imply AMD_IOMMU + imply E1000E_PCI_EXPRESS select PC_PCI select PC_ACPI select PCI_EXPRESS_Q35 |