11da177e4SLinus Torvalds 21da177e4SLinus Torvalds# 31da177e4SLinus Torvalds# Network device configuration 41da177e4SLinus Torvalds# 51da177e4SLinus Torvalds 6d5950b43SSam Ravnborgmenu "Network device support" 7d5950b43SSam Ravnborg 81da177e4SLinus Torvaldsconfig NETDEVICES 91da177e4SLinus Torvalds depends on NET 101da177e4SLinus Torvalds bool "Network device support" 111da177e4SLinus Torvalds ---help--- 121da177e4SLinus Torvalds You can say N here if you don't intend to connect your Linux box to 131da177e4SLinus Torvalds any other computer at all. 141da177e4SLinus Torvalds 151da177e4SLinus Torvalds You'll have to say Y if your computer contains a network card that 161da177e4SLinus Torvalds you want to use under Linux. If you are going to run SLIP or PPP over 171da177e4SLinus Torvalds telephone line or null modem cable you need say Y here. Connecting 181da177e4SLinus Torvalds two machines with parallel ports using PLIP needs this, as well as 191da177e4SLinus Torvalds AX.25/KISS for sending Internet traffic over amateur radio links. 201da177e4SLinus Torvalds 211da177e4SLinus Torvalds See also "The Linux Network Administrator's Guide" by Olaf Kirch and 221da177e4SLinus Torvalds Terry Dawson. Available at <http://www.tldp.org/guides.html>. 231da177e4SLinus Torvalds 241da177e4SLinus Torvalds If unsure, say Y. 251da177e4SLinus Torvalds 26cbcd2a4cSRandy Dunlap# All the following symbols are dependent on NETDEVICES - do not repeat 27cbcd2a4cSRandy Dunlap# that for each of the symbols. 28cbcd2a4cSRandy Dunlapif NETDEVICES 29cbcd2a4cSRandy Dunlap 301da177e4SLinus Torvaldsconfig DUMMY 311da177e4SLinus Torvalds tristate "Dummy net driver support" 321da177e4SLinus Torvalds ---help--- 331da177e4SLinus Torvalds This is essentially a bit-bucket device (i.e. traffic you send to 341da177e4SLinus Torvalds this device is consigned into oblivion) with a configurable IP 351da177e4SLinus Torvalds address. It is most commonly used in order to make your currently 361da177e4SLinus Torvalds inactive SLIP address seem like a real address for local programs. 371da177e4SLinus Torvalds If you use SLIP or PPP, you might want to say Y here. Since this 381da177e4SLinus Torvalds thing often comes in handy, the default is Y. It won't enlarge your 391da177e4SLinus Torvalds kernel either. What a deal. Read about it in the Network 401da177e4SLinus Torvalds Administrator's Guide, available from 411da177e4SLinus Torvalds <http://www.tldp.org/docs.html#guide>. 421da177e4SLinus Torvalds 431da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 441da177e4SLinus Torvalds will be called dummy. If you want to use more than one dummy 451da177e4SLinus Torvalds device at a time, you need to compile this driver as a module. 461da177e4SLinus Torvalds Instead of 'dummy', the devices will then be called 'dummy0', 471da177e4SLinus Torvalds 'dummy1' etc. 481da177e4SLinus Torvalds 491da177e4SLinus Torvaldsconfig BONDING 501da177e4SLinus Torvalds tristate "Bonding driver support" 511da177e4SLinus Torvalds depends on INET 521da177e4SLinus Torvalds ---help--- 531da177e4SLinus Torvalds Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet 541da177e4SLinus Torvalds Channels together. This is called 'Etherchannel' by Cisco, 551da177e4SLinus Torvalds 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux. 561da177e4SLinus Torvalds 571da177e4SLinus Torvalds The driver supports multiple bonding modes to allow for both high 581da177e4SLinus Torvalds perfomance and high availability operation. 591da177e4SLinus Torvalds 601da177e4SLinus Torvalds Refer to <file:Documentation/networking/bonding.txt> for more 611da177e4SLinus Torvalds information. 621da177e4SLinus Torvalds 631da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 641da177e4SLinus Torvalds will be called bonding. 651da177e4SLinus Torvalds 661da177e4SLinus Torvaldsconfig EQUALIZER 671da177e4SLinus Torvalds tristate "EQL (serial line load balancing) support" 681da177e4SLinus Torvalds ---help--- 691da177e4SLinus Torvalds If you have two serial connections to some other computer (this 701da177e4SLinus Torvalds usually requires two modems and two telephone lines) and you use 711da177e4SLinus Torvalds SLIP (the protocol for sending Internet traffic over telephone 721da177e4SLinus Torvalds lines) or PPP (a better SLIP) on them, you can make them behave like 731da177e4SLinus Torvalds one double speed connection using this driver. Naturally, this has 741da177e4SLinus Torvalds to be supported at the other end as well, either with a similar EQL 751da177e4SLinus Torvalds Linux driver or with a Livingston Portmaster 2e. 761da177e4SLinus Torvalds 771da177e4SLinus Torvalds Say Y if you want this and read 781da177e4SLinus Torvalds <file:Documentation/networking/eql.txt>. You may also want to read 791da177e4SLinus Torvalds section 6.2 of the NET-3-HOWTO, available from 801da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 811da177e4SLinus Torvalds 821da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 831da177e4SLinus Torvalds will be called eql. If unsure, say N. 841da177e4SLinus Torvalds 851da177e4SLinus Torvaldsconfig TUN 861da177e4SLinus Torvalds tristate "Universal TUN/TAP device driver support" 871da177e4SLinus Torvalds select CRC32 881da177e4SLinus Torvalds ---help--- 891da177e4SLinus Torvalds TUN/TAP provides packet reception and transmission for user space 901da177e4SLinus Torvalds programs. It can be viewed as a simple Point-to-Point or Ethernet 911da177e4SLinus Torvalds device, which instead of receiving packets from a physical media, 921da177e4SLinus Torvalds receives them from user space program and instead of sending packets 931da177e4SLinus Torvalds via physical media writes them to the user space program. 941da177e4SLinus Torvalds 951da177e4SLinus Torvalds When a program opens /dev/net/tun, driver creates and registers 961da177e4SLinus Torvalds corresponding net device tunX or tapX. After a program closed above 971da177e4SLinus Torvalds devices, driver will automatically delete tunXX or tapXX device and 981da177e4SLinus Torvalds all routes corresponding to it. 991da177e4SLinus Torvalds 1001da177e4SLinus Torvalds Please read <file:Documentation/networking/tuntap.txt> for more 1011da177e4SLinus Torvalds information. 1021da177e4SLinus Torvalds 1031da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 1041da177e4SLinus Torvalds will be called tun. 1051da177e4SLinus Torvalds 1061da177e4SLinus Torvalds If you don't know what to use this for, you don't need it. 1071da177e4SLinus Torvalds 1081da177e4SLinus Torvaldsconfig NET_SB1000 1091da177e4SLinus Torvalds tristate "General Instruments Surfboard 1000" 110cbcd2a4cSRandy Dunlap depends on PNP 1111da177e4SLinus Torvalds ---help--- 1121da177e4SLinus Torvalds This is a driver for the General Instrument (also known as 1131da177e4SLinus Torvalds NextLevel) SURFboard 1000 internal 1141da177e4SLinus Torvalds cable modem. This is an ISA card which is used by a number of cable 1151da177e4SLinus Torvalds TV companies to provide cable modem access. It's a one-way 1161da177e4SLinus Torvalds downstream-only cable modem, meaning that your upstream net link is 1171da177e4SLinus Torvalds provided by your regular phone modem. 1181da177e4SLinus Torvalds 1191da177e4SLinus Torvalds At present this driver only compiles as a module, so say M here if 1201da177e4SLinus Torvalds you have this card. The module will be called sb1000. Then read 1211da177e4SLinus Torvalds <file:Documentation/networking/README.sb1000> for information on how 1221da177e4SLinus Torvalds to use this module, as it needs special ppp scripts for establishing 1231da177e4SLinus Torvalds a connection. Further documentation and the necessary scripts can be 1241da177e4SLinus Torvalds found at: 1251da177e4SLinus Torvalds 1261da177e4SLinus Torvalds <http://www.jacksonville.net/~fventuri/> 1271da177e4SLinus Torvalds <http://home.adelphia.net/~siglercm/sb1000.html> 1281da177e4SLinus Torvalds <http://linuxpower.cx/~cable/> 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvalds If you don't have this card, of course say N. 1311da177e4SLinus Torvalds 1321da177e4SLinus Torvalds source "drivers/net/arcnet/Kconfig" 1331da177e4SLinus Torvalds 13400db8189SAndy Flemingsource "drivers/net/phy/Kconfig" 13500db8189SAndy Fleming 1361da177e4SLinus Torvalds# 1371da177e4SLinus Torvalds# Ethernet 1381da177e4SLinus Torvalds# 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvaldsmenu "Ethernet (10 or 100Mbit)" 141cbcd2a4cSRandy Dunlap depends on !UML 1421da177e4SLinus Torvalds 1431da177e4SLinus Torvaldsconfig NET_ETHERNET 1441da177e4SLinus Torvalds bool "Ethernet (10 or 100Mbit)" 1451da177e4SLinus Torvalds ---help--- 1461da177e4SLinus Torvalds Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common 1471da177e4SLinus Torvalds type of Local Area Network (LAN) in universities and companies. 1481da177e4SLinus Torvalds 1491da177e4SLinus Torvalds Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over 1501da177e4SLinus Torvalds coaxial cable, linking computers in a chain), 10BASE-T or twisted 1511da177e4SLinus Torvalds pair (10 Mbps over twisted pair cable, linking computers to central 1521da177e4SLinus Torvalds hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs), 1531da177e4SLinus Torvalds 100BASE-TX (100 Mbps over two twisted pair cables, using hubs), 1541da177e4SLinus Torvalds 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair 1551da177e4SLinus Torvalds cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links) 1561da177e4SLinus Torvalds [the 100BASE varieties are also known as Fast Ethernet], and Gigabit 1571da177e4SLinus Torvalds Ethernet (1 Gbps over optical fiber or short copper links). 1581da177e4SLinus Torvalds 1591da177e4SLinus Torvalds If your Linux machine will be connected to an Ethernet and you have 1601da177e4SLinus Torvalds an Ethernet network interface card (NIC) installed in your computer, 1611da177e4SLinus Torvalds say Y here and read the Ethernet-HOWTO, available from 1621da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. You will then also have 1631da177e4SLinus Torvalds to say Y to the driver for your particular NIC. 1641da177e4SLinus Torvalds 1651da177e4SLinus Torvalds Note that the answer to this question won't directly affect the 1661da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 1671da177e4SLinus Torvalds the questions about Ethernet network cards. If unsure, say N. 1681da177e4SLinus Torvalds 1691da177e4SLinus Torvaldsconfig MII 1701da177e4SLinus Torvalds tristate "Generic Media Independent Interface device support" 1711da177e4SLinus Torvalds depends on NET_ETHERNET 1721da177e4SLinus Torvalds help 1731da177e4SLinus Torvalds Most ethernet controllers have MII transceiver either as an external 1741da177e4SLinus Torvalds or internal device. It is safe to say Y or M here even if your 1751da177e4SLinus Torvalds ethernet card lack MII. 1761da177e4SLinus Torvalds 1771da177e4SLinus Torvaldssource "drivers/net/arm/Kconfig" 1781da177e4SLinus Torvalds 1791da177e4SLinus Torvaldsconfig MACE 1801da177e4SLinus Torvalds tristate "MACE (Power Mac ethernet) support" 1811da177e4SLinus Torvalds depends on NET_ETHERNET && PPC_PMAC && PPC32 1821da177e4SLinus Torvalds select CRC32 1831da177e4SLinus Torvalds help 1841da177e4SLinus Torvalds Power Macintoshes and clones with Ethernet built-in on the 1851da177e4SLinus Torvalds motherboard will usually use a MACE (Medium Access Control for 1861da177e4SLinus Torvalds Ethernet) interface. Say Y to include support for the MACE chip. 1871da177e4SLinus Torvalds 1881da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 1891da177e4SLinus Torvalds will be called mace. 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvaldsconfig MACE_AAUI_PORT 1921da177e4SLinus Torvalds bool "Use AAUI port instead of TP by default" 1931da177e4SLinus Torvalds depends on MACE 1941da177e4SLinus Torvalds help 1951da177e4SLinus Torvalds Some Apple machines (notably the Apple Network Server) which use the 1961da177e4SLinus Torvalds MACE ethernet chip have an Apple AUI port (small 15-pin connector), 1971da177e4SLinus Torvalds instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say 1981da177e4SLinus Torvalds Y here if you have such a machine. If unsure, say N. 1991da177e4SLinus Torvalds The driver will default to AAUI on ANS anyway, and if you use it as 2001da177e4SLinus Torvalds a module, you can provide the port_aaui=0|1 to force the driver. 2011da177e4SLinus Torvalds 2021da177e4SLinus Torvaldsconfig BMAC 2031da177e4SLinus Torvalds tristate "BMAC (G3 ethernet) support" 2041da177e4SLinus Torvalds depends on NET_ETHERNET && PPC_PMAC && PPC32 2051da177e4SLinus Torvalds select CRC32 2061da177e4SLinus Torvalds help 2071da177e4SLinus Torvalds Say Y for support of BMAC Ethernet interfaces. These are used on G3 2081da177e4SLinus Torvalds computers. 2091da177e4SLinus Torvalds 2101da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2111da177e4SLinus Torvalds will be called bmac. 2121da177e4SLinus Torvalds 2131da177e4SLinus Torvaldsconfig OAKNET 2141da177e4SLinus Torvalds tristate "National DP83902AV (Oak ethernet) support" 2151da177e4SLinus Torvalds depends on NET_ETHERNET && PPC && BROKEN 2161da177e4SLinus Torvalds select CRC32 2171da177e4SLinus Torvalds help 2181da177e4SLinus Torvalds Say Y if your machine has this type of Ethernet network card. 2191da177e4SLinus Torvalds 2201da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2211da177e4SLinus Torvalds will be called oaknet. 2221da177e4SLinus Torvalds 2231da177e4SLinus Torvaldsconfig ARIADNE 2241da177e4SLinus Torvalds tristate "Ariadne support" 2251da177e4SLinus Torvalds depends on NET_ETHERNET && ZORRO 2261da177e4SLinus Torvalds help 2271da177e4SLinus Torvalds If you have a Village Tronic Ariadne Ethernet adapter, say Y. 2281da177e4SLinus Torvalds Otherwise, say N. 2291da177e4SLinus Torvalds 2301da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2311da177e4SLinus Torvalds will be called ariadne. 2321da177e4SLinus Torvalds 2331da177e4SLinus Torvaldsconfig A2065 2341da177e4SLinus Torvalds tristate "A2065 support" 2351da177e4SLinus Torvalds depends on NET_ETHERNET && ZORRO 2361da177e4SLinus Torvalds select CRC32 2371da177e4SLinus Torvalds help 2381da177e4SLinus Torvalds If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise, 2391da177e4SLinus Torvalds say N. 2401da177e4SLinus Torvalds 2411da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2421da177e4SLinus Torvalds will be called a2065. 2431da177e4SLinus Torvalds 2441da177e4SLinus Torvaldsconfig HYDRA 2451da177e4SLinus Torvalds tristate "Hydra support" 2461da177e4SLinus Torvalds depends on NET_ETHERNET && ZORRO 2471da177e4SLinus Torvalds select CRC32 2481da177e4SLinus Torvalds help 2491da177e4SLinus Torvalds If you have a Hydra Ethernet adapter, say Y. Otherwise, say N. 2501da177e4SLinus Torvalds 2511da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2521da177e4SLinus Torvalds will be called hydra. 2531da177e4SLinus Torvalds 2541da177e4SLinus Torvaldsconfig ZORRO8390 2551da177e4SLinus Torvalds tristate "Zorro NS8390-based Ethernet support" 2561da177e4SLinus Torvalds depends on NET_ETHERNET && ZORRO 2571da177e4SLinus Torvalds select CRC32 2581da177e4SLinus Torvalds help 2591da177e4SLinus Torvalds This driver is for Zorro Ethernet cards using an NS8390-compatible 2601da177e4SLinus Torvalds chipset, like the Village Tronic Ariadne II and the Individual 2611da177e4SLinus Torvalds Computers X-Surf Ethernet cards. If you have such a card, say Y. 2621da177e4SLinus Torvalds Otherwise, say N. 2631da177e4SLinus Torvalds 2641da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2651da177e4SLinus Torvalds will be called zorro8390. 2661da177e4SLinus Torvalds 2671da177e4SLinus Torvaldsconfig APNE 2681da177e4SLinus Torvalds tristate "PCMCIA NE2000 support" 2691da177e4SLinus Torvalds depends on NET_ETHERNET && AMIGA_PCMCIA 2701da177e4SLinus Torvalds select CRC32 2711da177e4SLinus Torvalds help 2721da177e4SLinus Torvalds If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise, 2731da177e4SLinus Torvalds say N. 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 2761da177e4SLinus Torvalds will be called apne. 2771da177e4SLinus Torvalds 2781da177e4SLinus Torvaldsconfig APOLLO_ELPLUS 2791da177e4SLinus Torvalds tristate "Apollo 3c505 support" 2801da177e4SLinus Torvalds depends on NET_ETHERNET && APOLLO 2811da177e4SLinus Torvalds help 2821da177e4SLinus Torvalds Say Y or M here if your Apollo has a 3Com 3c505 ISA Ethernet card. 2831da177e4SLinus Torvalds If you don't have one made for Apollos, you can use one from a PC, 2841da177e4SLinus Torvalds except that your Apollo won't be able to boot from it (because the 2851da177e4SLinus Torvalds code in the ROM will be for a PC). 2861da177e4SLinus Torvalds 2871da177e4SLinus Torvaldsconfig MAC8390 2881da177e4SLinus Torvalds bool "Macintosh NS 8390 based ethernet cards" 2891da177e4SLinus Torvalds depends on NET_ETHERNET && MAC 2901da177e4SLinus Torvalds select CRC32 2911da177e4SLinus Torvalds help 2921da177e4SLinus Torvalds If you want to include a driver to support Nubus or LC-PDS 2931da177e4SLinus Torvalds Ethernet cards using an NS8390 chipset or its equivalent, say Y 2941da177e4SLinus Torvalds and read the Ethernet-HOWTO, available from 2951da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 2961da177e4SLinus Torvalds 2971da177e4SLinus Torvaldsconfig MAC89x0 2981da177e4SLinus Torvalds tristate "Macintosh CS89x0 based ethernet cards" 2991da177e4SLinus Torvalds depends on NET_ETHERNET && MAC && BROKEN 3001da177e4SLinus Torvalds ---help--- 3011da177e4SLinus Torvalds Support for CS89x0 chipset based Ethernet cards. If you have a 3021da177e4SLinus Torvalds Nubus or LC-PDS network (Ethernet) card of this type, say Y and 3031da177e4SLinus Torvalds read the Ethernet-HOWTO, available from 3041da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 3051da177e4SLinus Torvalds 3061da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 3071da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. This module will 3081da177e4SLinus Torvalds be called mac89x0. 3091da177e4SLinus Torvalds 3101da177e4SLinus Torvaldsconfig MACSONIC 3111da177e4SLinus Torvalds tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)" 3121da177e4SLinus Torvalds depends on NET_ETHERNET && MAC 3131da177e4SLinus Torvalds ---help--- 3141da177e4SLinus Torvalds Support for NatSemi SONIC based Ethernet devices. This includes 3151da177e4SLinus Torvalds the onboard Ethernet in many Quadras as well as some LC-PDS, 3161da177e4SLinus Torvalds a few Nubus and all known Comm Slot Ethernet cards. If you have 3171da177e4SLinus Torvalds one of these say Y and read the Ethernet-HOWTO, available from 3181da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 3191da177e4SLinus Torvalds 3201da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 3211da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. This module will 3221da177e4SLinus Torvalds be called macsonic. 3231da177e4SLinus Torvalds 3241da177e4SLinus Torvaldsconfig MACMACE 3251da177e4SLinus Torvalds bool "Macintosh (AV) onboard MACE ethernet (EXPERIMENTAL)" 3261da177e4SLinus Torvalds depends on NET_ETHERNET && MAC && EXPERIMENTAL 3271da177e4SLinus Torvalds select CRC32 3281da177e4SLinus Torvalds help 3291da177e4SLinus Torvalds Support for the onboard AMD 79C940 MACE Ethernet controller used in 3301da177e4SLinus Torvalds the 660AV and 840AV Macintosh. If you have one of these Macintoshes 3311da177e4SLinus Torvalds say Y and read the Ethernet-HOWTO, available from 3321da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 3331da177e4SLinus Torvalds 3341da177e4SLinus Torvaldsconfig MVME147_NET 3351da177e4SLinus Torvalds tristate "MVME147 (Lance) Ethernet support" 3361da177e4SLinus Torvalds depends on NET_ETHERNET && MVME147 3371da177e4SLinus Torvalds select CRC32 3381da177e4SLinus Torvalds help 3391da177e4SLinus Torvalds Support for the on-board Ethernet interface on the Motorola MVME147 3401da177e4SLinus Torvalds single-board computer. Say Y here to include the 3411da177e4SLinus Torvalds driver for this chip in your kernel. 3421da177e4SLinus Torvalds To compile this driver as a module, choose M here. 3431da177e4SLinus Torvalds 3441da177e4SLinus Torvaldsconfig MVME16x_NET 3451da177e4SLinus Torvalds tristate "MVME16x Ethernet support" 3461da177e4SLinus Torvalds depends on NET_ETHERNET && MVME16x 3471da177e4SLinus Torvalds help 3481da177e4SLinus Torvalds This is the driver for the Ethernet interface on the Motorola 3491da177e4SLinus Torvalds MVME162, 166, 167, 172 and 177 boards. Say Y here to include the 3501da177e4SLinus Torvalds driver for this chip in your kernel. 3511da177e4SLinus Torvalds To compile this driver as a module, choose M here. 3521da177e4SLinus Torvalds 3531da177e4SLinus Torvaldsconfig BVME6000_NET 3541da177e4SLinus Torvalds tristate "BVME6000 Ethernet support" 3551da177e4SLinus Torvalds depends on NET_ETHERNET && BVME6000 3561da177e4SLinus Torvalds help 3571da177e4SLinus Torvalds This is the driver for the Ethernet interface on BVME4000 and 3581da177e4SLinus Torvalds BVME6000 VME boards. Say Y here to include the driver for this chip 3591da177e4SLinus Torvalds in your kernel. 3601da177e4SLinus Torvalds To compile this driver as a module, choose M here. 3611da177e4SLinus Torvalds 3621da177e4SLinus Torvaldsconfig ATARILANCE 3631da177e4SLinus Torvalds tristate "Atari Lance support" 3641da177e4SLinus Torvalds depends on NET_ETHERNET && ATARI 3651da177e4SLinus Torvalds help 3661da177e4SLinus Torvalds Say Y to include support for several Atari Ethernet adapters based 3671da177e4SLinus Torvalds on the AMD Lance chipset: RieblCard (with or without battery), or 3681da177e4SLinus Torvalds PAMCard VME (also the version by Rhotron, with different addresses). 3691da177e4SLinus Torvalds 3701da177e4SLinus Torvaldsconfig ATARI_BIONET 3711da177e4SLinus Torvalds tristate "BioNet-100 support" 3721da177e4SLinus Torvalds depends on NET_ETHERNET && ATARI && ATARI_ACSI && BROKEN 3731da177e4SLinus Torvalds help 3741da177e4SLinus Torvalds Say Y to include support for BioData's BioNet-100 Ethernet adapter 3751da177e4SLinus Torvalds for the ACSI port. The driver works (has to work...) with a polled 3761da177e4SLinus Torvalds I/O scheme, so it's rather slow :-( 3771da177e4SLinus Torvalds 3781da177e4SLinus Torvaldsconfig ATARI_PAMSNET 3791da177e4SLinus Torvalds tristate "PAMsNet support" 3801da177e4SLinus Torvalds depends on NET_ETHERNET && ATARI && ATARI_ACSI && BROKEN 3811da177e4SLinus Torvalds help 3821da177e4SLinus Torvalds Say Y to include support for the PAMsNet Ethernet adapter for the 3831da177e4SLinus Torvalds ACSI port ("ACSI node"). The driver works (has to work...) with a 3841da177e4SLinus Torvalds polled I/O scheme, so it's rather slow :-( 3851da177e4SLinus Torvalds 3861da177e4SLinus Torvaldsconfig SUN3LANCE 3871da177e4SLinus Torvalds tristate "Sun3/Sun3x on-board LANCE support" 3881da177e4SLinus Torvalds depends on NET_ETHERNET && (SUN3 || SUN3X) 3891da177e4SLinus Torvalds help 3901da177e4SLinus Torvalds Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80) 3911da177e4SLinus Torvalds featured an AMD Lance 10Mbit Ethernet controller on board; say Y 3921da177e4SLinus Torvalds here to compile in the Linux driver for this and enable Ethernet. 3931da177e4SLinus Torvalds General Linux information on the Sun 3 and 3x series (now 3941da177e4SLinus Torvalds discontinued) is at 3951da177e4SLinus Torvalds <http://www.angelfire.com/ca2/tech68k/sun3.html>. 3961da177e4SLinus Torvalds 3971da177e4SLinus Torvalds If you're not building a kernel for a Sun 3, say N. 3981da177e4SLinus Torvalds 3991da177e4SLinus Torvaldsconfig SUN3_82586 4009a482206SAl Viro bool "Sun3 on-board Intel 82586 support" 4011da177e4SLinus Torvalds depends on NET_ETHERNET && SUN3 4021da177e4SLinus Torvalds help 4031da177e4SLinus Torvalds This driver enables support for the on-board Intel 82586 based 4041da177e4SLinus Torvalds Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note 4051da177e4SLinus Torvalds that this driver does not support 82586-based adapters on additional 4061da177e4SLinus Torvalds VME boards. 4071da177e4SLinus Torvalds 4081da177e4SLinus Torvaldsconfig HPLANCE 4091da177e4SLinus Torvalds bool "HP on-board LANCE support" 4101da177e4SLinus Torvalds depends on NET_ETHERNET && DIO 4111da177e4SLinus Torvalds select CRC32 4121da177e4SLinus Torvalds help 4131da177e4SLinus Torvalds If you want to use the builtin "LANCE" Ethernet controller on an 4141da177e4SLinus Torvalds HP300 machine, say Y here. 4151da177e4SLinus Torvalds 4161da177e4SLinus Torvaldsconfig LASI_82596 4171da177e4SLinus Torvalds tristate "Lasi ethernet" 4181da177e4SLinus Torvalds depends on NET_ETHERNET && PARISC && GSC_LASI 4191da177e4SLinus Torvalds help 4201da177e4SLinus Torvalds Say Y here to support the on-board Intel 82596 ethernet controller 4211da177e4SLinus Torvalds built into Hewlett-Packard PA-RISC machines. 4221da177e4SLinus Torvalds 4231da177e4SLinus Torvaldsconfig MIPS_JAZZ_SONIC 4241da177e4SLinus Torvalds tristate "MIPS JAZZ onboard SONIC Ethernet support" 4251da177e4SLinus Torvalds depends on NET_ETHERNET && MACH_JAZZ 4261da177e4SLinus Torvalds help 4271da177e4SLinus Torvalds This is the driver for the onboard card of MIPS Magnum 4000, 4281da177e4SLinus Torvalds Acer PICA, Olivetti M700-10 and a few other identical OEM systems. 4291da177e4SLinus Torvalds 4301da177e4SLinus Torvaldsconfig MIPS_GT96100ETH 4311da177e4SLinus Torvalds bool "MIPS GT96100 Ethernet support" 4321da177e4SLinus Torvalds depends on NET_ETHERNET && MIPS_GT96100 4331da177e4SLinus Torvalds help 4341da177e4SLinus Torvalds Say Y here to support the Ethernet subsystem on your GT96100 card. 4351da177e4SLinus Torvalds 4361da177e4SLinus Torvaldsconfig MIPS_AU1X00_ENET 4371da177e4SLinus Torvalds bool "MIPS AU1000 Ethernet support" 4381da177e4SLinus Torvalds depends on NET_ETHERNET && SOC_AU1X00 4391da177e4SLinus Torvalds select CRC32 4401da177e4SLinus Torvalds help 4411da177e4SLinus Torvalds If you have an Alchemy Semi AU1X00 based system 4421da177e4SLinus Torvalds say Y. Otherwise, say N. 4431da177e4SLinus Torvalds 4441da177e4SLinus Torvaldsconfig NET_SB1250_MAC 4451da177e4SLinus Torvalds tristate "SB1250 Ethernet support" 4461da177e4SLinus Torvalds depends on NET_ETHERNET && SIBYTE_SB1xxx_SOC 4471da177e4SLinus Torvalds 4481da177e4SLinus Torvaldsconfig SGI_IOC3_ETH 4491da177e4SLinus Torvalds bool "SGI IOC3 Ethernet" 4500f302dc3SSascha Hauer depends on NET_ETHERNET && PCI && SGI_IP27 && BROKEN 4511da177e4SLinus Torvalds select CRC32 4521da177e4SLinus Torvalds select MII 4531da177e4SLinus Torvalds help 4541da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 4551da177e4SLinus Torvalds the Ethernet-HOWTO, available from 4561da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 4571da177e4SLinus Torvalds 4581da177e4SLinus Torvaldsconfig SGI_IOC3_ETH_HW_RX_CSUM 4591da177e4SLinus Torvalds bool "Receive hardware checksums" 4601da177e4SLinus Torvalds depends on SGI_IOC3_ETH && INET 4611da177e4SLinus Torvalds default y 4621da177e4SLinus Torvalds help 4631da177e4SLinus Torvalds The SGI IOC3 network adapter supports TCP and UDP checksums in 4641da177e4SLinus Torvalds hardware to offload processing of these checksums from the CPU. At 4651da177e4SLinus Torvalds the moment only acceleration of IPv4 is supported. This option 4661da177e4SLinus Torvalds enables offloading for checksums on receive. If unsure, say Y. 4671da177e4SLinus Torvalds 4681da177e4SLinus Torvaldsconfig SGI_IOC3_ETH_HW_TX_CSUM 4691da177e4SLinus Torvalds bool "Transmit hardware checksums" 4701da177e4SLinus Torvalds depends on SGI_IOC3_ETH && INET 4711da177e4SLinus Torvalds default y 4721da177e4SLinus Torvalds help 4731da177e4SLinus Torvalds The SGI IOC3 network adapter supports TCP and UDP checksums in 4741da177e4SLinus Torvalds hardware to offload processing of these checksums from the CPU. At 4751da177e4SLinus Torvalds the moment only acceleration of IPv4 is supported. This option 4761da177e4SLinus Torvalds enables offloading for checksums on transmit. If unsure, say Y. 4771da177e4SLinus Torvalds 4781da177e4SLinus Torvaldsconfig SGI_O2MACE_ETH 4791da177e4SLinus Torvalds tristate "SGI O2 MACE Fast Ethernet support" 4801da177e4SLinus Torvalds depends on NET_ETHERNET && SGI_IP32=y 4811da177e4SLinus Torvalds 4821da177e4SLinus Torvaldsconfig STNIC 4831da177e4SLinus Torvalds tristate "National DP83902AV support" 4841da177e4SLinus Torvalds depends on NET_ETHERNET && SUPERH 4851da177e4SLinus Torvalds select CRC32 4861da177e4SLinus Torvalds help 4871da177e4SLinus Torvalds Support for cards based on the National Semiconductor DP83902AV 4881da177e4SLinus Torvalds ST-NIC Serial Network Interface Controller for Twisted Pair. This 4891da177e4SLinus Torvalds is a 10Mbit/sec Ethernet controller. Product overview and specs at 4901da177e4SLinus Torvalds <http://www.national.com/pf/DP/DP83902A.html>. 4911da177e4SLinus Torvalds 4921da177e4SLinus Torvalds If unsure, say N. 4931da177e4SLinus Torvalds 4941da177e4SLinus Torvaldsconfig SUNLANCE 4951da177e4SLinus Torvalds tristate "Sun LANCE support" 4961da177e4SLinus Torvalds depends on NET_ETHERNET && SBUS 4971da177e4SLinus Torvalds select CRC32 4981da177e4SLinus Torvalds help 4991da177e4SLinus Torvalds This driver supports the "le" interface present on all 32-bit Sparc 5001da177e4SLinus Torvalds systems, on some older Ultra systems and as an Sbus option. These 5011da177e4SLinus Torvalds cards are based on the AMD Lance chipset, which is better known 5021da177e4SLinus Torvalds via the NE2100 cards. 5031da177e4SLinus Torvalds 5041da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 5051da177e4SLinus Torvalds will be called sunlance. 5061da177e4SLinus Torvalds 5071da177e4SLinus Torvaldsconfig HAPPYMEAL 5081da177e4SLinus Torvalds tristate "Sun Happy Meal 10/100baseT support" 5091da177e4SLinus Torvalds depends on NET_ETHERNET && (SBUS || PCI) 5101da177e4SLinus Torvalds select CRC32 5111da177e4SLinus Torvalds help 5121da177e4SLinus Torvalds This driver supports the "hme" interface present on most Ultra 5131da177e4SLinus Torvalds systems and as an option on older Sbus systems. This driver supports 5141da177e4SLinus Torvalds both PCI and Sbus devices. This driver also supports the "qfe" quad 5151da177e4SLinus Torvalds 100baseT device available in both PCI and Sbus configurations. 5161da177e4SLinus Torvalds 5171da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 5181da177e4SLinus Torvalds will be called sunhme. 5191da177e4SLinus Torvalds 5201da177e4SLinus Torvaldsconfig SUNBMAC 5211da177e4SLinus Torvalds tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)" 5221da177e4SLinus Torvalds depends on NET_ETHERNET && SBUS && EXPERIMENTAL 5231da177e4SLinus Torvalds select CRC32 5241da177e4SLinus Torvalds help 5251da177e4SLinus Torvalds This driver supports the "be" interface available as an Sbus option. 5261da177e4SLinus Torvalds This is Sun's older 100baseT Ethernet device. 5271da177e4SLinus Torvalds 5281da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 5291da177e4SLinus Torvalds will be called sunbmac. 5301da177e4SLinus Torvalds 5311da177e4SLinus Torvaldsconfig SUNQE 5321da177e4SLinus Torvalds tristate "Sun QuadEthernet support" 5331da177e4SLinus Torvalds depends on NET_ETHERNET && SBUS 5341da177e4SLinus Torvalds select CRC32 5351da177e4SLinus Torvalds help 5361da177e4SLinus Torvalds This driver supports the "qe" 10baseT Ethernet device, available as 5371da177e4SLinus Torvalds an Sbus option. Note that this is not the same as Quad FastEthernet 5381da177e4SLinus Torvalds "qfe" which is supported by the Happy Meal driver instead. 5391da177e4SLinus Torvalds 5401da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 5411da177e4SLinus Torvalds will be called sunqe. 5421da177e4SLinus Torvalds 5431da177e4SLinus Torvaldsconfig SUNGEM 5441da177e4SLinus Torvalds tristate "Sun GEM support" 5451da177e4SLinus Torvalds depends on NET_ETHERNET && PCI 5461da177e4SLinus Torvalds select CRC32 5471da177e4SLinus Torvalds help 5481da177e4SLinus Torvalds Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also 5491da177e4SLinus Torvalds <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>. 5501da177e4SLinus Torvalds 5511f26dac3SDavid S. Millerconfig CASSINI 5521f26dac3SDavid S. Miller tristate "Sun Cassini support" 5531f26dac3SDavid S. Miller depends on NET_ETHERNET && PCI 5541f26dac3SDavid S. Miller select CRC32 5551f26dac3SDavid S. Miller help 5561f26dac3SDavid S. Miller Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also 5571f26dac3SDavid S. Miller <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf> 5581f26dac3SDavid S. Miller 5591da177e4SLinus Torvaldsconfig NET_VENDOR_3COM 5601da177e4SLinus Torvalds bool "3COM cards" 5611da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || EISA || MCA || PCI) 5621da177e4SLinus Torvalds help 5631da177e4SLinus Torvalds If you have a network (Ethernet) card belonging to this class, say Y 5641da177e4SLinus Torvalds and read the Ethernet-HOWTO, available from 5651da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 5661da177e4SLinus Torvalds 5671da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 5681da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 5691da177e4SLinus Torvalds the questions about 3COM cards. If you say Y, you will be asked for 5701da177e4SLinus Torvalds your specific card in the following questions. 5711da177e4SLinus Torvalds 5721da177e4SLinus Torvaldsconfig EL1 5731da177e4SLinus Torvalds tristate "3c501 \"EtherLink\" support" 5741da177e4SLinus Torvalds depends on NET_VENDOR_3COM && ISA 5751da177e4SLinus Torvalds ---help--- 5761da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 5771da177e4SLinus Torvalds the Ethernet-HOWTO, available from 5781da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Also, consider buying a 5791da177e4SLinus Torvalds new card, since the 3c501 is slow, broken, and obsolete: you will 5801da177e4SLinus Torvalds have problems. Some people suggest to ping ("man ping") a nearby 5811da177e4SLinus Torvalds machine every minute ("man cron") when using this card. 5821da177e4SLinus Torvalds 5831da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 5841da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 5851da177e4SLinus Torvalds will be called 3c501. 5861da177e4SLinus Torvalds 5871da177e4SLinus Torvaldsconfig EL2 5881da177e4SLinus Torvalds tristate "3c503 \"EtherLink II\" support" 5891da177e4SLinus Torvalds depends on NET_VENDOR_3COM && ISA 5901da177e4SLinus Torvalds select CRC32 5911da177e4SLinus Torvalds help 5921da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 5931da177e4SLinus Torvalds the Ethernet-HOWTO, available from 5941da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 5951da177e4SLinus Torvalds 5961da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 5971da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 5981da177e4SLinus Torvalds will be called 3c503. 5991da177e4SLinus Torvalds 6001da177e4SLinus Torvaldsconfig ELPLUS 6011da177e4SLinus Torvalds tristate "3c505 \"EtherLink Plus\" support" 602a5532606SAl Viro depends on NET_VENDOR_3COM && ISA && ISA_DMA_API 6031da177e4SLinus Torvalds ---help--- 6041da177e4SLinus Torvalds Information about this network (Ethernet) card can be found in 6051da177e4SLinus Torvalds <file:Documentation/networking/3c505.txt>. If you have a card of 6061da177e4SLinus Torvalds this type, say Y and read the Ethernet-HOWTO, available from 6071da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 6081da177e4SLinus Torvalds 6091da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6101da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6111da177e4SLinus Torvalds will be called 3c505. 6121da177e4SLinus Torvalds 6131da177e4SLinus Torvaldsconfig EL16 6141da177e4SLinus Torvalds tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)" 6151da177e4SLinus Torvalds depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL 6161da177e4SLinus Torvalds help 6171da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 6181da177e4SLinus Torvalds the Ethernet-HOWTO, available from 6191da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 6201da177e4SLinus Torvalds 6211da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6221da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6231da177e4SLinus Torvalds will be called 3c507. 6241da177e4SLinus Torvalds 6251da177e4SLinus Torvaldsconfig EL3 6261da177e4SLinus Torvalds tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support" 6271da177e4SLinus Torvalds depends on NET_VENDOR_3COM && (ISA || EISA || MCA) 6281da177e4SLinus Torvalds ---help--- 6291da177e4SLinus Torvalds If you have a network (Ethernet) card belonging to the 3Com 6301da177e4SLinus Torvalds EtherLinkIII series, say Y and read the Ethernet-HOWTO, available 6311da177e4SLinus Torvalds from <http://www.tldp.org/docs.html#howto>. 6321da177e4SLinus Torvalds 6331da177e4SLinus Torvalds If your card is not working you may need to use the DOS 6341da177e4SLinus Torvalds setup disk to disable Plug & Play mode, and to select the default 6351da177e4SLinus Torvalds media type. 6361da177e4SLinus Torvalds 6371da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6381da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6391da177e4SLinus Torvalds will be called 3c509. 6401da177e4SLinus Torvalds 6411da177e4SLinus Torvaldsconfig 3C515 6421da177e4SLinus Torvalds tristate "3c515 ISA \"Fast EtherLink\"" 643a5532606SAl Viro depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API 6441da177e4SLinus Torvalds help 6451da177e4SLinus Torvalds If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet 6461da177e4SLinus Torvalds network card, say Y and read the Ethernet-HOWTO, available from 6471da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 6481da177e4SLinus Torvalds 6491da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6501da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6511da177e4SLinus Torvalds will be called 3c515. 6521da177e4SLinus Torvalds 6531da177e4SLinus Torvaldsconfig ELMC 6541da177e4SLinus Torvalds tristate "3c523 \"EtherLink/MC\" support" 6551da177e4SLinus Torvalds depends on NET_VENDOR_3COM && MCA_LEGACY 6561da177e4SLinus Torvalds help 6571da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 6581da177e4SLinus Torvalds the Ethernet-HOWTO, available from 6591da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6621da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6631da177e4SLinus Torvalds will be called 3c523. 6641da177e4SLinus Torvalds 6651da177e4SLinus Torvaldsconfig ELMC_II 6661da177e4SLinus Torvalds tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)" 6671da177e4SLinus Torvalds depends on NET_VENDOR_3COM && MCA && MCA_LEGACY 6681da177e4SLinus Torvalds help 6691da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 6701da177e4SLinus Torvalds the Ethernet-HOWTO, available from 6711da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 6721da177e4SLinus Torvalds 6731da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 6741da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 6751da177e4SLinus Torvalds will be called 3c527. 6761da177e4SLinus Torvalds 6771da177e4SLinus Torvaldsconfig VORTEX 6781da177e4SLinus Torvalds tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support" 6791da177e4SLinus Torvalds depends on NET_VENDOR_3COM && (PCI || EISA) 6801da177e4SLinus Torvalds select MII 6811da177e4SLinus Torvalds ---help--- 6821da177e4SLinus Torvalds This option enables driver support for a large number of 10mbps and 6831da177e4SLinus Torvalds 10/100mbps EISA, PCI and PCMCIA 3Com network cards: 6841da177e4SLinus Torvalds 6851da177e4SLinus Torvalds "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI 6861da177e4SLinus Torvalds "Boomerang" (EtherLink XL 3c900 or 3c905) PCI 6871da177e4SLinus Torvalds "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus 6881da177e4SLinus Torvalds "Tornado" (3c905) PCI 6891da177e4SLinus Torvalds "Hurricane" (3c555/3cSOHO) PCI 6901da177e4SLinus Torvalds 6911da177e4SLinus Torvalds If you have such a card, say Y and read the Ethernet-HOWTO, 6921da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. More 6931da177e4SLinus Torvalds specific information is in 6941da177e4SLinus Torvalds <file:Documentation/networking/vortex.txt> and in the comments at 6951da177e4SLinus Torvalds the beginning of <file:drivers/net/3c59x.c>. 6961da177e4SLinus Torvalds 6971da177e4SLinus Torvalds To compile this support as a module, choose M here and read 6981da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. 6991da177e4SLinus Torvalds 7001da177e4SLinus Torvaldsconfig TYPHOON 7011da177e4SLinus Torvalds tristate "3cr990 series \"Typhoon\" support" 7021da177e4SLinus Torvalds depends on NET_VENDOR_3COM && PCI 7031da177e4SLinus Torvalds select CRC32 7041da177e4SLinus Torvalds ---help--- 7051da177e4SLinus Torvalds This option enables driver support for the 3cr990 series of cards: 7061da177e4SLinus Torvalds 7071da177e4SLinus Torvalds 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97, 7081da177e4SLinus Torvalds 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server, 7091da177e4SLinus Torvalds 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR 7101da177e4SLinus Torvalds 7111da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 7121da177e4SLinus Torvalds the Ethernet-HOWTO, available from 7131da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 7141da177e4SLinus Torvalds 7151da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 7161da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 7171da177e4SLinus Torvalds will be called typhoon. 7181da177e4SLinus Torvalds 7191da177e4SLinus Torvaldsconfig LANCE 7201da177e4SLinus Torvalds tristate "AMD LANCE and PCnet (AT1500 and NE2100) support" 721a5532606SAl Viro depends on NET_ETHERNET && ISA && ISA_DMA_API 7221da177e4SLinus Torvalds help 7231da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 7241da177e4SLinus Torvalds the Ethernet-HOWTO, available from 7251da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are 7261da177e4SLinus Torvalds of this type. 7271da177e4SLinus Torvalds 7281da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 7291da177e4SLinus Torvalds will be called lance. This is recommended. 7301da177e4SLinus Torvalds 7311da177e4SLinus Torvaldsconfig NET_VENDOR_SMC 7321da177e4SLinus Torvalds bool "Western Digital/SMC cards" 7331da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || MCA || EISA || MAC) 7341da177e4SLinus Torvalds help 7351da177e4SLinus Torvalds If you have a network (Ethernet) card belonging to this class, say Y 7361da177e4SLinus Torvalds and read the Ethernet-HOWTO, available from 7371da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 7381da177e4SLinus Torvalds 7391da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 7401da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 7411da177e4SLinus Torvalds the questions about Western Digital cards. If you say Y, you will be 7421da177e4SLinus Torvalds asked for your specific card in the following questions. 7431da177e4SLinus Torvalds 7441da177e4SLinus Torvaldsconfig WD80x3 7451da177e4SLinus Torvalds tristate "WD80*3 support" 7461da177e4SLinus Torvalds depends on NET_VENDOR_SMC && ISA 7471da177e4SLinus Torvalds select CRC32 7481da177e4SLinus Torvalds help 7491da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 7501da177e4SLinus Torvalds the Ethernet-HOWTO, available from 7511da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 7521da177e4SLinus Torvalds 7531da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 7541da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 7551da177e4SLinus Torvalds will be called wd. 7561da177e4SLinus Torvalds 7571da177e4SLinus Torvaldsconfig ULTRAMCA 7581da177e4SLinus Torvalds tristate "SMC Ultra MCA support" 7591da177e4SLinus Torvalds depends on NET_VENDOR_SMC && MCA 7601da177e4SLinus Torvalds select CRC32 7611da177e4SLinus Torvalds help 7621da177e4SLinus Torvalds If you have a network (Ethernet) card of this type and are running 7631da177e4SLinus Torvalds an MCA based system (PS/2), say Y and read the Ethernet-HOWTO, 7641da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. 7651da177e4SLinus Torvalds 7661da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 7671da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 7681da177e4SLinus Torvalds will be called smc-mca. 7691da177e4SLinus Torvalds 7701da177e4SLinus Torvaldsconfig ULTRA 7711da177e4SLinus Torvalds tristate "SMC Ultra support" 7721da177e4SLinus Torvalds depends on NET_VENDOR_SMC && ISA 7731da177e4SLinus Torvalds select CRC32 7741da177e4SLinus Torvalds ---help--- 7751da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 7761da177e4SLinus Torvalds the Ethernet-HOWTO, available from 7771da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 7781da177e4SLinus Torvalds 7791da177e4SLinus Torvalds Important: There have been many reports that, with some motherboards 7801da177e4SLinus Torvalds mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible, 7811da177e4SLinus Torvalds such as some BusLogic models) causes corruption problems with many 7821da177e4SLinus Torvalds operating systems. The Linux smc-ultra driver has a work-around for 7831da177e4SLinus Torvalds this but keep it in mind if you have such a SCSI card and have 7841da177e4SLinus Torvalds problems. 7851da177e4SLinus Torvalds 7861da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 7871da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 7881da177e4SLinus Torvalds will be called smc-ultra. 7891da177e4SLinus Torvalds 7901da177e4SLinus Torvaldsconfig ULTRA32 7911da177e4SLinus Torvalds tristate "SMC Ultra32 EISA support" 7921da177e4SLinus Torvalds depends on NET_VENDOR_SMC && EISA 7931da177e4SLinus Torvalds select CRC32 7941da177e4SLinus Torvalds help 7951da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 7961da177e4SLinus Torvalds the Ethernet-HOWTO, available from 7971da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 7981da177e4SLinus Torvalds 7991da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 8001da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 8011da177e4SLinus Torvalds will be called smc-ultra32. 8021da177e4SLinus Torvalds 8031da177e4SLinus Torvaldsconfig SMC91X 8041da177e4SLinus Torvalds tristate "SMC 91C9x/91C1xxx support" 8051da177e4SLinus Torvalds select CRC32 8061da177e4SLinus Torvalds select MII 8071da177e4SLinus Torvalds depends on NET_ETHERNET && (ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH) 8081da177e4SLinus Torvalds help 8091da177e4SLinus Torvalds This is a driver for SMC's 91x series of Ethernet chipsets, 8101da177e4SLinus Torvalds including the SMC91C94 and the SMC91C111. Say Y if you want it 8111da177e4SLinus Torvalds compiled into the kernel, and read the file 8121da177e4SLinus Torvalds <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO, 8131da177e4SLinus Torvalds available from <http://www.linuxdoc.org/docs.html#howto>. 8141da177e4SLinus Torvalds 8151da177e4SLinus Torvalds This driver is also available as a module ( = code which can be 8161da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want). 8171da177e4SLinus Torvalds The module will be called smc91x. If you want to compile it as a 8181da177e4SLinus Torvalds module, say M here and read <file:Documentation/modules.txt> as well 8191da177e4SLinus Torvalds as <file:Documentation/networking/net-modules.txt>. 8201da177e4SLinus Torvalds 8211da177e4SLinus Torvaldsconfig SMC9194 8221da177e4SLinus Torvalds tristate "SMC 9194 support" 8231da177e4SLinus Torvalds depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN) 8241da177e4SLinus Torvalds select CRC32 8251da177e4SLinus Torvalds ---help--- 8261da177e4SLinus Torvalds This is support for the SMC9xxx based Ethernet cards. Choose this 8271da177e4SLinus Torvalds option if you have a DELL laptop with the docking station, or 8281da177e4SLinus Torvalds another SMC9192/9194 based chipset. Say Y if you want it compiled 8291da177e4SLinus Torvalds into the kernel, and read the file 8301da177e4SLinus Torvalds <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO, 8311da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. 8321da177e4SLinus Torvalds 8331da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 8341da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 8351da177e4SLinus Torvalds will be called smc9194. 8361da177e4SLinus Torvalds 837a1365275SSascha Hauerconfig DM9000 838a1365275SSascha Hauer tristate "DM9000 support" 839a1365275SSascha Hauer depends on ARM && NET_ETHERNET 840a1365275SSascha Hauer select CRC32 841a1365275SSascha Hauer select MII 842a1365275SSascha Hauer ---help--- 843a1365275SSascha Hauer Support for DM9000 chipset. 844a1365275SSascha Hauer 845a1365275SSascha Hauer To compile this driver as a module, choose M here and read 846a1365275SSascha Hauer <file:Documentation/networking/net-modules.txt>. The module will be 847a1365275SSascha Hauer called dm9000. 848a1365275SSascha Hauer 8491da177e4SLinus Torvaldsconfig NET_VENDOR_RACAL 8501da177e4SLinus Torvalds bool "Racal-Interlan (Micom) NI cards" 8511da177e4SLinus Torvalds depends on NET_ETHERNET && ISA 8521da177e4SLinus Torvalds help 8531da177e4SLinus Torvalds If you have a network (Ethernet) card belonging to this class, such 8541da177e4SLinus Torvalds as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO, 8551da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. 8561da177e4SLinus Torvalds 8571da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 8581da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 8591da177e4SLinus Torvalds the questions about NI cards. If you say Y, you will be asked for 8601da177e4SLinus Torvalds your specific card in the following questions. 8611da177e4SLinus Torvalds 8621da177e4SLinus Torvaldsconfig NI5010 8631da177e4SLinus Torvalds tristate "NI5010 support (EXPERIMENTAL)" 8641da177e4SLinus Torvalds depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP 8651da177e4SLinus Torvalds ---help--- 8661da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 8671da177e4SLinus Torvalds the Ethernet-HOWTO, available from 8681da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Note that this is still 8691da177e4SLinus Torvalds experimental code. 8701da177e4SLinus Torvalds 8711da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 8721da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 8731da177e4SLinus Torvalds will be called ni5010. 8741da177e4SLinus Torvalds 8751da177e4SLinus Torvaldsconfig NI52 8761da177e4SLinus Torvalds tristate "NI5210 support" 8771da177e4SLinus Torvalds depends on NET_VENDOR_RACAL && ISA 8781da177e4SLinus Torvalds help 8791da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 8801da177e4SLinus Torvalds the Ethernet-HOWTO, available from 8811da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 8821da177e4SLinus Torvalds 8831da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 8841da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 8851da177e4SLinus Torvalds will be called ni52. 8861da177e4SLinus Torvalds 8871da177e4SLinus Torvaldsconfig NI65 8881da177e4SLinus Torvalds tristate "NI6510 support" 889a5532606SAl Viro depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API 8901da177e4SLinus Torvalds help 8911da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 8921da177e4SLinus Torvalds the Ethernet-HOWTO, available from 8931da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 8941da177e4SLinus Torvalds 8951da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 8961da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 8971da177e4SLinus Torvalds will be called ni65. 8981da177e4SLinus Torvalds 8991da177e4SLinus Torvaldssource "drivers/net/tulip/Kconfig" 9001da177e4SLinus Torvalds 9011da177e4SLinus Torvaldsconfig AT1700 9021da177e4SLinus Torvalds tristate "AT1700/1720 support (EXPERIMENTAL)" 9031da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || MCA_LEGACY) && EXPERIMENTAL 9041da177e4SLinus Torvalds select CRC32 9051da177e4SLinus Torvalds ---help--- 9061da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 9071da177e4SLinus Torvalds the Ethernet-HOWTO, available from 9081da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 9091da177e4SLinus Torvalds 9101da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9111da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9121da177e4SLinus Torvalds will be called at1700. 9131da177e4SLinus Torvalds 9141da177e4SLinus Torvaldsconfig DEPCA 9151da177e4SLinus Torvalds tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support" 9161da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || EISA || MCA) 9171da177e4SLinus Torvalds select CRC32 9181da177e4SLinus Torvalds ---help--- 9191da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 9201da177e4SLinus Torvalds the Ethernet-HOWTO, available from 9211da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto> as well as 9221da177e4SLinus Torvalds <file:drivers/net/depca.c>. 9231da177e4SLinus Torvalds 9241da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9251da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9261da177e4SLinus Torvalds will be called depca. 9271da177e4SLinus Torvalds 9281da177e4SLinus Torvaldsconfig HP100 9291da177e4SLinus Torvalds tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support" 9301da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || EISA || PCI) 9311da177e4SLinus Torvalds help 9321da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 9331da177e4SLinus Torvalds the Ethernet-HOWTO, available from 9341da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 9351da177e4SLinus Torvalds 9361da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9371da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9381da177e4SLinus Torvalds will be called hp100. 9391da177e4SLinus Torvalds 9401da177e4SLinus Torvaldsconfig NET_ISA 9411da177e4SLinus Torvalds bool "Other ISA cards" 9421da177e4SLinus Torvalds depends on NET_ETHERNET && ISA 9431da177e4SLinus Torvalds ---help--- 9441da177e4SLinus Torvalds If your network (Ethernet) card hasn't been mentioned yet and its 9451da177e4SLinus Torvalds bus system (that's the way the cards talks to the other components 9461da177e4SLinus Torvalds of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y. 9471da177e4SLinus Torvalds Make sure you know the name of your card. Read the Ethernet-HOWTO, 9481da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. 9491da177e4SLinus Torvalds 9501da177e4SLinus Torvalds If unsure, say Y. 9511da177e4SLinus Torvalds 9521da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 9531da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 9541da177e4SLinus Torvalds the remaining ISA network card questions. If you say Y, you will be 9551da177e4SLinus Torvalds asked for your specific card in the following questions. 9561da177e4SLinus Torvalds 9571da177e4SLinus Torvaldsconfig E2100 9581da177e4SLinus Torvalds tristate "Cabletron E21xx support" 9591da177e4SLinus Torvalds depends on NET_ISA 9601da177e4SLinus Torvalds select CRC32 9611da177e4SLinus Torvalds help 9621da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 9631da177e4SLinus Torvalds the Ethernet-HOWTO, available from 9641da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 9651da177e4SLinus Torvalds 9661da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9671da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9681da177e4SLinus Torvalds will be called e2100. 9691da177e4SLinus Torvalds 9701da177e4SLinus Torvaldsconfig EWRK3 9711da177e4SLinus Torvalds tristate "EtherWORKS 3 (DE203, DE204, DE205) support" 9721da177e4SLinus Torvalds depends on NET_ISA 9731da177e4SLinus Torvalds select CRC32 9741da177e4SLinus Torvalds ---help--- 9751da177e4SLinus Torvalds This driver supports the DE203, DE204 and DE205 network (Ethernet) 9761da177e4SLinus Torvalds cards. If this is for you, say Y and read 9771da177e4SLinus Torvalds <file:Documentation/networking/ewrk3.txt> in the kernel source as 9781da177e4SLinus Torvalds well as the Ethernet-HOWTO, available from 9791da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 9801da177e4SLinus Torvalds 9811da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9821da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9831da177e4SLinus Torvalds will be called ewrk3. 9841da177e4SLinus Torvalds 9851da177e4SLinus Torvaldsconfig EEXPRESS 9861da177e4SLinus Torvalds tristate "EtherExpress 16 support" 9871da177e4SLinus Torvalds depends on NET_ISA 9881da177e4SLinus Torvalds ---help--- 9891da177e4SLinus Torvalds If you have an EtherExpress16 network (Ethernet) card, say Y and 9901da177e4SLinus Torvalds read the Ethernet-HOWTO, available from 9911da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Note that the Intel 9921da177e4SLinus Torvalds EtherExpress16 card used to be regarded as a very poor choice 9931da177e4SLinus Torvalds because the driver was very unreliable. We now have a new driver 9941da177e4SLinus Torvalds that should do better. 9951da177e4SLinus Torvalds 9961da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 9971da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 9981da177e4SLinus Torvalds will be called eexpress. 9991da177e4SLinus Torvalds 10001da177e4SLinus Torvaldsconfig EEXPRESS_PRO 10011da177e4SLinus Torvalds tristate "EtherExpressPro support/EtherExpress 10 (i82595) support" 10021da177e4SLinus Torvalds depends on NET_ISA 10031da177e4SLinus Torvalds ---help--- 10041da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y. This 10051da177e4SLinus Torvalds driver supports intel i82595{FX,TX} based boards. Note however 10061da177e4SLinus Torvalds that the EtherExpress PRO/100 Ethernet card has its own separate 10071da177e4SLinus Torvalds driver. Please read the Ethernet-HOWTO, available from 10081da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10091da177e4SLinus Torvalds 10101da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10111da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 10121da177e4SLinus Torvalds will be called eepro. 10131da177e4SLinus Torvalds 10141da177e4SLinus Torvaldsconfig HPLAN_PLUS 10151da177e4SLinus Torvalds tristate "HP PCLAN+ (27247B and 27252A) support" 10161da177e4SLinus Torvalds depends on NET_ISA 10171da177e4SLinus Torvalds select CRC32 10181da177e4SLinus Torvalds help 10191da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 10201da177e4SLinus Torvalds the Ethernet-HOWTO, available from 10211da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10221da177e4SLinus Torvalds 10231da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10241da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 10251da177e4SLinus Torvalds will be called hp-plus. 10261da177e4SLinus Torvalds 10271da177e4SLinus Torvaldsconfig HPLAN 10281da177e4SLinus Torvalds tristate "HP PCLAN (27245 and other 27xxx series) support" 10291da177e4SLinus Torvalds depends on NET_ISA 10301da177e4SLinus Torvalds select CRC32 10311da177e4SLinus Torvalds help 10321da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 10331da177e4SLinus Torvalds the Ethernet-HOWTO, available from 10341da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10351da177e4SLinus Torvalds 10361da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10371da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 10381da177e4SLinus Torvalds will be called hp. 10391da177e4SLinus Torvalds 10401da177e4SLinus Torvaldsconfig LP486E 10411da177e4SLinus Torvalds tristate "LP486E on board Ethernet" 10421da177e4SLinus Torvalds depends on NET_ISA 10431da177e4SLinus Torvalds help 10441da177e4SLinus Torvalds Say Y here to support the 82596-based on-board Ethernet controller 10451da177e4SLinus Torvalds for the Panther motherboard, which is one of the two shipped in the 10461da177e4SLinus Torvalds Intel Professional Workstation. 10471da177e4SLinus Torvalds 10481da177e4SLinus Torvaldsconfig ETH16I 10491da177e4SLinus Torvalds tristate "ICL EtherTeam 16i/32 support" 10501da177e4SLinus Torvalds depends on NET_ISA 10511da177e4SLinus Torvalds help 10521da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 10531da177e4SLinus Torvalds the Ethernet-HOWTO, available from 10541da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10551da177e4SLinus Torvalds 10561da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10571da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 10581da177e4SLinus Torvalds will be called eth16i. 10591da177e4SLinus Torvalds 10601da177e4SLinus Torvaldsconfig NE2000 10611da177e4SLinus Torvalds tristate "NE2000/NE1000 support" 10621da177e4SLinus Torvalds depends on NET_ISA || (Q40 && m) || M32R 10631da177e4SLinus Torvalds select CRC32 10641da177e4SLinus Torvalds ---help--- 10651da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 10661da177e4SLinus Torvalds the Ethernet-HOWTO, available from 10671da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Many Ethernet cards 10681da177e4SLinus Torvalds without a specific driver are compatible with NE2000. 10691da177e4SLinus Torvalds 10701da177e4SLinus Torvalds If you have a PCI NE2000 card however, say N here and Y to "PCI 10711da177e4SLinus Torvalds NE2000 support", above. If you have a NE2000 card and are running on 10721da177e4SLinus Torvalds an MCA system (a bus system used on some IBM PS/2 computers and 10731da177e4SLinus Torvalds laptops), say N here and Y to "NE/2 (ne2000 MCA version) support", 10741da177e4SLinus Torvalds below. 10751da177e4SLinus Torvalds 10761da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10771da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 10781da177e4SLinus Torvalds will be called ne. 10791da177e4SLinus Torvalds 10801da177e4SLinus Torvaldsconfig ZNET 10811da177e4SLinus Torvalds tristate "Zenith Z-Note support (EXPERIMENTAL)" 1082a5532606SAl Viro depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API 10831da177e4SLinus Torvalds help 10841da177e4SLinus Torvalds The Zenith Z-Note notebook computer has a built-in network 10851da177e4SLinus Torvalds (Ethernet) card, and this is the Linux driver for it. Note that the 10861da177e4SLinus Torvalds IBM Thinkpad 300 is compatible with the Z-Note and is also supported 10871da177e4SLinus Torvalds by this driver. Read the Ethernet-HOWTO, available from 10881da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10891da177e4SLinus Torvalds 10901da177e4SLinus Torvaldsconfig SEEQ8005 10911da177e4SLinus Torvalds tristate "SEEQ8005 support (EXPERIMENTAL)" 10921da177e4SLinus Torvalds depends on NET_ISA && EXPERIMENTAL 10931da177e4SLinus Torvalds help 10941da177e4SLinus Torvalds This is a driver for the SEEQ 8005 network (Ethernet) card. If this 10951da177e4SLinus Torvalds is for you, read the Ethernet-HOWTO, available from 10961da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 10971da177e4SLinus Torvalds 10981da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 10991da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 11001da177e4SLinus Torvalds will be called seeq8005. 11011da177e4SLinus Torvalds 11021da177e4SLinus Torvaldsconfig SKMC 11031da177e4SLinus Torvalds tristate "SKnet MCA support" 11041da177e4SLinus Torvalds depends on NET_ETHERNET && MCA && BROKEN 11051da177e4SLinus Torvalds ---help--- 11061da177e4SLinus Torvalds These are Micro Channel Ethernet adapters. You need to say Y to "MCA 11071da177e4SLinus Torvalds support" in order to use this driver. Supported cards are the SKnet 11081da177e4SLinus Torvalds Junior MC2 and the SKnet MC2(+). The driver automatically 11091da177e4SLinus Torvalds distinguishes between the two cards. Note that using multiple boards 11101da177e4SLinus Torvalds of different type hasn't been tested with this driver. Say Y if you 11111da177e4SLinus Torvalds have one of these Ethernet adapters. 11121da177e4SLinus Torvalds 11131da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 11141da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 11151da177e4SLinus Torvalds will be called sk_mca. 11161da177e4SLinus Torvalds 11171da177e4SLinus Torvaldsconfig NE2_MCA 11181da177e4SLinus Torvalds tristate "NE/2 (ne2000 MCA version) support" 11191da177e4SLinus Torvalds depends on NET_ETHERNET && MCA_LEGACY 11201da177e4SLinus Torvalds select CRC32 11211da177e4SLinus Torvalds help 11221da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 11231da177e4SLinus Torvalds the Ethernet-HOWTO, available from 11241da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 11251da177e4SLinus Torvalds 11261da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 11271da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 11281da177e4SLinus Torvalds will be called ne2. 11291da177e4SLinus Torvalds 11301da177e4SLinus Torvaldsconfig IBMLANA 11311da177e4SLinus Torvalds tristate "IBM LAN Adapter/A support" 11321da177e4SLinus Torvalds depends on NET_ETHERNET && MCA && MCA_LEGACY 11331da177e4SLinus Torvalds ---help--- 11341da177e4SLinus Torvalds This is a Micro Channel Ethernet adapter. You need to set 11351da177e4SLinus Torvalds CONFIG_MCA to use this driver. It is both available as an in-kernel 11361da177e4SLinus Torvalds driver and as a module. 11371da177e4SLinus Torvalds 11381da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 11391da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The only 11401da177e4SLinus Torvalds currently supported card is the IBM LAN Adapter/A for Ethernet. It 11411da177e4SLinus Torvalds will both support 16K and 32K memory windows, however a 32K window 11421da177e4SLinus Torvalds gives a better security against packet losses. Usage of multiple 11431da177e4SLinus Torvalds boards with this driver should be possible, but has not been tested 11441da177e4SLinus Torvalds up to now due to lack of hardware. 11451da177e4SLinus Torvalds 11461da177e4SLinus Torvaldsconfig IBMVETH 11471da177e4SLinus Torvalds tristate "IBM LAN Virtual Ethernet support" 1148cbcd2a4cSRandy Dunlap depends on NET_ETHERNET && PPC_PSERIES 11491da177e4SLinus Torvalds ---help--- 11501da177e4SLinus Torvalds This driver supports virtual ethernet adapters on newer IBM iSeries 11511da177e4SLinus Torvalds and pSeries systems. 11521da177e4SLinus Torvalds 11531da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 11541da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will 11551da177e4SLinus Torvalds be called ibmveth. 11561da177e4SLinus Torvalds 11571da177e4SLinus Torvaldsconfig IBM_EMAC 1158997183dcSAl Viro bool "IBM PPC4xx EMAC driver support" 11591da177e4SLinus Torvalds depends on 4xx 11601da177e4SLinus Torvalds select CRC32 11611da177e4SLinus Torvalds ---help--- 11621da177e4SLinus Torvalds This driver supports the IBM PPC4xx EMAC family of on-chip 11631da177e4SLinus Torvalds Ethernet controllers. 11641da177e4SLinus Torvalds 11651da177e4SLinus Torvaldsconfig IBM_EMAC_ERRMSG 11661da177e4SLinus Torvalds bool "Verbose error messages" 1167997183dcSAl Viro depends on IBM_EMAC && BROKEN 11681da177e4SLinus Torvalds 11691da177e4SLinus Torvaldsconfig IBM_EMAC_RXB 11701da177e4SLinus Torvalds int "Number of receive buffers" 11711da177e4SLinus Torvalds depends on IBM_EMAC 11721da177e4SLinus Torvalds default "128" if IBM_EMAC4 11731da177e4SLinus Torvalds default "64" 11741da177e4SLinus Torvalds 11751da177e4SLinus Torvaldsconfig IBM_EMAC_TXB 11761da177e4SLinus Torvalds int "Number of transmit buffers" 11771da177e4SLinus Torvalds depends on IBM_EMAC 11781da177e4SLinus Torvalds default "128" if IBM_EMAC4 11791da177e4SLinus Torvalds default "8" 11801da177e4SLinus Torvalds 11811da177e4SLinus Torvaldsconfig IBM_EMAC_FGAP 11821da177e4SLinus Torvalds int "Frame gap" 11831da177e4SLinus Torvalds depends on IBM_EMAC 11841da177e4SLinus Torvalds default "8" 11851da177e4SLinus Torvalds 11861da177e4SLinus Torvaldsconfig IBM_EMAC_SKBRES 11871da177e4SLinus Torvalds int "Skb reserve amount" 11881da177e4SLinus Torvalds depends on IBM_EMAC 11891da177e4SLinus Torvalds default "0" 11901da177e4SLinus Torvalds 11911da177e4SLinus Torvaldsconfig NET_PCI 11921da177e4SLinus Torvalds bool "EISA, VLB, PCI and on board controllers" 11931da177e4SLinus Torvalds depends on NET_ETHERNET && (ISA || EISA || PCI) 11941da177e4SLinus Torvalds help 11951da177e4SLinus Torvalds This is another class of network cards which attach directly to the 11961da177e4SLinus Torvalds bus. If you have one of those, say Y and read the Ethernet-HOWTO, 11971da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>. 11981da177e4SLinus Torvalds 11991da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 12001da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 12011da177e4SLinus Torvalds the questions about this class of network cards. If you say Y, you 12021da177e4SLinus Torvalds will be asked for your specific card in the following questions. If 12031da177e4SLinus Torvalds you are unsure, say Y. 12041da177e4SLinus Torvalds 12051da177e4SLinus Torvaldsconfig PCNET32 12061da177e4SLinus Torvalds tristate "AMD PCnet32 PCI support" 12071da177e4SLinus Torvalds depends on NET_PCI && PCI 12081da177e4SLinus Torvalds select CRC32 12091da177e4SLinus Torvalds select MII 12101da177e4SLinus Torvalds help 12111da177e4SLinus Torvalds If you have a PCnet32 or PCnetPCI based network (Ethernet) card, 12121da177e4SLinus Torvalds answer Y here and read the Ethernet-HOWTO, available from 12131da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 12141da177e4SLinus Torvalds 12151da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 12161da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 12171da177e4SLinus Torvalds will be called pcnet32. 12181da177e4SLinus Torvalds 12191da177e4SLinus Torvaldsconfig AMD8111_ETH 12201da177e4SLinus Torvalds tristate "AMD 8111 (new PCI lance) support" 12211da177e4SLinus Torvalds depends on NET_PCI && PCI 12221da177e4SLinus Torvalds select CRC32 12231da177e4SLinus Torvalds select MII 12241da177e4SLinus Torvalds help 12251da177e4SLinus Torvalds If you have an AMD 8111-based PCI lance ethernet card, 12261da177e4SLinus Torvalds answer Y here and read the Ethernet-HOWTO, available from 12271da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 12281da177e4SLinus Torvalds 12291da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 12301da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 12311da177e4SLinus Torvalds will be called amd8111e. 12321da177e4SLinus Torvaldsconfig AMD8111E_NAPI 12331da177e4SLinus Torvalds bool "Enable NAPI support" 12341da177e4SLinus Torvalds depends on AMD8111_ETH 12351da177e4SLinus Torvalds help 12361da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 12371da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 12381da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 12391da177e4SLinus Torvalds 12401da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 12411da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 12421da177e4SLinus Torvalds then say Y here. 12431da177e4SLinus Torvalds 12441da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 12451da177e4SLinus Torvalds information. 12461da177e4SLinus Torvalds 12471da177e4SLinus Torvalds If in doubt, say N. 12481da177e4SLinus Torvalds 12491da177e4SLinus Torvaldsconfig ADAPTEC_STARFIRE 12501da177e4SLinus Torvalds tristate "Adaptec Starfire/DuraLAN support" 12511da177e4SLinus Torvalds depends on NET_PCI && PCI 12521da177e4SLinus Torvalds select CRC32 12531da177e4SLinus Torvalds select MII 12541da177e4SLinus Torvalds help 12551da177e4SLinus Torvalds Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network 12561da177e4SLinus Torvalds adapter. The DuraLAN chip is used on the 64 bit PCI boards from 12571da177e4SLinus Torvalds Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip 12581da177e4SLinus Torvalds driver. 12591da177e4SLinus Torvalds 12601da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 12611da177e4SLinus Torvalds will be called starfire. This is recommended. 12621da177e4SLinus Torvalds 12631da177e4SLinus Torvaldsconfig ADAPTEC_STARFIRE_NAPI 12641da177e4SLinus Torvalds bool "Use Rx Polling (NAPI) (EXPERIMENTAL)" 12651da177e4SLinus Torvalds depends on ADAPTEC_STARFIRE && EXPERIMENTAL 12661da177e4SLinus Torvalds help 12671da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 12681da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 12691da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 12701da177e4SLinus Torvalds 12711da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 12721da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 12731da177e4SLinus Torvalds then say Y here. 12741da177e4SLinus Torvalds 12751da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 12761da177e4SLinus Torvalds information. 12771da177e4SLinus Torvalds 12781da177e4SLinus Torvalds If in doubt, say N. 12791da177e4SLinus Torvalds 12801da177e4SLinus Torvaldsconfig AC3200 12811da177e4SLinus Torvalds tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)" 12821da177e4SLinus Torvalds depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL 12831da177e4SLinus Torvalds select CRC32 12841da177e4SLinus Torvalds help 12851da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 12861da177e4SLinus Torvalds the Ethernet-HOWTO, available from 12871da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 12881da177e4SLinus Torvalds 12891da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 12901da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 12911da177e4SLinus Torvalds will be called ac3200. 12921da177e4SLinus Torvalds 12931da177e4SLinus Torvaldsconfig APRICOT 12941da177e4SLinus Torvalds tristate "Apricot Xen-II on board Ethernet" 12951da177e4SLinus Torvalds depends on NET_PCI && ISA 12961da177e4SLinus Torvalds help 12971da177e4SLinus Torvalds If you have a network (Ethernet) controller of this type, say Y and 12981da177e4SLinus Torvalds read the Ethernet-HOWTO, available from 12991da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 13001da177e4SLinus Torvalds 13011da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13021da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 13031da177e4SLinus Torvalds called apricot. 13041da177e4SLinus Torvalds 13051da177e4SLinus Torvaldsconfig B44 13061da177e4SLinus Torvalds tristate "Broadcom 4400 ethernet support (EXPERIMENTAL)" 13071da177e4SLinus Torvalds depends on NET_PCI && PCI && EXPERIMENTAL 13081da177e4SLinus Torvalds select MII 13091da177e4SLinus Torvalds help 13101da177e4SLinus Torvalds If you have a network (Ethernet) controller of this type, say Y and 13111da177e4SLinus Torvalds read the Ethernet-HOWTO, available from 13121da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 13131da177e4SLinus Torvalds 13141da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13151da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 13161da177e4SLinus Torvalds called b44. 13171da177e4SLinus Torvalds 13181da177e4SLinus Torvaldsconfig FORCEDETH 13191da177e4SLinus Torvalds tristate "Reverse Engineered nForce Ethernet support (EXPERIMENTAL)" 13201da177e4SLinus Torvalds depends on NET_PCI && PCI && EXPERIMENTAL 13211da177e4SLinus Torvalds help 13221da177e4SLinus Torvalds If you have a network (Ethernet) controller of this type, say Y and 13231da177e4SLinus Torvalds read the Ethernet-HOWTO, available from 13241da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 13251da177e4SLinus Torvalds 13261da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13271da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 13281da177e4SLinus Torvalds called forcedeth. 13291da177e4SLinus Torvalds 13301da177e4SLinus Torvalds 13311da177e4SLinus Torvaldsconfig CS89x0 13321da177e4SLinus Torvalds tristate "CS89x0 support" 13330dd3c781Sdmitry pervushin depends on (NET_PCI && (ISA || ARCH_IXDP2X01)) || ARCH_PNX0105 13341da177e4SLinus Torvalds ---help--- 13351da177e4SLinus Torvalds Support for CS89x0 chipset based Ethernet cards. If you have a 13361da177e4SLinus Torvalds network (Ethernet) card of this type, say Y and read the 13371da177e4SLinus Torvalds Ethernet-HOWTO, available from 13381da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto> as well as 13391da177e4SLinus Torvalds <file:Documentation/networking/cs89x0.txt>. 13401da177e4SLinus Torvalds 13411da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13421da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 13431da177e4SLinus Torvalds called cs89x. 13441da177e4SLinus Torvalds 13451da177e4SLinus Torvaldsconfig TC35815 13461da177e4SLinus Torvalds tristate "TOSHIBA TC35815 Ethernet support" 13471da177e4SLinus Torvalds depends on NET_PCI && PCI && TOSHIBA_JMR3927 13481da177e4SLinus Torvalds 13491da177e4SLinus Torvaldsconfig DGRS 13501da177e4SLinus Torvalds tristate "Digi Intl. RightSwitch SE-X support" 13511da177e4SLinus Torvalds depends on NET_PCI && (PCI || EISA) 13521da177e4SLinus Torvalds ---help--- 13531da177e4SLinus Torvalds This is support for the Digi International RightSwitch series of 13541da177e4SLinus Torvalds PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6 13551da177e4SLinus Torvalds models. If you have a network card of this type, say Y and read the 13561da177e4SLinus Torvalds Ethernet-HOWTO, available from 13571da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. More specific 13581da177e4SLinus Torvalds information is contained in <file:Documentation/networking/dgrs.txt>. 13591da177e4SLinus Torvalds 13601da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13611da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 13621da177e4SLinus Torvalds will be called dgrs. 13631da177e4SLinus Torvalds 13641da177e4SLinus Torvaldsconfig EEPRO100 13651da177e4SLinus Torvalds tristate "EtherExpressPro/100 support (eepro100, original Becker driver)" 13661da177e4SLinus Torvalds depends on NET_PCI && PCI 13671da177e4SLinus Torvalds select MII 13681da177e4SLinus Torvalds help 13691da177e4SLinus Torvalds If you have an Intel EtherExpress PRO/100 PCI network (Ethernet) 13701da177e4SLinus Torvalds card, say Y and read the Ethernet-HOWTO, available from 13711da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 13721da177e4SLinus Torvalds 13731da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 13741da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 13751da177e4SLinus Torvalds will be called eepro100. 13761da177e4SLinus Torvalds 13771da177e4SLinus Torvalds 13781da177e4SLinus Torvaldsconfig E100 13791da177e4SLinus Torvalds tristate "Intel(R) PRO/100+ support" 13801da177e4SLinus Torvalds depends on NET_PCI && PCI 13811da177e4SLinus Torvalds select MII 13821da177e4SLinus Torvalds ---help--- 13831da177e4SLinus Torvalds This driver supports Intel(R) PRO/100 family of adapters. 13841da177e4SLinus Torvalds To verify that your adapter is supported, find the board ID number 13851da177e4SLinus Torvalds on the adapter. Look for a label that has a barcode and a number 13861da177e4SLinus Torvalds in the format 123456-001 (six digits hyphen three digits). 13871da177e4SLinus Torvalds 13881da177e4SLinus Torvalds Use the above information and the Adapter & Driver ID Guide at: 13891da177e4SLinus Torvalds 13901da177e4SLinus Torvalds <http://support.intel.com/support/network/adapter/pro100/21397.htm> 13911da177e4SLinus Torvalds 13921da177e4SLinus Torvalds to identify the adapter. 13931da177e4SLinus Torvalds 13941da177e4SLinus Torvalds For the latest Intel PRO/100 network driver for Linux, see: 13951da177e4SLinus Torvalds 13961da177e4SLinus Torvalds <http://appsr.intel.com/scripts-df/support_intel.asp> 13971da177e4SLinus Torvalds 13981da177e4SLinus Torvalds More specific information on configuring the driver is in 13991da177e4SLinus Torvalds <file:Documentation/networking/e100.txt>. 14001da177e4SLinus Torvalds 14011da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 14021da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 14031da177e4SLinus Torvalds will be called e100. 14041da177e4SLinus Torvalds 14051da177e4SLinus Torvaldsconfig LNE390 14061da177e4SLinus Torvalds tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)" 14071da177e4SLinus Torvalds depends on NET_PCI && EISA && EXPERIMENTAL 14081da177e4SLinus Torvalds select CRC32 14091da177e4SLinus Torvalds help 14101da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 14111da177e4SLinus Torvalds the Ethernet-HOWTO, available from 14121da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 14131da177e4SLinus Torvalds 14141da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 14151da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 14161da177e4SLinus Torvalds will be called lne390. 14171da177e4SLinus Torvalds 14181da177e4SLinus Torvaldsconfig FEALNX 14191da177e4SLinus Torvalds tristate "Myson MTD-8xx PCI Ethernet support" 14201da177e4SLinus Torvalds depends on NET_PCI && PCI 14211da177e4SLinus Torvalds select CRC32 14221da177e4SLinus Torvalds select MII 14231da177e4SLinus Torvalds help 14241da177e4SLinus Torvalds Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet 14251da177e4SLinus Torvalds cards. Specifications and data at 14261da177e4SLinus Torvalds <http://www.myson.com.hk/mtd/datasheet/>. 14271da177e4SLinus Torvalds 14281da177e4SLinus Torvaldsconfig NATSEMI 14291da177e4SLinus Torvalds tristate "National Semiconductor DP8381x series PCI Ethernet support" 14301da177e4SLinus Torvalds depends on NET_PCI && PCI 14311da177e4SLinus Torvalds select CRC32 14321da177e4SLinus Torvalds help 14331da177e4SLinus Torvalds This driver is for the National Semiconductor DP83810 series, 14341da177e4SLinus Torvalds which is used in cards from PureData, NetGear, Linksys 14351da177e4SLinus Torvalds and others, including the 83815 chip. 14361da177e4SLinus Torvalds More specific information and updates are available from 14371da177e4SLinus Torvalds <http://www.scyld.com/network/natsemi.html>. 14381da177e4SLinus Torvalds 14391da177e4SLinus Torvaldsconfig NE2K_PCI 14401da177e4SLinus Torvalds tristate "PCI NE2000 and clones support (see help)" 14411da177e4SLinus Torvalds depends on NET_PCI && PCI 14421da177e4SLinus Torvalds select CRC32 14431da177e4SLinus Torvalds ---help--- 14441da177e4SLinus Torvalds This driver is for NE2000 compatible PCI cards. It will not work 14451da177e4SLinus Torvalds with ISA NE2000 cards (they have their own driver, "NE2000/NE1000 14461da177e4SLinus Torvalds support" below). If you have a PCI NE2000 network (Ethernet) card, 14471da177e4SLinus Torvalds say Y and read the Ethernet-HOWTO, available from 14481da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 14491da177e4SLinus Torvalds 14501da177e4SLinus Torvalds This driver also works for the following NE2000 clone cards: 14511da177e4SLinus Torvalds RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2 14521da177e4SLinus Torvalds NetVin NV5000SC Via 86C926 SureCom NE34 Winbond 14531da177e4SLinus Torvalds Holtek HT80232 Holtek HT80229 14541da177e4SLinus Torvalds 14551da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 14561da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 14571da177e4SLinus Torvalds will be called ne2k-pci. 14581da177e4SLinus Torvalds 14591da177e4SLinus Torvaldsconfig NE3210 14601da177e4SLinus Torvalds tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)" 14611da177e4SLinus Torvalds depends on NET_PCI && EISA && EXPERIMENTAL 14621da177e4SLinus Torvalds select CRC32 14631da177e4SLinus Torvalds ---help--- 14641da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 14651da177e4SLinus Torvalds the Ethernet-HOWTO, available from 14661da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Note that this driver 14671da177e4SLinus Torvalds will NOT WORK for NE3200 cards as they are completely different. 14681da177e4SLinus Torvalds 14691da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 14701da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 14711da177e4SLinus Torvalds will be called ne3210. 14721da177e4SLinus Torvalds 14731da177e4SLinus Torvaldsconfig ES3210 14741da177e4SLinus Torvalds tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)" 14751da177e4SLinus Torvalds depends on NET_PCI && EISA && EXPERIMENTAL 14761da177e4SLinus Torvalds select CRC32 14771da177e4SLinus Torvalds help 14781da177e4SLinus Torvalds If you have a network (Ethernet) card of this type, say Y and read 14791da177e4SLinus Torvalds the Ethernet-HOWTO, available from 14801da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 14811da177e4SLinus Torvalds 14821da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 14831da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 14841da177e4SLinus Torvalds will be called es3210. 14851da177e4SLinus Torvalds 14861da177e4SLinus Torvaldsconfig 8139CP 14871da177e4SLinus Torvalds tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)" 14881da177e4SLinus Torvalds depends on NET_PCI && PCI && EXPERIMENTAL 14891da177e4SLinus Torvalds select CRC32 14901da177e4SLinus Torvalds select MII 14911da177e4SLinus Torvalds help 14921da177e4SLinus Torvalds This is a driver for the Fast Ethernet PCI network cards based on 14931da177e4SLinus Torvalds the RTL8139C+ chips. If you have one of those, say Y and read 14941da177e4SLinus Torvalds the Ethernet-HOWTO, available from 14951da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 14961da177e4SLinus Torvalds 14971da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 14981da177e4SLinus Torvalds will be called 8139cp. This is recommended. 14991da177e4SLinus Torvalds 15001da177e4SLinus Torvaldsconfig 8139TOO 1501f04e3f09SAdrian Bunk tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support" 15021da177e4SLinus Torvalds depends on NET_PCI && PCI 15031da177e4SLinus Torvalds select CRC32 15041da177e4SLinus Torvalds select MII 15051da177e4SLinus Torvalds ---help--- 15061da177e4SLinus Torvalds This is a driver for the Fast Ethernet PCI network cards based on 1507f04e3f09SAdrian Bunk the RTL 8129/8130/8139 chips. If you have one of those, say Y and 1508f04e3f09SAdrian Bunk read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>. 15091da177e4SLinus Torvalds 15101da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 15111da177e4SLinus Torvalds will be called 8139too. This is recommended. 15121da177e4SLinus Torvalds 15131da177e4SLinus Torvaldsconfig 8139TOO_PIO 15141da177e4SLinus Torvalds bool "Use PIO instead of MMIO" 15151da177e4SLinus Torvalds default y 15161da177e4SLinus Torvalds depends on 8139TOO 15171da177e4SLinus Torvalds help 15181da177e4SLinus Torvalds This instructs the driver to use programmed I/O ports (PIO) instead 15191da177e4SLinus Torvalds of PCI shared memory (MMIO). This can possibly solve some problems 15201da177e4SLinus Torvalds in case your mainboard has memory consistency issues. If unsure, 15211da177e4SLinus Torvalds say N. 15221da177e4SLinus Torvalds 15231da177e4SLinus Torvaldsconfig 8139TOO_TUNE_TWISTER 15241da177e4SLinus Torvalds bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)" 15251da177e4SLinus Torvalds depends on 8139TOO 15261da177e4SLinus Torvalds help 15271da177e4SLinus Torvalds This implements a function which might come in handy in case you 15281da177e4SLinus Torvalds are using low quality on long cabling. It is required for RealTek 15291da177e4SLinus Torvalds RTL-8139 revision K boards, and totally unused otherwise. It tries 15301da177e4SLinus Torvalds to match the transceiver to the cable characteristics. This is 15311da177e4SLinus Torvalds experimental since hardly documented by the manufacturer. 15321da177e4SLinus Torvalds If unsure, say Y. 15331da177e4SLinus Torvalds 15341da177e4SLinus Torvaldsconfig 8139TOO_8129 15351da177e4SLinus Torvalds bool "Support for older RTL-8129/8130 boards" 15361da177e4SLinus Torvalds depends on 8139TOO 15371da177e4SLinus Torvalds help 15381da177e4SLinus Torvalds This enables support for the older and uncommon RTL-8129 and 15391da177e4SLinus Torvalds RTL-8130 chips, which support MII via an external transceiver, 15401da177e4SLinus Torvalds instead of an internal one. Disabling this option will save some 15411da177e4SLinus Torvalds memory by making the code size smaller. If unsure, say Y. 15421da177e4SLinus Torvalds 15431da177e4SLinus Torvaldsconfig 8139_OLD_RX_RESET 15441da177e4SLinus Torvalds bool "Use older RX-reset method" 15451da177e4SLinus Torvalds depends on 8139TOO 15461da177e4SLinus Torvalds help 15471da177e4SLinus Torvalds The 8139too driver was recently updated to contain a more rapid 15481da177e4SLinus Torvalds reset sequence, in the face of severe receive errors. This "new" 15491da177e4SLinus Torvalds RX-reset method should be adequate for all boards. But if you 15501da177e4SLinus Torvalds experience problems, you can enable this option to restore the 15511da177e4SLinus Torvalds old RX-reset behavior. If unsure, say N. 15521da177e4SLinus Torvalds 15531da177e4SLinus Torvaldsconfig SIS900 15541da177e4SLinus Torvalds tristate "SiS 900/7016 PCI Fast Ethernet Adapter support" 15551da177e4SLinus Torvalds depends on NET_PCI && PCI 15561da177e4SLinus Torvalds select CRC32 15576da0f685SAdrian Bunk select MII 15581da177e4SLinus Torvalds ---help--- 15591da177e4SLinus Torvalds This is a driver for the Fast Ethernet PCI network cards based on 15601da177e4SLinus Torvalds the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in 15611da177e4SLinus Torvalds SiS 630 and SiS 540 chipsets. If you have one of those, say Y and 15621da177e4SLinus Torvalds read the Ethernet-HOWTO, available at 15631da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Please read 15641da177e4SLinus Torvalds <file:Documentation/networking/sis900.txt> and comments at the 15651da177e4SLinus Torvalds beginning of <file:drivers/net/sis900.c> for more information. 15661da177e4SLinus Torvalds 15671da177e4SLinus Torvalds This driver also supports AMD 79C901 HomePNA so that you can use 15681da177e4SLinus Torvalds your phone line as a network cable. 15691da177e4SLinus Torvalds 15701da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 15711da177e4SLinus Torvalds will be called sis900. This is recommended. 15721da177e4SLinus Torvalds 15731da177e4SLinus Torvaldsconfig EPIC100 15741da177e4SLinus Torvalds tristate "SMC EtherPower II" 15751da177e4SLinus Torvalds depends on NET_PCI && PCI 15761da177e4SLinus Torvalds select CRC32 15771da177e4SLinus Torvalds select MII 15781da177e4SLinus Torvalds help 15791da177e4SLinus Torvalds This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC, 15801da177e4SLinus Torvalds which is based on the SMC83c17x (EPIC/100). 15811da177e4SLinus Torvalds More specific information and updates are available from 15821da177e4SLinus Torvalds <http://www.scyld.com/network/epic100.html>. 15831da177e4SLinus Torvalds 15841da177e4SLinus Torvaldsconfig SUNDANCE 15851da177e4SLinus Torvalds tristate "Sundance Alta support" 15861da177e4SLinus Torvalds depends on NET_PCI && PCI 15871da177e4SLinus Torvalds select CRC32 15881da177e4SLinus Torvalds select MII 15891da177e4SLinus Torvalds help 15901da177e4SLinus Torvalds This driver is for the Sundance "Alta" chip. 15911da177e4SLinus Torvalds More specific information and updates are available from 15921da177e4SLinus Torvalds <http://www.scyld.com/network/sundance.html>. 15931da177e4SLinus Torvalds 15941da177e4SLinus Torvaldsconfig SUNDANCE_MMIO 15951da177e4SLinus Torvalds bool "Use MMIO instead of PIO" 15961da177e4SLinus Torvalds depends on SUNDANCE 15971da177e4SLinus Torvalds help 15981da177e4SLinus Torvalds Enable memory-mapped I/O for interaction with Sundance NIC registers. 15991da177e4SLinus Torvalds Do NOT enable this by default, PIO (enabled when MMIO is disabled) 16001da177e4SLinus Torvalds is known to solve bugs on certain chips. 16011da177e4SLinus Torvalds 16021da177e4SLinus Torvalds If unsure, say N. 16031da177e4SLinus Torvalds 16041da177e4SLinus Torvaldsconfig TLAN 16051da177e4SLinus Torvalds tristate "TI ThunderLAN support" 16061da177e4SLinus Torvalds depends on NET_PCI && (PCI || EISA) && !64BIT 16071da177e4SLinus Torvalds ---help--- 16081da177e4SLinus Torvalds If you have a PCI Ethernet network card based on the ThunderLAN chip 16091da177e4SLinus Torvalds which is supported by this driver, say Y and read the 16101da177e4SLinus Torvalds Ethernet-HOWTO, available from 16111da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 16121da177e4SLinus Torvalds 16131da177e4SLinus Torvalds Devices currently supported by this driver are Compaq Netelligent, 16141da177e4SLinus Torvalds Compaq NetFlex and Olicom cards. Please read the file 16151da177e4SLinus Torvalds <file:Documentation/networking/tlan.txt> for more details. 16161da177e4SLinus Torvalds 16171da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 16181da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 16191da177e4SLinus Torvalds will be called tlan. 16201da177e4SLinus Torvalds 16211da177e4SLinus Torvalds Please email feedback to <torben.mathiasen@compaq.com>. 16221da177e4SLinus Torvalds 16231da177e4SLinus Torvaldsconfig VIA_RHINE 16241da177e4SLinus Torvalds tristate "VIA Rhine support" 16251da177e4SLinus Torvalds depends on NET_PCI && PCI 16261da177e4SLinus Torvalds select CRC32 16271da177e4SLinus Torvalds select MII 16281da177e4SLinus Torvalds help 16291da177e4SLinus Torvalds If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A), 16301da177e4SLinus Torvalds Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type 16311da177e4SLinus Torvalds Ethernet functions can also be found integrated on South Bridges 16321da177e4SLinus Torvalds (e.g. VT8235). 16331da177e4SLinus Torvalds 16341da177e4SLinus Torvalds To compile this driver as a module, choose M here. The module 16351da177e4SLinus Torvalds will be called via-rhine. 16361da177e4SLinus Torvalds 16371da177e4SLinus Torvaldsconfig VIA_RHINE_MMIO 16381da177e4SLinus Torvalds bool "Use MMIO instead of PIO" 16391da177e4SLinus Torvalds depends on VIA_RHINE 16401da177e4SLinus Torvalds help 16411da177e4SLinus Torvalds This instructs the driver to use PCI shared memory (MMIO) instead of 16421da177e4SLinus Torvalds programmed I/O ports (PIO). Enabling this gives an improvement in 16431da177e4SLinus Torvalds processing time in parts of the driver. 16441da177e4SLinus Torvalds 16451da177e4SLinus Torvalds If unsure, say Y. 16461da177e4SLinus Torvalds 16471da177e4SLinus Torvaldsconfig LAN_SAA9730 16481da177e4SLinus Torvalds bool "Philips SAA9730 Ethernet support (EXPERIMENTAL)" 16491da177e4SLinus Torvalds depends on NET_PCI && EXPERIMENTAL && MIPS 16501da177e4SLinus Torvalds help 16511da177e4SLinus Torvalds The SAA9730 is a combined multimedia and peripheral controller used 16521da177e4SLinus Torvalds in thin clients, Internet access terminals, and diskless 16531da177e4SLinus Torvalds workstations. 16541da177e4SLinus Torvalds See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>. 16551da177e4SLinus Torvalds 16561da177e4SLinus Torvaldsconfig NET_POCKET 16571da177e4SLinus Torvalds bool "Pocket and portable adapters" 16581da177e4SLinus Torvalds depends on NET_ETHERNET && ISA 16591da177e4SLinus Torvalds ---help--- 16601da177e4SLinus Torvalds Cute little network (Ethernet) devices which attach to the parallel 16611da177e4SLinus Torvalds port ("pocket adapters"), commonly used with laptops. If you have 16621da177e4SLinus Torvalds one of those, say Y and read the Ethernet-HOWTO, available from 16631da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 16641da177e4SLinus Torvalds 16651da177e4SLinus Torvalds If you want to plug a network (or some other) card into the PCMCIA 16661da177e4SLinus Torvalds (or PC-card) slot of your laptop instead (PCMCIA is the standard for 16671da177e4SLinus Torvalds credit card size extension cards used by all modern laptops), you 16681da177e4SLinus Torvalds need the pcmcia-cs package (location contained in the file 16691da177e4SLinus Torvalds <file:Documentation/Changes>) and you can say N here. 16701da177e4SLinus Torvalds 16711da177e4SLinus Torvalds Laptop users should read the Linux Laptop home page at 16721da177e4SLinus Torvalds <http://www.linux-on-laptops.com/> or 16731da177e4SLinus Torvalds Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>. 16741da177e4SLinus Torvalds 16751da177e4SLinus Torvalds Note that the answer to this question doesn't directly affect the 16761da177e4SLinus Torvalds kernel: saying N will just cause the configurator to skip all 16771da177e4SLinus Torvalds the questions about this class of network devices. If you say Y, you 16781da177e4SLinus Torvalds will be asked for your specific device in the following questions. 16791da177e4SLinus Torvalds 16801da177e4SLinus Torvaldsconfig ATP 16811da177e4SLinus Torvalds tristate "AT-LAN-TEC/RealTek pocket adapter support" 16821da177e4SLinus Torvalds depends on NET_POCKET && ISA && X86 16831da177e4SLinus Torvalds select CRC32 16841da177e4SLinus Torvalds ---help--- 16851da177e4SLinus Torvalds This is a network (Ethernet) device which attaches to your parallel 16861da177e4SLinus Torvalds port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO, 16871da177e4SLinus Torvalds available from <http://www.tldp.org/docs.html#howto>, if you 16881da177e4SLinus Torvalds want to use this. If you intend to use this driver, you should have 16891da177e4SLinus Torvalds said N to the "Parallel printer support", because the two drivers 16901da177e4SLinus Torvalds don't like each other. 16911da177e4SLinus Torvalds 16921da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 16931da177e4SLinus Torvalds will be called atp. 16941da177e4SLinus Torvalds 16951da177e4SLinus Torvaldsconfig DE600 16961da177e4SLinus Torvalds tristate "D-Link DE600 pocket adapter support" 16971da177e4SLinus Torvalds depends on NET_POCKET && ISA 16981da177e4SLinus Torvalds ---help--- 16991da177e4SLinus Torvalds This is a network (Ethernet) device which attaches to your parallel 17001da177e4SLinus Torvalds port. Read <file:Documentation/networking/DLINK.txt> as well as the 17011da177e4SLinus Torvalds Ethernet-HOWTO, available from 17021da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>, if you want to use 17031da177e4SLinus Torvalds this. It is possible to have several devices share a single parallel 17041da177e4SLinus Torvalds port and it is safe to compile the corresponding drivers into the 17051da177e4SLinus Torvalds kernel. 17061da177e4SLinus Torvalds 17071da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 17081da177e4SLinus Torvalds will be called de600. 17091da177e4SLinus Torvalds 17101da177e4SLinus Torvaldsconfig DE620 17111da177e4SLinus Torvalds tristate "D-Link DE620 pocket adapter support" 17121da177e4SLinus Torvalds depends on NET_POCKET && ISA 17131da177e4SLinus Torvalds ---help--- 17141da177e4SLinus Torvalds This is a network (Ethernet) device which attaches to your parallel 17151da177e4SLinus Torvalds port. Read <file:Documentation/networking/DLINK.txt> as well as the 17161da177e4SLinus Torvalds Ethernet-HOWTO, available from 17171da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>, if you want to use 17181da177e4SLinus Torvalds this. It is possible to have several devices share a single parallel 17191da177e4SLinus Torvalds port and it is safe to compile the corresponding drivers into the 17201da177e4SLinus Torvalds kernel. 17211da177e4SLinus Torvalds 17221da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 17231da177e4SLinus Torvalds will be called de620. 17241da177e4SLinus Torvalds 17251da177e4SLinus Torvaldsconfig SGISEEQ 17261da177e4SLinus Torvalds tristate "SGI Seeq ethernet controller support" 17271da177e4SLinus Torvalds depends on NET_ETHERNET && SGI_IP22 17281da177e4SLinus Torvalds help 17291da177e4SLinus Torvalds Say Y here if you have an Seeq based Ethernet network card. This is 17301da177e4SLinus Torvalds used in many Silicon Graphics machines. 17311da177e4SLinus Torvalds 17321da177e4SLinus Torvaldsconfig DECLANCE 17331da177e4SLinus Torvalds tristate "DEC LANCE ethernet controller support" 17341da177e4SLinus Torvalds depends on NET_ETHERNET && MACH_DECSTATION 17351da177e4SLinus Torvalds select CRC32 17361da177e4SLinus Torvalds help 17371da177e4SLinus Torvalds This driver is for the series of Ethernet controllers produced by 17381da177e4SLinus Torvalds DEC (now Compaq) based on the AMD Lance chipset, including the 17391da177e4SLinus Torvalds DEPCA series. (This chipset is better known via the NE2100 cards.) 17401da177e4SLinus Torvalds 17411da177e4SLinus Torvaldsconfig 68360_ENET 17421da177e4SLinus Torvalds bool "Motorola 68360 ethernet controller" 17431da177e4SLinus Torvalds depends on M68360 17441da177e4SLinus Torvalds help 17451da177e4SLinus Torvalds Say Y here if you want to use the built-in ethernet controller of 17461da177e4SLinus Torvalds the Motorola 68360 processor. 17471da177e4SLinus Torvalds 17481da177e4SLinus Torvaldsconfig FEC 17492af6921fSGreg Ungerer bool "FEC ethernet controller (of ColdFire CPUs)" 17502af6921fSGreg Ungerer depends on M523x || M527x || M5272 || M528x 17511da177e4SLinus Torvalds help 17521da177e4SLinus Torvalds Say Y here if you want to use the built-in 10/100 Fast ethernet 17532af6921fSGreg Ungerer controller on some Motorola ColdFire processors. 17542af6921fSGreg Ungerer 17552af6921fSGreg Ungererconfig FEC2 17562af6921fSGreg Ungerer bool "Second FEC ethernet controller (on some ColdFire CPUs)" 17572af6921fSGreg Ungerer depends on FEC 17582af6921fSGreg Ungerer help 17592af6921fSGreg Ungerer Say Y here if you want to use the second built-in 10/100 Fast 17602af6921fSGreg Ungerer ethernet controller on some Motorola ColdFire processors. 17611da177e4SLinus Torvalds 17621da177e4SLinus Torvaldsconfig NE_H8300 17631da177e4SLinus Torvalds tristate "NE2000 compatible support for H8/300" 17641da177e4SLinus Torvalds depends on H8300 && NET_ETHERNET 17651da177e4SLinus Torvalds help 17661da177e4SLinus Torvalds Say Y here if you want to use the NE2000 compatible 17671da177e4SLinus Torvalds controller on the Renesas H8/300 processor. 17681da177e4SLinus Torvalds 17691da177e4SLinus Torvaldssource "drivers/net/fec_8xx/Kconfig" 17701da177e4SLinus Torvalds 17711da177e4SLinus Torvaldsendmenu 17721da177e4SLinus Torvalds 17731da177e4SLinus Torvalds# 17741da177e4SLinus Torvalds# Gigabit Ethernet 17751da177e4SLinus Torvalds# 17761da177e4SLinus Torvalds 17771da177e4SLinus Torvaldsmenu "Ethernet (1000 Mbit)" 1778cbcd2a4cSRandy Dunlap depends on !UML 17791da177e4SLinus Torvalds 17801da177e4SLinus Torvaldsconfig ACENIC 17811da177e4SLinus Torvalds tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support" 17821da177e4SLinus Torvalds depends on PCI 17831da177e4SLinus Torvalds ---help--- 17841da177e4SLinus Torvalds Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear 17851da177e4SLinus Torvalds GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet 17861da177e4SLinus Torvalds adapter. The driver allows for using the Jumbo Frame option (9000 17871da177e4SLinus Torvalds bytes/frame) however it requires that your switches can handle this 17881da177e4SLinus Torvalds as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig 17891da177e4SLinus Torvalds line. 17901da177e4SLinus Torvalds 17911da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 17921da177e4SLinus Torvalds module will be called acenic. 17931da177e4SLinus Torvalds 17941da177e4SLinus Torvaldsconfig ACENIC_OMIT_TIGON_I 17951da177e4SLinus Torvalds bool "Omit support for old Tigon I based AceNICs" 17961da177e4SLinus Torvalds depends on ACENIC 17971da177e4SLinus Torvalds help 17981da177e4SLinus Torvalds Say Y here if you only have Tigon II based AceNICs and want to leave 17991da177e4SLinus Torvalds out support for the older Tigon I based cards which are no longer 18001da177e4SLinus Torvalds being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B 18011da177e4SLinus Torvalds version)). This will reduce the size of the driver object by 18021da177e4SLinus Torvalds app. 100KB. If you are not sure whether your card is a Tigon I or a 18031da177e4SLinus Torvalds Tigon II, say N here. 18041da177e4SLinus Torvalds 18051da177e4SLinus Torvalds The safe and default value for this is N. 18061da177e4SLinus Torvalds 18071da177e4SLinus Torvaldsconfig DL2K 18081da177e4SLinus Torvalds tristate "D-Link DL2000-based Gigabit Ethernet support" 18091da177e4SLinus Torvalds depends on PCI 18101da177e4SLinus Torvalds select CRC32 18111da177e4SLinus Torvalds help 18121da177e4SLinus Torvalds This driver supports D-Link 2000-based gigabit ethernet cards, which 18131da177e4SLinus Torvalds includes 18141da177e4SLinus Torvalds D-Link DGE-550T Gigabit Ethernet Adapter. 18151da177e4SLinus Torvalds D-Link DL2000-based Gigabit Ethernet Adapter. 18161da177e4SLinus Torvalds 18171da177e4SLinus Torvalds To compile this driver as a module, choose M here: the 18181da177e4SLinus Torvalds module will be called dl2k. 18191da177e4SLinus Torvalds 18201da177e4SLinus Torvaldsconfig E1000 18211da177e4SLinus Torvalds tristate "Intel(R) PRO/1000 Gigabit Ethernet support" 18221da177e4SLinus Torvalds depends on PCI 18231da177e4SLinus Torvalds ---help--- 18241da177e4SLinus Torvalds This driver supports Intel(R) PRO/1000 gigabit ethernet family of 18251da177e4SLinus Torvalds adapters. For more information on how to identify your adapter, go 18261da177e4SLinus Torvalds to the Adapter & Driver ID Guide at: 18271da177e4SLinus Torvalds 18281da177e4SLinus Torvalds <http://support.intel.com/support/network/adapter/pro100/21397.htm> 18291da177e4SLinus Torvalds 18301da177e4SLinus Torvalds For general information and support, go to the Intel support 18311da177e4SLinus Torvalds website at: 18321da177e4SLinus Torvalds 18331da177e4SLinus Torvalds <http://support.intel.com> 18341da177e4SLinus Torvalds 18351da177e4SLinus Torvalds More specific information on configuring the driver is in 18361da177e4SLinus Torvalds <file:Documentation/networking/e1000.txt>. 18371da177e4SLinus Torvalds 18381da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 18391da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 18401da177e4SLinus Torvalds will be called e1000. 18411da177e4SLinus Torvalds 18421da177e4SLinus Torvaldsconfig E1000_NAPI 18431da177e4SLinus Torvalds bool "Use Rx Polling (NAPI)" 18441da177e4SLinus Torvalds depends on E1000 18451da177e4SLinus Torvalds help 18461da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 18471da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 18481da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 18491da177e4SLinus Torvalds 18501da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 18511da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 18521da177e4SLinus Torvalds then say Y here. 18531da177e4SLinus Torvalds 18541da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 18551da177e4SLinus Torvalds information. 18561da177e4SLinus Torvalds 18571da177e4SLinus Torvalds If in doubt, say N. 18581da177e4SLinus Torvalds 18591da177e4SLinus Torvaldsconfig MYRI_SBUS 18601da177e4SLinus Torvalds tristate "MyriCOM Gigabit Ethernet support" 18611da177e4SLinus Torvalds depends on SBUS 18621da177e4SLinus Torvalds help 18631da177e4SLinus Torvalds This driver supports MyriCOM Sbus gigabit Ethernet cards. 18641da177e4SLinus Torvalds 18651da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 18661da177e4SLinus Torvalds will be called myri_sbus. This is recommended. 18671da177e4SLinus Torvalds 18681da177e4SLinus Torvaldsconfig NS83820 18691da177e4SLinus Torvalds tristate "National Semiconduct DP83820 support" 18701da177e4SLinus Torvalds depends on PCI 18711da177e4SLinus Torvalds help 18721da177e4SLinus Torvalds This is a driver for the National Semiconductor DP83820 series 18731da177e4SLinus Torvalds of gigabit ethernet MACs. Cards using this chipset include 18741da177e4SLinus Torvalds the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX, 18751da177e4SLinus Torvalds SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of 18761da177e4SLinus Torvalds zero copy. 18771da177e4SLinus Torvalds 18781da177e4SLinus Torvaldsconfig HAMACHI 18791da177e4SLinus Torvalds tristate "Packet Engines Hamachi GNIC-II support" 18801da177e4SLinus Torvalds depends on PCI 18811da177e4SLinus Torvalds select MII 18821da177e4SLinus Torvalds help 18831da177e4SLinus Torvalds If you have a Gigabit Ethernet card of this type, say Y and read 18841da177e4SLinus Torvalds the Ethernet-HOWTO, available from 18851da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. 18861da177e4SLinus Torvalds 18871da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 18881da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 18891da177e4SLinus Torvalds called hamachi. 18901da177e4SLinus Torvalds 18911da177e4SLinus Torvaldsconfig YELLOWFIN 18921da177e4SLinus Torvalds tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)" 18931da177e4SLinus Torvalds depends on PCI && EXPERIMENTAL 18941da177e4SLinus Torvalds select CRC32 18951da177e4SLinus Torvalds ---help--- 18961da177e4SLinus Torvalds Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet 18971da177e4SLinus Torvalds adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is 18981da177e4SLinus Torvalds used by the Beowulf Linux cluster project. See 18991da177e4SLinus Torvalds <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more 19001da177e4SLinus Torvalds information about this driver in particular and Beowulf in general. 19011da177e4SLinus Torvalds 19021da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 19031da177e4SLinus Torvalds will be called yellowfin. This is recommended. 19041da177e4SLinus Torvalds 19051da177e4SLinus Torvaldsconfig R8169 19061da177e4SLinus Torvalds tristate "Realtek 8169 gigabit ethernet support" 19071da177e4SLinus Torvalds depends on PCI 19081da177e4SLinus Torvalds select CRC32 19091da177e4SLinus Torvalds ---help--- 19101da177e4SLinus Torvalds Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter. 19111da177e4SLinus Torvalds 19121da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 19131da177e4SLinus Torvalds will be called r8169. This is recommended. 19141da177e4SLinus Torvalds 19151da177e4SLinus Torvaldsconfig R8169_NAPI 19161da177e4SLinus Torvalds bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)" 19171da177e4SLinus Torvalds depends on R8169 && EXPERIMENTAL 19181da177e4SLinus Torvalds help 19191da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 19201da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 19211da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 19221da177e4SLinus Torvalds 19231da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 19241da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 19251da177e4SLinus Torvalds then say Y here. 19261da177e4SLinus Torvalds 19271da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 19281da177e4SLinus Torvalds information. 19291da177e4SLinus Torvalds 19301da177e4SLinus Torvalds If in doubt, say N. 19311da177e4SLinus Torvalds 19321da177e4SLinus Torvaldsconfig R8169_VLAN 19331da177e4SLinus Torvalds bool "VLAN support" 19341da177e4SLinus Torvalds depends on R8169 && VLAN_8021Q 19351da177e4SLinus Torvalds ---help--- 19361da177e4SLinus Torvalds Say Y here for the r8169 driver to support the functions required 19371da177e4SLinus Torvalds by the kernel 802.1Q code. 19381da177e4SLinus Torvalds 19391da177e4SLinus Torvalds If in doubt, say Y. 19401da177e4SLinus Torvalds 1941890e8d0aSFrancois Romieuconfig SIS190 1942e797637fSFrancois Romieu tristate "SiS190/SiS191 gigabit ethernet support" 1943890e8d0aSFrancois Romieu depends on PCI 1944890e8d0aSFrancois Romieu select CRC32 1945e9985d53SAdrian Bunk select MII 1946890e8d0aSFrancois Romieu ---help--- 1947e797637fSFrancois Romieu Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or 1948e797637fSFrancois Romieu a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to 1949e797637fSFrancois Romieu appear in lan on motherboard designs which are based on SiS 965 1950e797637fSFrancois Romieu and SiS 966 south bridge. 1951890e8d0aSFrancois Romieu 1952890e8d0aSFrancois Romieu To compile this driver as a module, choose M here: the module 1953890e8d0aSFrancois Romieu will be called sis190. This is recommended. 1954890e8d0aSFrancois Romieu 1955baef58b1SStephen Hemmingerconfig SKGE 1956baef58b1SStephen Hemminger tristate "New SysKonnect GigaEthernet support (EXPERIMENTAL)" 1957baef58b1SStephen Hemminger depends on PCI && EXPERIMENTAL 1958baef58b1SStephen Hemminger select CRC32 1959baef58b1SStephen Hemminger ---help--- 1960baef58b1SStephen Hemminger This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx 1961baef58b1SStephen Hemminger and related Gigabit Ethernet adapters. It is a new smaller driver 196246a60f2dSStephen Hemminger with better performance and more complete ethtool support. 1963baef58b1SStephen Hemminger 1964baef58b1SStephen Hemminger It does not support the link failover and network management 1965baef58b1SStephen Hemminger features that "portable" vendor supplied sk98lin driver does. 1966baef58b1SStephen Hemminger 19671da177e4SLinus Torvaldsconfig SK98LIN 19681da177e4SLinus Torvalds tristate "Marvell Yukon Chipset / SysKonnect SK-98xx Support" 19691da177e4SLinus Torvalds depends on PCI 19701da177e4SLinus Torvalds ---help--- 19711da177e4SLinus Torvalds Say Y here if you have a Marvell Yukon or SysKonnect SK-98xx/SK-95xx 19721da177e4SLinus Torvalds compliant Gigabit Ethernet Adapter. The following adapters are supported 19731da177e4SLinus Torvalds by this driver: 19741da177e4SLinus Torvalds - 3Com 3C940 Gigabit LOM Ethernet Adapter 19751da177e4SLinus Torvalds - 3Com 3C941 Gigabit LOM Ethernet Adapter 19761da177e4SLinus Torvalds - Allied Telesyn AT-2970LX Gigabit Ethernet Adapter 19771da177e4SLinus Torvalds - Allied Telesyn AT-2970LX/2SC Gigabit Ethernet Adapter 19781da177e4SLinus Torvalds - Allied Telesyn AT-2970SX Gigabit Ethernet Adapter 19791da177e4SLinus Torvalds - Allied Telesyn AT-2970SX/2SC Gigabit Ethernet Adapter 19801da177e4SLinus Torvalds - Allied Telesyn AT-2970TX Gigabit Ethernet Adapter 19811da177e4SLinus Torvalds - Allied Telesyn AT-2970TX/2TX Gigabit Ethernet Adapter 19821da177e4SLinus Torvalds - Allied Telesyn AT-2971SX Gigabit Ethernet Adapter 19831da177e4SLinus Torvalds - Allied Telesyn AT-2971T Gigabit Ethernet Adapter 19841da177e4SLinus Torvalds - Belkin Gigabit Desktop Card 10/100/1000Base-T Adapter, Copper RJ-45 19851da177e4SLinus Torvalds - DGE-530T Gigabit Ethernet Adapter 19861da177e4SLinus Torvalds - EG1032 v2 Instant Gigabit Network Adapter 19871da177e4SLinus Torvalds - EG1064 v2 Instant Gigabit Network Adapter 19881da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Abit) 19891da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Albatron) 19901da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Asus) 19911da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (ECS) 19921da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Epox) 19931da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Foxconn) 19941da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Gigabyte) 19951da177e4SLinus Torvalds - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Iwill) 19961da177e4SLinus Torvalds - Marvell 88E8050 Gigabit LOM Ethernet Adapter (Intel) 19971da177e4SLinus Torvalds - Marvell RDK-8001 Adapter 19981da177e4SLinus Torvalds - Marvell RDK-8002 Adapter 19991da177e4SLinus Torvalds - Marvell RDK-8003 Adapter 20001da177e4SLinus Torvalds - Marvell RDK-8004 Adapter 20011da177e4SLinus Torvalds - Marvell RDK-8006 Adapter 20021da177e4SLinus Torvalds - Marvell RDK-8007 Adapter 20031da177e4SLinus Torvalds - Marvell RDK-8008 Adapter 20041da177e4SLinus Torvalds - Marvell RDK-8009 Adapter 20051da177e4SLinus Torvalds - Marvell RDK-8010 Adapter 20061da177e4SLinus Torvalds - Marvell RDK-8011 Adapter 20071da177e4SLinus Torvalds - Marvell RDK-8012 Adapter 20081da177e4SLinus Torvalds - Marvell RDK-8052 Adapter 20091da177e4SLinus Torvalds - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (32 bit) 20101da177e4SLinus Torvalds - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (64 bit) 20111da177e4SLinus Torvalds - N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L) 20121da177e4SLinus Torvalds - SK-9521 10/100/1000Base-T Adapter 20131da177e4SLinus Torvalds - SK-9521 V2.0 10/100/1000Base-T Adapter 20141da177e4SLinus Torvalds - SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T) 20151da177e4SLinus Torvalds - SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter 20161da177e4SLinus Torvalds - SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link) 20171da177e4SLinus Torvalds - SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX) 20181da177e4SLinus Torvalds - SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter 20191da177e4SLinus Torvalds - SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link) 20201da177e4SLinus Torvalds - SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX) 20211da177e4SLinus Torvalds - SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter 20221da177e4SLinus Torvalds - SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link) 20231da177e4SLinus Torvalds - SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter 20241da177e4SLinus Torvalds - SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition) 20251da177e4SLinus Torvalds - SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter 20261da177e4SLinus Torvalds - SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link) 20271da177e4SLinus Torvalds - SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX) 20281da177e4SLinus Torvalds - SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter 20291da177e4SLinus Torvalds - SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link) 20301da177e4SLinus Torvalds - SMC EZ Card 1000 (SMC9452TXV.2) 20311da177e4SLinus Torvalds 20321da177e4SLinus Torvalds The adapters support Jumbo Frames. 20331da177e4SLinus Torvalds The dual link adapters support link-failover and dual port features. 20341da177e4SLinus Torvalds Both Marvell Yukon and SysKonnect SK-98xx/SK-95xx adapters support 20351da177e4SLinus Torvalds the scatter-gather functionality with sendfile(). Please refer to 20361da177e4SLinus Torvalds <file:Documentation/networking/sk98lin.txt> for more information about 20371da177e4SLinus Torvalds optional driver parameters. 20381da177e4SLinus Torvalds Questions concerning this driver may be addressed to: 20391da177e4SLinus Torvalds <linux@syskonnect.de> 20401da177e4SLinus Torvalds 20411da177e4SLinus Torvalds If you want to compile this driver as a module ( = code which can be 20421da177e4SLinus Torvalds inserted in and removed from the running kernel whenever you want), 20431da177e4SLinus Torvalds say M here and read <file:Documentation/kbuild/modules.txt>. The module will 20441da177e4SLinus Torvalds be called sk98lin. This is recommended. 20451da177e4SLinus Torvalds 20461da177e4SLinus Torvaldsconfig VIA_VELOCITY 20471da177e4SLinus Torvalds tristate "VIA Velocity support" 20481da177e4SLinus Torvalds depends on NET_PCI && PCI 20491da177e4SLinus Torvalds select CRC32 20501da177e4SLinus Torvalds select CRC_CCITT 20511da177e4SLinus Torvalds select MII 20521da177e4SLinus Torvalds help 20531da177e4SLinus Torvalds If you have a VIA "Velocity" based network card say Y here. 20541da177e4SLinus Torvalds 20551da177e4SLinus Torvalds To compile this driver as a module, choose M here. The module 20561da177e4SLinus Torvalds will be called via-velocity. 20571da177e4SLinus Torvalds 20581da177e4SLinus Torvaldsconfig TIGON3 20591da177e4SLinus Torvalds tristate "Broadcom Tigon3 support" 20601da177e4SLinus Torvalds depends on PCI 20611da177e4SLinus Torvalds help 20621da177e4SLinus Torvalds This driver supports Broadcom Tigon3 based gigabit Ethernet cards. 20631da177e4SLinus Torvalds 20641da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 20651da177e4SLinus Torvalds will be called tg3. This is recommended. 20661da177e4SLinus Torvalds 2067b6016b76SMichael Chanconfig BNX2 2068b6016b76SMichael Chan tristate "Broadcom NetXtremeII support" 2069b6016b76SMichael Chan depends on PCI 2070b6016b76SMichael Chan help 2071b6016b76SMichael Chan This driver supports Broadcom NetXtremeII gigabit Ethernet cards. 2072b6016b76SMichael Chan 2073b6016b76SMichael Chan To compile this driver as a module, choose M here: the module 2074b6016b76SMichael Chan will be called bnx2. This is recommended. 2075b6016b76SMichael Chan 2076aaec0fabSJens Osterkampconfig SPIDER_NET 2077aaec0fabSJens Osterkamp tristate "Spider Gigabit Ethernet driver" 2078aaec0fabSJens Osterkamp depends on PCI && PPC_BPA 2079aaec0fabSJens Osterkamp help 2080aaec0fabSJens Osterkamp This driver supports the Gigabit Ethernet chips present on the 2081aaec0fabSJens Osterkamp Cell Processor-Based Blades from IBM. 2082aaec0fabSJens Osterkamp 20831da177e4SLinus Torvaldsconfig GIANFAR 20841da177e4SLinus Torvalds tristate "Gianfar Ethernet" 20851da177e4SLinus Torvalds depends on 85xx || 83xx 20861da177e4SLinus Torvalds help 20871da177e4SLinus Torvalds This driver supports the Gigabit TSEC on the MPC85xx 20881da177e4SLinus Torvalds family of chips, and the FEC on the 8540 20891da177e4SLinus Torvalds 20901da177e4SLinus Torvaldsconfig GFAR_NAPI 20911da177e4SLinus Torvalds bool "NAPI Support" 20921da177e4SLinus Torvalds depends on GIANFAR 20931da177e4SLinus Torvalds 20941da177e4SLinus Torvaldsconfig MV643XX_ETH 20951da177e4SLinus Torvalds tristate "MV-643XX Ethernet support" 209616b81757SBenjamin Herrenschmidt depends on MOMENCO_OCELOT_C || MOMENCO_JAGUAR_ATX || MV64360 || MOMENCO_OCELOT_3 || PPC_MULTIPLATFORM 20971da177e4SLinus Torvalds help 20981da177e4SLinus Torvalds This driver supports the gigabit Ethernet on the Marvell MV643XX 20991da177e4SLinus Torvalds chipset which is used in the Momenco Ocelot C and Jaguar ATX and 21001da177e4SLinus Torvalds Pegasos II, amongst other PPC and MIPS boards. 21011da177e4SLinus Torvalds 21021da177e4SLinus Torvaldsconfig MV643XX_ETH_0 21031da177e4SLinus Torvalds bool "MV-643XX Port 0" 21041da177e4SLinus Torvalds depends on MV643XX_ETH 21051da177e4SLinus Torvalds help 21061da177e4SLinus Torvalds This enables support for Port 0 of the Marvell MV643XX Gigabit 21071da177e4SLinus Torvalds Ethernet. 21081da177e4SLinus Torvalds 21091da177e4SLinus Torvaldsconfig MV643XX_ETH_1 21101da177e4SLinus Torvalds bool "MV-643XX Port 1" 21111da177e4SLinus Torvalds depends on MV643XX_ETH 21121da177e4SLinus Torvalds help 21131da177e4SLinus Torvalds This enables support for Port 1 of the Marvell MV643XX Gigabit 21141da177e4SLinus Torvalds Ethernet. 21151da177e4SLinus Torvalds 21161da177e4SLinus Torvaldsconfig MV643XX_ETH_2 21171da177e4SLinus Torvalds bool "MV-643XX Port 2" 21181da177e4SLinus Torvalds depends on MV643XX_ETH 21191da177e4SLinus Torvalds help 21201da177e4SLinus Torvalds This enables support for Port 2 of the Marvell MV643XX Gigabit 21211da177e4SLinus Torvalds Ethernet. 21221da177e4SLinus Torvalds 21231da177e4SLinus Torvaldsendmenu 21241da177e4SLinus Torvalds 21251da177e4SLinus Torvalds# 21261da177e4SLinus Torvalds# 10 Gigabit Ethernet 21271da177e4SLinus Torvalds# 21281da177e4SLinus Torvalds 21291da177e4SLinus Torvaldsmenu "Ethernet (10000 Mbit)" 2130cbcd2a4cSRandy Dunlap depends on !UML 21311da177e4SLinus Torvalds 21328199d3a7SChristoph Lameterconfig CHELSIO_T1 21338199d3a7SChristoph Lameter tristate "Chelsio 10Gb Ethernet support" 21348199d3a7SChristoph Lameter depends on PCI 21358199d3a7SChristoph Lameter help 21368199d3a7SChristoph Lameter This driver supports Chelsio N110 and N210 models 10Gb Ethernet 21378199d3a7SChristoph Lameter cards. More information about adapter features and performance 21388199d3a7SChristoph Lameter tuning is in <file:Documentation/networking/cxgb.txt>. 21398199d3a7SChristoph Lameter 21408199d3a7SChristoph Lameter For general information about Chelsio and our products, visit 21418199d3a7SChristoph Lameter our website at <http://www.chelsio.com>. 21428199d3a7SChristoph Lameter 21438199d3a7SChristoph Lameter For customer support, please visit our customer support page at 21448199d3a7SChristoph Lameter <http://www.chelsio.com/support.htm>. 21458199d3a7SChristoph Lameter 21468199d3a7SChristoph Lameter Please send feedback to <linux-bugs@chelsio.com>. 21478199d3a7SChristoph Lameter 21488199d3a7SChristoph Lameter To compile this driver as a module, choose M here: the module 21498199d3a7SChristoph Lameter will be called cxgb. 21508199d3a7SChristoph Lameter 21511da177e4SLinus Torvaldsconfig IXGB 21521da177e4SLinus Torvalds tristate "Intel(R) PRO/10GbE support" 21531da177e4SLinus Torvalds depends on PCI 21541da177e4SLinus Torvalds ---help--- 21551da177e4SLinus Torvalds This driver supports Intel(R) PRO/10GbE family of 21561da177e4SLinus Torvalds adapters. For more information on how to identify your adapter, go 21571da177e4SLinus Torvalds to the Adapter & Driver ID Guide at: 21581da177e4SLinus Torvalds 21591da177e4SLinus Torvalds <http://support.intel.com/support/network/adapter/pro100/21397.htm> 21601da177e4SLinus Torvalds 21611da177e4SLinus Torvalds For general information and support, go to the Intel support 21621da177e4SLinus Torvalds website at: 21631da177e4SLinus Torvalds 21641da177e4SLinus Torvalds <http://support.intel.com> 21651da177e4SLinus Torvalds 21661da177e4SLinus Torvalds More specific information on configuring the driver is in 21671da177e4SLinus Torvalds <file:Documentation/networking/ixgb.txt>. 21681da177e4SLinus Torvalds 21691da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 21701da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module 21711da177e4SLinus Torvalds will be called ixgb. 21721da177e4SLinus Torvalds 21731da177e4SLinus Torvaldsconfig IXGB_NAPI 21741da177e4SLinus Torvalds bool "Use Rx Polling (NAPI) (EXPERIMENTAL)" 21751da177e4SLinus Torvalds depends on IXGB && EXPERIMENTAL 21761da177e4SLinus Torvalds help 21771da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 21781da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 21791da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 21801da177e4SLinus Torvalds 21811da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 21821da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 21831da177e4SLinus Torvalds then say Y here. 21841da177e4SLinus Torvalds 21851da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 21861da177e4SLinus Torvalds information. 21871da177e4SLinus Torvalds 21881da177e4SLinus Torvalds If in doubt, say N. 21891da177e4SLinus Torvalds 21901da177e4SLinus Torvaldsconfig S2IO 21911da177e4SLinus Torvalds tristate "S2IO 10Gbe XFrame NIC" 21921da177e4SLinus Torvalds depends on PCI 21931da177e4SLinus Torvalds ---help--- 21941da177e4SLinus Torvalds This driver supports the 10Gbe XFrame NIC of S2IO. 21951da177e4SLinus Torvalds For help regarding driver compilation, installation and 21961da177e4SLinus Torvalds tuning please look into ~/drivers/net/s2io/README.txt. 21971da177e4SLinus Torvalds 21981da177e4SLinus Torvaldsconfig S2IO_NAPI 21991da177e4SLinus Torvalds bool "Use Rx Polling (NAPI) (EXPERIMENTAL)" 22001da177e4SLinus Torvalds depends on S2IO && EXPERIMENTAL 22011da177e4SLinus Torvalds help 22021da177e4SLinus Torvalds NAPI is a new driver API designed to reduce CPU and interrupt load 22031da177e4SLinus Torvalds when the driver is receiving lots of packets from the card. It is 22041da177e4SLinus Torvalds still somewhat experimental and thus not yet enabled by default. 22051da177e4SLinus Torvalds 22061da177e4SLinus Torvalds If your estimated Rx load is 10kpps or more, or if the card will be 22071da177e4SLinus Torvalds deployed on potentially unfriendly networks (e.g. in a firewall), 22081da177e4SLinus Torvalds then say Y here. 22091da177e4SLinus Torvalds 22101da177e4SLinus Torvalds See <file:Documentation/networking/NAPI_HOWTO.txt> for more 22111da177e4SLinus Torvalds information. 22121da177e4SLinus Torvalds 22131da177e4SLinus Torvalds If in doubt, say N. 22141da177e4SLinus Torvalds 22151da177e4SLinus Torvaldsconfig 2BUFF_MODE 22161da177e4SLinus Torvalds bool "Use 2 Buffer Mode on Rx side." 22171da177e4SLinus Torvalds depends on S2IO 22181da177e4SLinus Torvalds ---help--- 22191da177e4SLinus Torvalds On enabling the 2 buffer mode, the received frame will be 22201da177e4SLinus Torvalds split into 2 parts before being DMA'ed to the hosts memory. 22211da177e4SLinus Torvalds The parts are the ethernet header and ethernet payload. 22221da177e4SLinus Torvalds This is useful on systems where DMA'ing to to unaligned 22231da177e4SLinus Torvalds physical memory loactions comes with a heavy price. 22241da177e4SLinus Torvalds If not sure please say N. 22251da177e4SLinus Torvalds 22261da177e4SLinus Torvaldsendmenu 22271da177e4SLinus Torvalds 22281da177e4SLinus Torvaldsif !UML 22291da177e4SLinus Torvaldssource "drivers/net/tokenring/Kconfig" 22301da177e4SLinus Torvalds 22311da177e4SLinus Torvaldssource "drivers/net/wireless/Kconfig" 22321da177e4SLinus Torvalds 22331da177e4SLinus Torvaldssource "drivers/net/pcmcia/Kconfig" 22341da177e4SLinus Torvaldsendif 22351da177e4SLinus Torvalds 22361da177e4SLinus Torvaldssource "drivers/net/wan/Kconfig" 22371da177e4SLinus Torvalds 22381da177e4SLinus Torvaldssource "drivers/atm/Kconfig" 22391da177e4SLinus Torvalds 22401da177e4SLinus Torvaldssource "drivers/s390/net/Kconfig" 22411da177e4SLinus Torvalds 22421da177e4SLinus Torvaldsconfig ISERIES_VETH 22431da177e4SLinus Torvalds tristate "iSeries Virtual Ethernet driver support" 2244cbcd2a4cSRandy Dunlap depends on PPC_ISERIES 22451da177e4SLinus Torvalds 22461da177e4SLinus Torvaldsconfig FDDI 22471da177e4SLinus Torvalds bool "FDDI driver support" 2248cbcd2a4cSRandy Dunlap depends on (PCI || EISA) 22491da177e4SLinus Torvalds help 22501da177e4SLinus Torvalds Fiber Distributed Data Interface is a high speed local area network 22511da177e4SLinus Torvalds design; essentially a replacement for high speed Ethernet. FDDI can 22521da177e4SLinus Torvalds run over copper or fiber. If you are connected to such a network and 22531da177e4SLinus Torvalds want a driver for the FDDI card in your computer, say Y here (and 22541da177e4SLinus Torvalds then also Y to the driver for your FDDI card, below). Most people 22551da177e4SLinus Torvalds will say N. 22561da177e4SLinus Torvalds 22571da177e4SLinus Torvaldsconfig DEFXX 22581da177e4SLinus Torvalds tristate "Digital DEFEA and DEFPA adapter support" 22591da177e4SLinus Torvalds depends on FDDI && (PCI || EISA) 22601da177e4SLinus Torvalds help 22611da177e4SLinus Torvalds This is support for the DIGITAL series of EISA (DEFEA) and PCI 22621da177e4SLinus Torvalds (DEFPA) controllers which can connect you to a local FDDI network. 22631da177e4SLinus Torvalds 22641da177e4SLinus Torvaldsconfig SKFP 22651da177e4SLinus Torvalds tristate "SysKonnect FDDI PCI support" 22661da177e4SLinus Torvalds depends on FDDI && PCI 22671da177e4SLinus Torvalds ---help--- 22681da177e4SLinus Torvalds Say Y here if you have a SysKonnect FDDI PCI adapter. 22691da177e4SLinus Torvalds The following adapters are supported by this driver: 22701da177e4SLinus Torvalds - SK-5521 (SK-NET FDDI-UP) 22711da177e4SLinus Torvalds - SK-5522 (SK-NET FDDI-UP DAS) 22721da177e4SLinus Torvalds - SK-5541 (SK-NET FDDI-FP) 22731da177e4SLinus Torvalds - SK-5543 (SK-NET FDDI-LP) 22741da177e4SLinus Torvalds - SK-5544 (SK-NET FDDI-LP DAS) 22751da177e4SLinus Torvalds - SK-5821 (SK-NET FDDI-UP64) 22761da177e4SLinus Torvalds - SK-5822 (SK-NET FDDI-UP64 DAS) 22771da177e4SLinus Torvalds - SK-5841 (SK-NET FDDI-FP64) 22781da177e4SLinus Torvalds - SK-5843 (SK-NET FDDI-LP64) 22791da177e4SLinus Torvalds - SK-5844 (SK-NET FDDI-LP64 DAS) 22801da177e4SLinus Torvalds - Netelligent 100 FDDI DAS Fibre SC 22811da177e4SLinus Torvalds - Netelligent 100 FDDI SAS Fibre SC 22821da177e4SLinus Torvalds - Netelligent 100 FDDI DAS UTP 22831da177e4SLinus Torvalds - Netelligent 100 FDDI SAS UTP 22841da177e4SLinus Torvalds - Netelligent 100 FDDI SAS Fibre MIC 22851da177e4SLinus Torvalds 22861da177e4SLinus Torvalds Read <file:Documentation/networking/skfp.txt> for information about 22871da177e4SLinus Torvalds the driver. 22881da177e4SLinus Torvalds 22891da177e4SLinus Torvalds Questions concerning this driver can be addressed to: 22901da177e4SLinus Torvalds <linux@syskonnect.de> 22911da177e4SLinus Torvalds 22921da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 22931da177e4SLinus Torvalds will be called skfp. This is recommended. 22941da177e4SLinus Torvalds 22951da177e4SLinus Torvaldsconfig HIPPI 22961da177e4SLinus Torvalds bool "HIPPI driver support (EXPERIMENTAL)" 2297cbcd2a4cSRandy Dunlap depends on EXPERIMENTAL && INET && PCI 22981da177e4SLinus Torvalds help 22991da177e4SLinus Torvalds HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and 23001da177e4SLinus Torvalds 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI 23011da177e4SLinus Torvalds can run over copper (25m) or fiber (300m on multi-mode or 10km on 23021da177e4SLinus Torvalds single-mode). HIPPI networks are commonly used for clusters and to 23031da177e4SLinus Torvalds connect to super computers. If you are connected to a HIPPI network 23041da177e4SLinus Torvalds and have a HIPPI network card in your computer that you want to use 23051da177e4SLinus Torvalds under Linux, say Y here (you must also remember to enable the driver 23061da177e4SLinus Torvalds for your HIPPI card below). Most people will say N here. 23071da177e4SLinus Torvalds 23081da177e4SLinus Torvaldsconfig ROADRUNNER 23091da177e4SLinus Torvalds tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)" 23101da177e4SLinus Torvalds depends on HIPPI && PCI 23111da177e4SLinus Torvalds help 23121da177e4SLinus Torvalds Say Y here if this is your PCI HIPPI network card. 23131da177e4SLinus Torvalds 23141da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 23151da177e4SLinus Torvalds will be called rrunner. If unsure, say N. 23161da177e4SLinus Torvalds 23171da177e4SLinus Torvaldsconfig ROADRUNNER_LARGE_RINGS 23181da177e4SLinus Torvalds bool "Use large TX/RX rings (EXPERIMENTAL)" 23191da177e4SLinus Torvalds depends on ROADRUNNER 23201da177e4SLinus Torvalds help 23211da177e4SLinus Torvalds If you say Y here, the RoadRunner driver will preallocate up to 2 MB 23221da177e4SLinus Torvalds of additional memory to allow for fastest operation, both for 23231da177e4SLinus Torvalds transmitting and receiving. This memory cannot be used by any other 23241da177e4SLinus Torvalds kernel code or by user space programs. Say Y here only if you have 23251da177e4SLinus Torvalds the memory. 23261da177e4SLinus Torvalds 23271da177e4SLinus Torvaldsconfig PLIP 23281da177e4SLinus Torvalds tristate "PLIP (parallel port) support" 2329cbcd2a4cSRandy Dunlap depends on PARPORT 23301da177e4SLinus Torvalds ---help--- 23311da177e4SLinus Torvalds PLIP (Parallel Line Internet Protocol) is used to create a 23321da177e4SLinus Torvalds reasonably fast mini network consisting of two (or, rarely, more) 23331da177e4SLinus Torvalds local machines. A PLIP link from a Linux box is a popular means to 23341da177e4SLinus Torvalds install a Linux distribution on a machine which doesn't have a 23351da177e4SLinus Torvalds CD-ROM drive (a minimal system has to be transferred with floppies 23361da177e4SLinus Torvalds first). The kernels on both machines need to have this PLIP option 23371da177e4SLinus Torvalds enabled for this to work. 23381da177e4SLinus Torvalds 23391da177e4SLinus Torvalds The PLIP driver has two modes, mode 0 and mode 1. The parallel 23401da177e4SLinus Torvalds ports (the connectors at the computers with 25 holes) are connected 23411da177e4SLinus Torvalds with "null printer" or "Turbo Laplink" cables which can transmit 4 23421da177e4SLinus Torvalds bits at a time (mode 0) or with special PLIP cables, to be used on 23431da177e4SLinus Torvalds bidirectional parallel ports only, which can transmit 8 bits at a 23441da177e4SLinus Torvalds time (mode 1); you can find the wiring of these cables in 23451da177e4SLinus Torvalds <file:Documentation/networking/PLIP.txt>. The cables can be up to 23461da177e4SLinus Torvalds 15m long. Mode 0 works also if one of the machines runs DOS/Windows 23471da177e4SLinus Torvalds and has some PLIP software installed, e.g. the Crynwr PLIP packet 23481da177e4SLinus Torvalds driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>) 23491da177e4SLinus Torvalds and winsock or NCSA's telnet. 23501da177e4SLinus Torvalds 23511da177e4SLinus Torvalds If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well 23521da177e4SLinus Torvalds as the NET-3-HOWTO, both available from 23531da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Note that the PLIP 23541da177e4SLinus Torvalds protocol has been changed and this PLIP driver won't work together 23551da177e4SLinus Torvalds with the PLIP support in Linux versions 1.0.x. This option enlarges 23561da177e4SLinus Torvalds your kernel by about 8 KB. 23571da177e4SLinus Torvalds 23581da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 23591da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 23601da177e4SLinus Torvalds called plip. If unsure, say Y or M, in case you buy a laptop 23611da177e4SLinus Torvalds later. 23621da177e4SLinus Torvalds 23631da177e4SLinus Torvaldsconfig PPP 23641da177e4SLinus Torvalds tristate "PPP (point-to-point protocol) support" 23651da177e4SLinus Torvalds ---help--- 23661da177e4SLinus Torvalds PPP (Point to Point Protocol) is a newer and better SLIP. It serves 23671da177e4SLinus Torvalds the same purpose: sending Internet traffic over telephone (and other 23681da177e4SLinus Torvalds serial) lines. Ask your access provider if they support it, because 23691da177e4SLinus Torvalds otherwise you can't use it; most Internet access providers these 23701da177e4SLinus Torvalds days support PPP rather than SLIP. 23711da177e4SLinus Torvalds 23721da177e4SLinus Torvalds To use PPP, you need an additional program called pppd as described 23731da177e4SLinus Torvalds in the PPP-HOWTO, available at 23741da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>. Make sure that you have 23751da177e4SLinus Torvalds the version of pppd recommended in <file:Documentation/Changes>. 23761da177e4SLinus Torvalds The PPP option enlarges your kernel by about 16 KB. 23771da177e4SLinus Torvalds 23781da177e4SLinus Torvalds There are actually two versions of PPP: the traditional PPP for 23791da177e4SLinus Torvalds asynchronous lines, such as regular analog phone lines, and 23801da177e4SLinus Torvalds synchronous PPP which can be used over digital ISDN lines for 23811da177e4SLinus Torvalds example. If you want to use PPP over phone lines or other 23821da177e4SLinus Torvalds asynchronous serial lines, you need to say Y (or M) here and also to 23831da177e4SLinus Torvalds the next option, "PPP support for async serial ports". For PPP over 23841da177e4SLinus Torvalds synchronous lines, you should say Y (or M) here and to "Support 23851da177e4SLinus Torvalds synchronous PPP", below. 23861da177e4SLinus Torvalds 23871da177e4SLinus Torvalds If you said Y to "Version information on all symbols" above, then 23881da177e4SLinus Torvalds you cannot compile the PPP driver into the kernel; you can then only 23891da177e4SLinus Torvalds compile it as a module. To compile this driver as a module, choose M 23901da177e4SLinus Torvalds here and read <file:Documentation/networking/net-modules.txt>. 23911da177e4SLinus Torvalds The module will be called ppp_generic. 23921da177e4SLinus Torvalds 23931da177e4SLinus Torvaldsconfig PPP_MULTILINK 23941da177e4SLinus Torvalds bool "PPP multilink support (EXPERIMENTAL)" 23951da177e4SLinus Torvalds depends on PPP && EXPERIMENTAL 23961da177e4SLinus Torvalds help 23971da177e4SLinus Torvalds PPP multilink is a protocol (defined in RFC 1990) which allows you 23981da177e4SLinus Torvalds to combine several (logical or physical) lines into one logical PPP 23991da177e4SLinus Torvalds connection, so that you can utilize your full bandwidth. 24001da177e4SLinus Torvalds 24011da177e4SLinus Torvalds This has to be supported at the other end as well and you need a 24021da177e4SLinus Torvalds version of the pppd daemon which understands the multilink protocol. 24031da177e4SLinus Torvalds 24041da177e4SLinus Torvalds If unsure, say N. 24051da177e4SLinus Torvalds 24061da177e4SLinus Torvaldsconfig PPP_FILTER 24071da177e4SLinus Torvalds bool "PPP filtering" 24081da177e4SLinus Torvalds depends on PPP 24091da177e4SLinus Torvalds help 24101da177e4SLinus Torvalds Say Y here if you want to be able to filter the packets passing over 24111da177e4SLinus Torvalds PPP interfaces. This allows you to control which packets count as 24121da177e4SLinus Torvalds activity (i.e. which packets will reset the idle timer or bring up 24131da177e4SLinus Torvalds a demand-dialled link) and which packets are to be dropped entirely. 24141da177e4SLinus Torvalds You need to say Y here if you wish to use the pass-filter and 24151da177e4SLinus Torvalds active-filter options to pppd. 24161da177e4SLinus Torvalds 24171da177e4SLinus Torvalds If unsure, say N. 24181da177e4SLinus Torvalds 24191da177e4SLinus Torvaldsconfig PPP_ASYNC 24201da177e4SLinus Torvalds tristate "PPP support for async serial ports" 24211da177e4SLinus Torvalds depends on PPP 24221da177e4SLinus Torvalds select CRC_CCITT 24231da177e4SLinus Torvalds ---help--- 24241da177e4SLinus Torvalds Say Y (or M) here if you want to be able to use PPP over standard 24251da177e4SLinus Torvalds asynchronous serial ports, such as COM1 or COM2 on a PC. If you use 24261da177e4SLinus Torvalds a modem (not a synchronous or ISDN modem) to contact your ISP, you 24271da177e4SLinus Torvalds need this option. 24281da177e4SLinus Torvalds 24291da177e4SLinus Torvalds To compile this driver as a module, choose M here. 24301da177e4SLinus Torvalds 24311da177e4SLinus Torvalds If unsure, say Y. 24321da177e4SLinus Torvalds 24331da177e4SLinus Torvaldsconfig PPP_SYNC_TTY 24341da177e4SLinus Torvalds tristate "PPP support for sync tty ports" 24351da177e4SLinus Torvalds depends on PPP 24361da177e4SLinus Torvalds help 24371da177e4SLinus Torvalds Say Y (or M) here if you want to be able to use PPP over synchronous 24381da177e4SLinus Torvalds (HDLC) tty devices, such as the SyncLink adapter. These devices 24391da177e4SLinus Torvalds are often used for high-speed leased lines like T1/E1. 24401da177e4SLinus Torvalds 24411da177e4SLinus Torvalds To compile this driver as a module, choose M here. 24421da177e4SLinus Torvalds 24431da177e4SLinus Torvaldsconfig PPP_DEFLATE 24441da177e4SLinus Torvalds tristate "PPP Deflate compression" 24451da177e4SLinus Torvalds depends on PPP 24461da177e4SLinus Torvalds select ZLIB_INFLATE 24471da177e4SLinus Torvalds select ZLIB_DEFLATE 24481da177e4SLinus Torvalds ---help--- 24491da177e4SLinus Torvalds Support for the Deflate compression method for PPP, which uses the 24501da177e4SLinus Torvalds Deflate algorithm (the same algorithm that gzip uses) to compress 24511da177e4SLinus Torvalds each PPP packet before it is sent over the wire. The machine at the 24521da177e4SLinus Torvalds other end of the PPP link (usually your ISP) has to support the 24531da177e4SLinus Torvalds Deflate compression method as well for this to be useful. Even if 24541da177e4SLinus Torvalds they don't support it, it is safe to say Y here. 24551da177e4SLinus Torvalds 24561da177e4SLinus Torvalds To compile this driver as a module, choose M here. 24571da177e4SLinus Torvalds 24581da177e4SLinus Torvaldsconfig PPP_BSDCOMP 24591da177e4SLinus Torvalds tristate "PPP BSD-Compress compression" 24601da177e4SLinus Torvalds depends on PPP 24611da177e4SLinus Torvalds ---help--- 24621da177e4SLinus Torvalds Support for the BSD-Compress compression method for PPP, which uses 24631da177e4SLinus Torvalds the LZW compression method to compress each PPP packet before it is 24641da177e4SLinus Torvalds sent over the wire. The machine at the other end of the PPP link 24651da177e4SLinus Torvalds (usually your ISP) has to support the BSD-Compress compression 24661da177e4SLinus Torvalds method as well for this to be useful. Even if they don't support it, 24671da177e4SLinus Torvalds it is safe to say Y here. 24681da177e4SLinus Torvalds 24691da177e4SLinus Torvalds The PPP Deflate compression method ("PPP Deflate compression", 24701da177e4SLinus Torvalds above) is preferable to BSD-Compress, because it compresses better 24711da177e4SLinus Torvalds and is patent-free. 24721da177e4SLinus Torvalds 24731da177e4SLinus Torvalds Note that the BSD compression code will always be compiled as a 24741da177e4SLinus Torvalds module; it is called bsd_comp and will show up in the directory 24751da177e4SLinus Torvalds modules once you have said "make modules". If unsure, say N. 24761da177e4SLinus Torvalds 24771da177e4SLinus Torvaldsconfig PPPOE 24781da177e4SLinus Torvalds tristate "PPP over Ethernet (EXPERIMENTAL)" 24791da177e4SLinus Torvalds depends on EXPERIMENTAL && PPP 24801da177e4SLinus Torvalds help 24811da177e4SLinus Torvalds Support for PPP over Ethernet. 24821da177e4SLinus Torvalds 24831da177e4SLinus Torvalds This driver requires the latest version of pppd from the CVS 24841da177e4SLinus Torvalds repository at cvs.samba.org. Alternatively, see the 24851da177e4SLinus Torvalds RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>) 24861da177e4SLinus Torvalds which contains instruction on how to use this driver (under 24871da177e4SLinus Torvalds the heading "Kernel mode PPPoE"). 24881da177e4SLinus Torvalds 24891da177e4SLinus Torvaldsconfig PPPOATM 24901da177e4SLinus Torvalds tristate "PPP over ATM" 24911da177e4SLinus Torvalds depends on ATM && PPP 24921da177e4SLinus Torvalds help 24931da177e4SLinus Torvalds Support PPP (Point to Point Protocol) encapsulated in ATM frames. 24941da177e4SLinus Torvalds This implementation does not yet comply with section 8 of RFC2364, 24951da177e4SLinus Torvalds which can lead to bad results if the ATM peer loses state and 24961da177e4SLinus Torvalds changes its encapsulation unilaterally. 24971da177e4SLinus Torvalds 24981da177e4SLinus Torvaldsconfig SLIP 24991da177e4SLinus Torvalds tristate "SLIP (serial line) support" 25001da177e4SLinus Torvalds ---help--- 25011da177e4SLinus Torvalds Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to 25021da177e4SLinus Torvalds connect to your Internet service provider or to connect to some 25031da177e4SLinus Torvalds other local Unix box or if you want to configure your Linux box as a 25041da177e4SLinus Torvalds Slip/CSlip server for other people to dial in. SLIP (Serial Line 25051da177e4SLinus Torvalds Internet Protocol) is a protocol used to send Internet traffic over 25061da177e4SLinus Torvalds serial connections such as telephone lines or null modem cables; 25071da177e4SLinus Torvalds nowadays, the protocol PPP is more commonly used for this same 25081da177e4SLinus Torvalds purpose. 25091da177e4SLinus Torvalds 25101da177e4SLinus Torvalds Normally, your access provider has to support SLIP in order for you 25111da177e4SLinus Torvalds to be able to use it, but there is now a SLIP emulator called SLiRP 25121da177e4SLinus Torvalds around (available from 25131da177e4SLinus Torvalds <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which 25141da177e4SLinus Torvalds allows you to use SLIP over a regular dial up shell connection. If 25151da177e4SLinus Torvalds you plan to use SLiRP, make sure to say Y to CSLIP, below. The 25161da177e4SLinus Torvalds NET-3-HOWTO, available from 25171da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>, explains how to 25181da177e4SLinus Torvalds configure SLIP. Note that you don't need this option if you just 25191da177e4SLinus Torvalds want to run term (term is a program which gives you almost full 25201da177e4SLinus Torvalds Internet connectivity if you have a regular dial up shell account on 25211da177e4SLinus Torvalds some Internet connected Unix computer. Read 25221da177e4SLinus Torvalds <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP 25231da177e4SLinus Torvalds support will enlarge your kernel by about 4 KB. If unsure, say N. 25241da177e4SLinus Torvalds 25251da177e4SLinus Torvalds To compile this driver as a module, choose M here and read 25261da177e4SLinus Torvalds <file:Documentation/networking/net-modules.txt>. The module will be 25271da177e4SLinus Torvalds called slip. 25281da177e4SLinus Torvalds 25291da177e4SLinus Torvaldsconfig SLIP_COMPRESSED 25301da177e4SLinus Torvalds bool "CSLIP compressed headers" 25311da177e4SLinus Torvalds depends on SLIP 25321da177e4SLinus Torvalds ---help--- 25331da177e4SLinus Torvalds This protocol is faster than SLIP because it uses compression on the 25341da177e4SLinus Torvalds TCP/IP headers (not on the data itself), but it has to be supported 25351da177e4SLinus Torvalds on both ends. Ask your access provider if you are not sure and 25361da177e4SLinus Torvalds answer Y, just in case. You will still be able to use plain SLIP. If 25371da177e4SLinus Torvalds you plan to use SLiRP, the SLIP emulator (available from 25381da177e4SLinus Torvalds <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which 25391da177e4SLinus Torvalds allows you to use SLIP over a regular dial up shell connection, you 25401da177e4SLinus Torvalds definitely want to say Y here. The NET-3-HOWTO, available from 25411da177e4SLinus Torvalds <http://www.tldp.org/docs.html#howto>, explains how to configure 25421da177e4SLinus Torvalds CSLIP. This won't enlarge your kernel. 25431da177e4SLinus Torvalds 25441da177e4SLinus Torvaldsconfig SLIP_SMART 25451da177e4SLinus Torvalds bool "Keepalive and linefill" 25461da177e4SLinus Torvalds depends on SLIP 25471da177e4SLinus Torvalds help 25481da177e4SLinus Torvalds Adds additional capabilities to the SLIP driver to support the 25491da177e4SLinus Torvalds RELCOM line fill and keepalive monitoring. Ideal on poor quality 25501da177e4SLinus Torvalds analogue lines. 25511da177e4SLinus Torvalds 25521da177e4SLinus Torvaldsconfig SLIP_MODE_SLIP6 25531da177e4SLinus Torvalds bool "Six bit SLIP encapsulation" 25541da177e4SLinus Torvalds depends on SLIP 25551da177e4SLinus Torvalds help 25561da177e4SLinus Torvalds Just occasionally you may need to run IP over hostile serial 25571da177e4SLinus Torvalds networks that don't pass all control characters or are only seven 25581da177e4SLinus Torvalds bit. Saying Y here adds an extra mode you can use with SLIP: 25591da177e4SLinus Torvalds "slip6". In this mode, SLIP will only send normal ASCII symbols over 25601da177e4SLinus Torvalds the serial device. Naturally, this has to be supported at the other 25611da177e4SLinus Torvalds end of the link as well. It's good enough, for example, to run IP 25621da177e4SLinus Torvalds over the async ports of a Camtec JNT Pad. If unsure, say N. 25631da177e4SLinus Torvalds 25641da177e4SLinus Torvaldsconfig NET_FC 25651da177e4SLinus Torvalds bool "Fibre Channel driver support" 2566cbcd2a4cSRandy Dunlap depends on SCSI && PCI 25671da177e4SLinus Torvalds help 25681da177e4SLinus Torvalds Fibre Channel is a high speed serial protocol mainly used to connect 25691da177e4SLinus Torvalds large storage devices to the computer; it is compatible with and 25701da177e4SLinus Torvalds intended to replace SCSI. 25711da177e4SLinus Torvalds 25721da177e4SLinus Torvalds If you intend to use Fibre Channel, you need to have a Fibre channel 25731da177e4SLinus Torvalds adaptor card in your computer; say Y here and to the driver for your 25741da177e4SLinus Torvalds adaptor below. You also should have said Y to "SCSI support" and 25751da177e4SLinus Torvalds "SCSI generic support". 25761da177e4SLinus Torvalds 25771da177e4SLinus Torvaldsconfig SHAPER 25781da177e4SLinus Torvalds tristate "Traffic Shaper (EXPERIMENTAL)" 2579cbcd2a4cSRandy Dunlap depends on EXPERIMENTAL 25801da177e4SLinus Torvalds ---help--- 25811da177e4SLinus Torvalds The traffic shaper is a virtual network device that allows you to 25821da177e4SLinus Torvalds limit the rate of outgoing data flow over some other network device. 25831da177e4SLinus Torvalds The traffic that you want to slow down can then be routed through 25841da177e4SLinus Torvalds these virtual devices. See 25851da177e4SLinus Torvalds <file:Documentation/networking/shaper.txt> for more information. 25861da177e4SLinus Torvalds 25871da177e4SLinus Torvalds An alternative to this traffic shaper is the experimental 25881da177e4SLinus Torvalds Class-Based Queueing (CBQ) scheduling support which you get if you 25891da177e4SLinus Torvalds say Y to "QoS and/or fair queueing" above. 25901da177e4SLinus Torvalds 25911da177e4SLinus Torvalds To set up and configure shaper devices, you need the shapecfg 25921da177e4SLinus Torvalds program, available from <ftp://shadow.cabi.net/pub/Linux/> in the 25931da177e4SLinus Torvalds shaper package. 25941da177e4SLinus Torvalds 25951da177e4SLinus Torvalds To compile this driver as a module, choose M here: the module 25961da177e4SLinus Torvalds will be called shaper. If unsure, say N. 25971da177e4SLinus Torvalds 25981da177e4SLinus Torvaldsconfig NETCONSOLE 25991da177e4SLinus Torvalds tristate "Network console logging support (EXPERIMENTAL)" 26005e43db77SMatt Mackall depends on EXPERIMENTAL 26011da177e4SLinus Torvalds ---help--- 26021da177e4SLinus Torvalds If you want to log kernel messages over the network, enable this. 26031da177e4SLinus Torvalds See <file:Documentation/networking/netconsole.txt> for details. 26041da177e4SLinus Torvalds 2605cbcd2a4cSRandy Dunlapendif #NETDEVICES 2606cbcd2a4cSRandy Dunlap 260754208991SRandy Dunlapconfig NETPOLL 260854208991SRandy Dunlap def_bool NETCONSOLE 260954208991SRandy Dunlap 261054208991SRandy Dunlapconfig NETPOLL_RX 261154208991SRandy Dunlap bool "Netpoll support for trapping incoming packets" 261254208991SRandy Dunlap default n 261354208991SRandy Dunlap depends on NETPOLL 261454208991SRandy Dunlap 261554208991SRandy Dunlapconfig NETPOLL_TRAP 261654208991SRandy Dunlap bool "Netpoll traffic trapping" 261754208991SRandy Dunlap default n 261854208991SRandy Dunlap depends on NETPOLL 261954208991SRandy Dunlap 262054208991SRandy Dunlapconfig NET_POLL_CONTROLLER 262154208991SRandy Dunlap def_bool NETPOLL 262254208991SRandy Dunlap 2623d5950b43SSam Ravnborgendmenu 2624