brintos

brintos / linux-shallow public Read only

0
0
Text · 3.3 KiB · 1fbab79 Raw
103 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# 3Com Ethernet device configuration4#5 6config NET_VENDOR_3COM7	bool "3Com devices"8	default y9	depends on ISA || EISA || PCI || PCMCIA10	help11	  If you have a network (Ethernet) card belonging to this class, say Y.12 13	  Note that the answer to this question doesn't directly affect the14	  kernel: saying N will just cause the configurator to skip all15	  the questions about 3Com cards. If you say Y, you will be asked for16	  your specific card in the following questions.17 18if NET_VENDOR_3COM19 20config EL321	tristate "3c509/3c579 \"EtherLink III\" support"22	depends on (ISA || EISA)23	help24	  If you have a network (Ethernet) card belonging to the 3Com25	  EtherLinkIII series, say Y here.26 27	  If your card is not working you may need to use the DOS28	  setup disk to disable Plug & Play mode, and to select the default29	  media type.30 31	  To compile this driver as a module, choose M here. The module32	  will be called 3c509.33 34config 3C51535	tristate "3c515 ISA \"Fast EtherLink\""36	depends on ISA && ISA_DMA_API && !PPC3237	select NETDEV_LEGACY_INIT38	help39	  If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet40	  network card, say Y here.41 42	  To compile this driver as a module, choose M here. The module43	  will be called 3c515.44 45config PCMCIA_3C57446	tristate "3Com 3c574 PCMCIA support"47	depends on PCMCIA && HAS_IOPORT48	help49	  Say Y here if you intend to attach a 3Com 3c574 or compatible PCMCIA50	  (PC-card) Fast Ethernet card to your computer.51 52	  To compile this driver as a module, choose M here: the module will be53	  called 3c574_cs.  If unsure, say N.54 55config PCMCIA_3C58956	tristate "3Com 3c589 PCMCIA support"57	depends on PCMCIA && HAS_IOPORT58	help59	  Say Y here if you intend to attach a 3Com 3c589 or compatible PCMCIA60	  (PC-card) Ethernet card to your computer.61 62	  To compile this driver as a module, choose M here: the module will be63	  called 3c589_cs.  If unsure, say N.64 65config VORTEX66	tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"67	depends on (PCI || EISA) && HAS_IOPORT_MAP68	select MII69	help70	  This option enables driver support for a large number of 10Mbps and71	  10/100Mbps EISA, PCI and Cardbus 3Com network cards:72 73	  "Vortex"    (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI74	  "Boomerang" (EtherLink XL 3c900 or 3c905)            PCI75	  "Cyclone"   (3c540/3c900/3c905/3c980/3c575/3c656)    PCI and Cardbus76	  "Tornado"   (3c905)                                  PCI77	  "Hurricane" (3c555/3cSOHO)                           PCI78 79	  If you have such a card, say Y here.  More specific information is in80	  <file:Documentation/networking/device_drivers/ethernet/3com/vortex.rst>81	  and in the comments at the beginning of82	  <file:drivers/net/ethernet/3com/3c59x.c>.83 84	  To compile this support as a module, choose M here.85 86config TYPHOON87	tristate "3cr990 series \"Typhoon\" support"88	depends on PCI89	select CRC3290	help91	  This option enables driver support for the 3cr990 series of cards:92 93	  3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,94	  3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,95	  3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR96 97	  If you have a network (Ethernet) card of this type, say Y here.98 99	  To compile this driver as a module, choose M here. The module100	  will be called typhoon.101 102endif # NET_VENDOR_3COM103