qemu/hw/net/Kconfig
<<
>>
Prefs
   1config DP8393X
   2    bool
   3
   4config NE2000_COMMON
   5    bool
   6
   7config NE2000_PCI
   8    bool
   9    default y if PCI_DEVICES
  10    depends on PCI
  11    select NE2000_COMMON
  12
  13config EEPRO100_PCI
  14    bool
  15    default y if PCI_DEVICES
  16    depends on PCI
  17    select NMC93XX_EEPROM
  18
  19config PCNET_PCI
  20    bool
  21    default y if PCI_DEVICES
  22    depends on PCI
  23    select PCNET_COMMON
  24
  25config PCNET_COMMON
  26    bool
  27
  28config TULIP
  29    bool
  30    default y if PCI_DEVICES
  31    depends on PCI
  32    select NMC93XX_EEPROM
  33
  34config I82596_COMMON
  35    bool
  36
  37config E1000_PCI
  38    bool
  39    default y if PCI_DEVICES
  40    depends on PCI
  41
  42config E1000E_PCI_EXPRESS
  43    bool
  44    default y if PCI_DEVICES || PCIE_DEVICES
  45    depends on PCI_EXPRESS && MSI_NONBROKEN
  46
  47config IGB_PCI_EXPRESS
  48    bool
  49    default y if PCI_DEVICES || PCIE_DEVICES
  50    depends on PCI_EXPRESS && MSI_NONBROKEN
  51
  52config RTL8139_PCI
  53    bool
  54    default y if PCI_DEVICES
  55    depends on PCI
  56
  57config VMXNET3_PCI
  58    bool
  59    default y if PCI_DEVICES
  60    depends on PCI
  61
  62config SMC91C111
  63    bool
  64
  65config LAN9118
  66    bool
  67    select PTIMER
  68
  69config NE2000_ISA
  70    bool
  71    default y
  72    depends on ISA_BUS
  73    select NE2000_COMMON
  74
  75config OPENCORES_ETH
  76    bool
  77
  78config XGMAC
  79    bool
  80
  81config MIPSNET
  82    bool
  83
  84config ALLWINNER_EMAC
  85    bool
  86
  87config ALLWINNER_SUN8I_EMAC
  88    bool
  89
  90config IMX_FEC
  91    bool
  92
  93config CADENCE
  94    bool
  95
  96config STELLARIS_ENET
  97    bool
  98
  99config LANCE
 100    bool
 101    select PCNET_COMMON
 102
 103config LASI_82596
 104    bool
 105    select I82596_COMMON
 106
 107config SUNHME
 108    bool
 109
 110config FTGMAC100
 111    bool
 112
 113config SUNGEM
 114    bool
 115    depends on PCI
 116
 117config COLDFIRE
 118    bool
 119
 120config XILINX_ETHLITE
 121    bool
 122
 123config VIRTIO_NET
 124    bool
 125    default y
 126    depends on VIRTIO
 127
 128config ETSEC
 129    bool
 130    select PTIMER
 131
 132config ROCKER
 133    bool
 134    default y if PCI_DEVICES
 135    depends on PCI && MSI_NONBROKEN
 136
 137config CAN_BUS
 138    bool
 139
 140config CAN_SJA1000
 141    bool
 142    default y if PCI_DEVICES
 143    select CAN_BUS
 144
 145config CAN_PCI
 146    bool
 147    default y if PCI_DEVICES
 148    depends on PCI && CAN_SJA1000
 149    select CAN_BUS
 150
 151config CAN_CTUCANFD
 152    bool
 153    default y if PCI_DEVICES
 154    select CAN_BUS
 155
 156config CAN_CTUCANFD_PCI
 157    bool
 158    default y if PCI_DEVICES
 159    depends on PCI && CAN_CTUCANFD
 160    select CAN_BUS
 161