On 06/02/2023 15.08, Fabiano Rosas wrote:
The e1000e network adapter is the default network card for the q35
machine. Make sure that CONFIG is always selected for that machine.
Signed-off-by: Fabiano Rosas <[email protected]>
---
hw/i386/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/i386/Kconfig b/hw/i386/Kconfig
index 1bf47b0b0b..527b95df81 100644
--- a/hw/i386/Kconfig
+++ b/hw/i386/Kconfig
@@ -93,7 +93,6 @@ config Q35
bool
imply VTD
imply AMD_IOMMU
- imply E1000E_PCI_EXPRESS
imply VMPORT
imply VMMOUSE
select PC_PCI
@@ -104,6 +103,7 @@ config Q35
select DIMM
select SMBIOS
select FW_CFG_DMA
+ select E1000E_PCI_EXPRESS
Reviewed-by: Thomas Huth <[email protected]>