VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / net / Kconfig
1
2 #
3 # Network device configuration
4 #
5
6 config NETDEVICES
7         depends on NET
8         bool "Network device support"
9         ---help---
10           You can say N here if you don't intend to connect your Linux box to
11           any other computer at all.
12
13           You'll have to say Y if your computer contains a network card that
14           you want to use under Linux. If you are going to run SLIP or PPP over
15           telephone line or null modem cable you need say Y here. Connecting
16           two machines with parallel ports using PLIP needs this, as well as
17           AX.25/KISS for sending Internet traffic over amateur radio links.
18
19           See also "The Linux Network Administrator's Guide" by Olaf Kirch and
20           Terry Dawson. Available at <http://www.tldp.org/guides.html>.
21
22           If unsure, say Y.
23
24 config DUMMY
25         tristate "Dummy net driver support"
26         depends on NETDEVICES
27         ---help---
28           This is essentially a bit-bucket device (i.e. traffic you send to
29           this device is consigned into oblivion) with a configurable IP
30           address. It is most commonly used in order to make your currently
31           inactive SLIP address seem like a real address for local programs.
32           If you use SLIP or PPP, you might want to say Y here. Since this
33           thing often comes in handy, the default is Y. It won't enlarge your
34           kernel either. What a deal. Read about it in the Network
35           Administrator's Guide, available from
36           <http://www.tldp.org/docs.html#guide>.
37
38           To compile this driver as a module, choose M here: the module
39           will be called dummy.  If you want to use more than one dummy
40           device at a time, you need to compile this driver as a module.
41           Instead of 'dummy', the devices will then be called 'dummy0',
42           'dummy1' etc.
43
44 config BONDING
45         tristate "Bonding driver support"
46         depends on NETDEVICES
47         ---help---
48           Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
49           Channels together. This is called 'Etherchannel' by Cisco,
50           'Trunking' by Sun, and 'Bonding' in Linux.
51
52           If you have two Ethernet connections to some other computer, you can
53           make them behave like one double speed connection using this driver.
54           Naturally, this has to be supported at the other end as well, either
55           with a similar Bonding Linux driver, a Cisco 5500 switch or a
56           SunTrunking SunSoft driver.
57
58           This is similar to the EQL driver, but it merges Ethernet segments
59           instead of serial lines.
60
61           To compile this driver as a module, choose M here: the module
62           will be called bonding.
63
64 config EQUALIZER
65         tristate "EQL (serial line load balancing) support"
66         depends on NETDEVICES
67         ---help---
68           If you have two serial connections to some other computer (this
69           usually requires two modems and two telephone lines) and you use
70           SLIP (the protocol for sending Internet traffic over telephone
71           lines) or PPP (a better SLIP) on them, you can make them behave like
72           one double speed connection using this driver.  Naturally, this has
73           to be supported at the other end as well, either with a similar EQL
74           Linux driver or with a Livingston Portmaster 2e.
75
76           Say Y if you want this and read
77           <file:Documentation/networking/eql.txt>.  You may also want to read
78           section 6.2 of the NET-3-HOWTO, available from
79           <http://www.tldp.org/docs.html#howto>.
80
81           To compile this driver as a module, choose M here: the module
82           will be called eql.  If unsure, say N.
83
84 config TUN
85         tristate "Universal TUN/TAP device driver support"
86         depends on NETDEVICES
87         ---help---
88           TUN/TAP provides packet reception and transmission for user space
89           programs.  It can be viewed as a simple Point-to-Point or Ethernet
90           device, which instead of receiving packets from a physical media,
91           receives them from user space program and instead of sending packets
92           via physical media writes them to the user space program.
93
94           When a program opens /dev/net/tun, driver creates and registers
95           corresponding net device tunX or tapX.  After a program closed above
96           devices, driver will automatically delete tunXX or tapXX device and
97           all routes corresponding to it.
98
99           Please read <file:Documentation/networking/tuntap.txt> for more
100           information.
101
102           To compile this driver as a module, choose M here: the module
103           will be called tun.
104
105           If you don't know what to use this for, you don't need it.
106
107 config ETHERTAP
108         tristate "Ethertap network tap"
109         depends on NETDEVICES && EXPERIMENTAL && NETLINK_DEV
110         ---help---
111           If you say Y here (and have said Y to "Kernel/User network link
112           driver", above) and create a character special file /dev/tap0 with
113           major number 36 and minor number 16 using mknod ("man mknod"), you
114           will be able to have a user space program read and write raw
115           Ethernet frames from/to that special file.  tap0 can be configured
116           with ifconfig and route like any other Ethernet device but it is not
117           connected to any physical LAN; everything written by the user to
118           /dev/tap0 is treated by the kernel as if it had come in from a LAN
119           to the device tap0; everything the kernel wants to send out over the
120           device tap0 can instead be read by the user from /dev/tap0: the user
121           mode program replaces the LAN that would be attached to an ordinary
122           Ethernet device. Please read the file
123           <file:Documentation/networking/ethertap.txt> for more information.
124
125           To compile this driver as a module, choose M here: the module
126           will be called ethertap.
127
128           If you don't know what to use this for, you don't need it.
129
130 config NET_SB1000
131         tristate "General Instruments Surfboard 1000"
132         depends on NETDEVICES && PNP
133         ---help---
134           This is a driver for the General Instrument (also known as
135           NextLevel) SURFboard 1000 internal
136           cable modem. This is an ISA card which is used by a number of cable
137           TV companies to provide cable modem access. It's a one-way
138           downstream-only cable modem, meaning that your upstream net link is
139           provided by your regular phone modem.
140
141           At present this driver only compiles as a module, so say M here if
142           you have this card. The module will be called sb1000. Then read
143           <file:Documentation/networking/README.sb1000> for information on how
144           to use this module, as it needs special ppp scripts for establishing
145           a connection. Further documentation and the necessary scripts can be
146           found at:
147
148           <http://www.jacksonville.net/~fventuri/>
149           <http://home.adelphia.net/~siglercm/sb1000.html>
150           <http://linuxpower.cx/~cable/>
151
152           If you don't have this card, of course say N.
153
154 if NETDEVICES
155         source "drivers/net/arcnet/Kconfig"
156 endif
157
158 #
159 #       Ethernet
160 #
161
162 menu "Ethernet (10 or 100Mbit)"
163         depends on NETDEVICES
164
165 config NET_ETHERNET
166         bool "Ethernet (10 or 100Mbit)"
167         ---help---
168           Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
169           type of Local Area Network (LAN) in universities and companies.
170
171           Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
172           coaxial cable, linking computers in a chain), 10BASE-T or twisted
173           pair (10 Mbps over twisted pair cable, linking computers to central
174           hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
175           100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
176           100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
177           cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
178           [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
179           Ethernet (1 Gbps over optical fiber or short copper links).
180
181           If your Linux machine will be connected to an Ethernet and you have
182           an Ethernet network interface card (NIC) installed in your computer,
183           say Y here and read the Ethernet-HOWTO, available from
184           <http://www.tldp.org/docs.html#howto>. You will then also have
185           to say Y to the driver for your particular NIC.
186
187           Note that the answer to this question won't directly affect the
188           kernel: saying N will just cause the configurator to skip all
189           the questions about Ethernet network cards. If unsure, say N.
190
191 config MII
192         tristate "Generic Media Independent Interface device support"
193         depends on NET_ETHERNET
194         help
195           Most ethernet controllers have MII transceiver either as an external
196           or internal device.  It is safe to say Y or M here even if your
197           ethernet card lack MII.
198
199 source "drivers/net/arm/Kconfig"
200
201 config MACE
202         tristate "MACE (Power Mac ethernet) support"
203         depends on NET_ETHERNET && PPC_PMAC
204         select CRC32
205         help
206           Power Macintoshes and clones with Ethernet built-in on the
207           motherboard will usually use a MACE (Medium Access Control for
208           Ethernet) interface. Say Y to include support for the MACE chip.
209
210           To compile this driver as a module, choose M here: the module
211           will be called mace.
212
213 config MACE_AAUI_PORT
214         bool "Use AAUI port instead of TP by default"
215         depends on MACE
216         help
217           Some Apple machines (notably the Apple Network Server) which use the
218           MACE ethernet chip have an Apple AUI port (small 15-pin connector),
219           instead of an 8-pin RJ45 connector for twisted-pair ethernet.  Say
220           Y here if you have such a machine.  If unsure, say N.
221           The driver will default to AAUI on ANS anyway, and if you use it as
222           a module, you can provide the port_aaui=0|1 to force the driver.
223
224 config BMAC
225         tristate "BMAC (G3 ethernet) support"
226         depends on NET_ETHERNET && PPC_PMAC
227         select CRC32
228         help
229           Say Y for support of BMAC Ethernet interfaces. These are used on G3
230           computers.
231
232           To compile this driver as a module, choose M here: the module
233           will be called bmac.
234
235 config OAKNET
236         tristate "National DP83902AV (Oak ethernet) support"
237         depends on NET_ETHERNET && PPC && BROKEN
238         select CRC32
239         help
240           Say Y if your machine has this type of Ethernet network card.
241
242           To compile this driver as a module, choose M here: the module
243           will be called oaknet.
244
245 config ARIADNE
246         tristate "Ariadne support"
247         depends on NET_ETHERNET && ZORRO
248         help
249           If you have a Village Tronic Ariadne Ethernet adapter, say Y.
250           Otherwise, say N.
251
252           To compile this driver as a module, choose M here: the module
253           will be called ariadne.
254
255 config A2065
256         tristate "A2065 support"
257         depends on NET_ETHERNET && ZORRO
258         select CRC32
259         help
260           If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
261           say N.
262
263           To compile this driver as a module, choose M here: the module
264           will be called a2065.
265
266 config HYDRA
267         tristate "Hydra support"
268         depends on NET_ETHERNET && ZORRO
269         select CRC32
270         help
271           If you have a Hydra Ethernet adapter, say Y. Otherwise, say N.
272
273           To compile this driver as a module, choose M here: the module
274           will be called hydra.
275
276 config ZORRO8390
277         tristate "Zorro NS8390-based Ethernet support"
278         depends on NET_ETHERNET && ZORRO
279         select CRC32
280         help
281           This driver is for Zorro Ethernet cards using an NS8390-compatible
282           chipset, like the Village Tronic Ariadne II and the Individual
283           Computers X-Surf Ethernet cards. If you have such a card, say Y.
284           Otherwise, say N.
285
286           To compile this driver as a module, choose M here: the module
287           will be called zorro8390.
288
289 config APNE
290         tristate "PCMCIA NE2000 support"
291         depends on NETDEVICES && AMIGA_PCMCIA
292         select CRC32
293         help
294           If you have a PCMCIA NE2000 compatible adapter, say Y.  Otherwise,
295           say N.
296
297           To compile this driver as a module, choose M here: the module
298           will be called apne.
299
300 config APOLLO_ELPLUS
301         tristate "Apollo 3c505 support"
302         depends on NETDEVICES && APOLLO
303         help
304           Say Y or M here if your Apollo has a 3Com 3c505 ISA Ethernet card.
305           If you don't have one made for Apollos, you can use one from a PC,
306           except that your Apollo won't be able to boot from it (because the
307           code in the ROM will be for a PC).
308
309 config MAC8390
310         bool "Macintosh NS 8390 based ethernet cards"
311         depends on NETDEVICES && MAC
312         select CRC32
313         help
314           If you want to include a driver to support Nubus or LC-PDS
315           Ethernet cards using an NS8390 chipset or its equivalent, say Y
316           and read the Ethernet-HOWTO, available from
317           <http://www.tldp.org/docs.html#howto>.
318
319 config MAC89x0
320         tristate "Macintosh CS89x0 based ethernet cards"
321         depends on NETDEVICES && MAC && BROKEN
322         ---help---
323           Support for CS89x0 chipset based Ethernet cards.  If you have a
324           Nubus or LC-PDS network (Ethernet) card of this type, say Y and
325           read the Ethernet-HOWTO, available from
326           <http://www.tldp.org/docs.html#howto>.
327
328           To compile this driver as a module, choose M here and read
329           <file:Documentation/networking/net-modules.txt>.  This module will
330           be called mac89x0.
331
332 config MACSONIC
333         tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
334         depends on NETDEVICES && MAC
335         ---help---
336           Support for NatSemi SONIC based Ethernet devices.  This includes
337           the onboard Ethernet in many Quadras as well as some LC-PDS,
338           a few Nubus and all known Comm Slot Ethernet cards.  If you have
339           one of these say Y and read the Ethernet-HOWTO, available from
340           <http://www.tldp.org/docs.html#howto>.
341
342           To compile this driver as a module, choose M here and read
343           <file:Documentation/networking/net-modules.txt>.  This module will
344           be called macsonic.
345
346 config MACMACE
347         bool "Macintosh (AV) onboard MACE ethernet (EXPERIMENTAL)"
348         depends on NETDEVICES && MAC && EXPERIMENTAL
349         select CRC32
350         help
351           Support for the onboard AMD 79C940 MACE Ethernet controller used in
352           the 660AV and 840AV Macintosh.  If you have one of these Macintoshes
353           say Y and read the Ethernet-HOWTO, available from
354           <http://www.tldp.org/docs.html#howto>.
355
356 config MVME147_NET
357         tristate "MVME147 (Lance) Ethernet support"
358         depends on NETDEVICES && MVME147
359         select CRC32
360         help
361           Support for the on-board Ethernet interface on the Motorola MVME147
362           single-board computer.  Say Y here to include the
363           driver for this chip in your kernel.
364           To compile this driver as a module, choose M here.
365
366 config MVME16x_NET
367         tristate "MVME16x Ethernet support"
368         depends on NETDEVICES && MVME16x
369         help
370           This is the driver for the Ethernet interface on the Motorola
371           MVME162, 166, 167, 172 and 177 boards.  Say Y here to include the
372           driver for this chip in your kernel.
373           To compile this driver as a module, choose M here.
374
375 config BVME6000_NET
376         tristate "BVME6000 Ethernet support"
377         depends on NETDEVICES && BVME6000
378         help
379           This is the driver for the Ethernet interface on BVME4000 and
380           BVME6000 VME boards.  Say Y here to include the driver for this chip
381           in your kernel.
382           To compile this driver as a module, choose M here.
383
384 config ATARILANCE
385         tristate "Atari Lance support"
386         depends on NETDEVICES && ATARI
387         help
388           Say Y to include support for several Atari Ethernet adapters based
389           on the AMD Lance chipset: RieblCard (with or without battery), or
390           PAMCard VME (also the version by Rhotron, with different addresses).
391
392 config ATARI_BIONET
393         tristate "BioNet-100 support"
394         depends on NETDEVICES && ATARI && ATARI_ACSI!=n && BROKEN
395         help
396           Say Y to include support for BioData's BioNet-100 Ethernet adapter
397           for the ACSI port. The driver works (has to work...) with a polled
398           I/O scheme, so it's rather slow :-(
399
400 config ATARI_PAMSNET
401         tristate "PAMsNet support"
402         depends on NETDEVICES && ATARI && ATARI_ACSI!=n && BROKEN
403         help
404           Say Y to include support for the PAMsNet Ethernet adapter for the
405           ACSI port ("ACSI node"). The driver works (has to work...) with a
406           polled I/O scheme, so it's rather slow :-(
407
408 config SUN3LANCE
409         tristate "Sun3/Sun3x on-board LANCE support"
410         depends on NETDEVICES && (SUN3 || SUN3X)
411         help
412           Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
413           featured an AMD Lance 10Mbit Ethernet controller on board; say Y
414           here to compile in the Linux driver for this and enable Ethernet.
415           General Linux information on the Sun 3 and 3x series (now
416           discontinued) is at
417           <http://www.angelfire.com/ca2/tech68k/sun3.html>.
418
419           If you're not building a kernel for a Sun 3, say N.
420
421 config SUN3_82586
422         tristate "Sun3 on-board Intel 82586 support"
423         depends on NETDEVICES && SUN3
424         help
425           This driver enables support for the on-board Intel 82586 based
426           Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards.  Note
427           that this driver does not support 82586-based adapters on additional
428           VME boards.
429
430 config HPLANCE
431         bool "HP on-board LANCE support"
432         depends on NETDEVICES && HP300
433         select CRC32
434         help
435           If you want to use the builtin "LANCE" Ethernet controller on an
436           HP300 machine, say Y here.
437
438 config LASI_82596
439         tristate "Lasi ethernet"
440         depends on NET_ETHERNET && PARISC && GSC_LASI
441         help
442           Say Y here to support the on-board Intel 82596 ethernet controller
443           built into Hewlett-Packard PA-RISC machines.
444
445 config MIPS_JAZZ_SONIC
446         tristate "MIPS JAZZ onboard SONIC Ethernet support"
447         depends on NET_ETHERNET && MIPS_JAZZ
448         help
449           This is the driver for the onboard card of MIPS Magnum 4000,
450           Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
451
452 config MIPS_GT96100ETH
453         bool "MIPS GT96100 Ethernet support"
454         depends on NET_ETHERNET && MIPS_GT96100
455         help
456           Say Y here to support the Ethernet subsystem on your GT96100 card.
457
458 config MIPS_AU1X00_ENET
459         bool "MIPS AU1000 Ethernet support"
460         depends on NET_ETHERNET && SOC_AU1X00
461         select CRC32
462         help
463           If you have an Alchemy Semi AU1X00 based system
464           say Y.  Otherwise, say N.
465
466 config NET_SB1250_MAC
467         tristate "SB1250 Ethernet support"
468         depends on NET_ETHERNET && SIBYTE_SB1xxx_SOC
469
470 config SGI_IOC3_ETH
471         bool "SGI IOC3 Ethernet"
472         depends on NET_ETHERNET && SGI_IP27
473         select CRC32
474         select MII
475         help
476           If you have a network (Ethernet) card of this type, say Y and read
477           the Ethernet-HOWTO, available from
478           <http://www.tldp.org/docs.html#howto>.
479
480 config SGI_IOC3_ETH_HW_RX_CSUM
481         bool "Receive hardware checksums"
482         depends on SGI_IOC3_ETH && INET
483         default y
484         help
485           The SGI IOC3 network adapter supports TCP and UDP checksums in
486           hardware to offload processing of these checksums from the CPU.  At
487           the moment only acceleration of IPv4 is supported.  This option
488           enables offloading for checksums on receive.  If unsure, say Y.
489
490 config SGI_IOC3_ETH_HW_TX_CSUM
491         bool "Transmit hardware checksums"
492         depends on SGI_IOC3_ETH && INET
493         default y
494         help
495           The SGI IOC3 network adapter supports TCP and UDP checksums in
496           hardware to offload processing of these checksums from the CPU.  At
497           the moment only acceleration of IPv4 is supported.  This option
498           enables offloading for checksums on transmit.  If unsure, say Y.
499
500 config SGI_O2MACE_ETH
501         tristate "SGI O2 MACE Fast Ethernet support"
502         depends on NET_ETHERNET && SGI_IP32=y
503
504 config STNIC
505         tristate "National DP83902AV  support"
506         depends on NET_ETHERNET && SUPERH
507         select CRC32
508         help
509           Support for cards based on the National Semiconductor DP83902AV
510           ST-NIC Serial Network Interface Controller for Twisted Pair.  This
511           is a 10Mbit/sec Ethernet controller.  Product overview and specs at
512           <http://www.national.com/pf/DP/DP83902A.html>.
513
514           If unsure, say N.
515
516 config SUNLANCE
517         tristate "Sun LANCE support"
518         depends on NET_ETHERNET && SBUS
519         select CRC32
520         help
521           This driver supports the "le" interface present on all 32-bit Sparc
522           systems, on some older Ultra systems and as an Sbus option.  These
523           cards are based on the AMD Lance chipset, which is better known
524           via the NE2100 cards.
525
526           To compile this driver as a module, choose M here: the module
527           will be called sunlance.
528
529 config HAPPYMEAL
530         tristate "Sun Happy Meal 10/100baseT support"
531         depends on NET_ETHERNET && (SBUS || PCI)
532         select CRC32
533         help
534           This driver supports the "hme" interface present on most Ultra
535           systems and as an option on older Sbus systems. This driver supports
536           both PCI and Sbus devices. This driver also supports the "qfe" quad
537           100baseT device available in both PCI and Sbus configurations.
538
539           To compile this driver as a module, choose M here: the module
540           will be called sunhme.
541
542 config SUNBMAC
543         tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
544         depends on NET_ETHERNET && SBUS && EXPERIMENTAL
545         select CRC32
546         help
547           This driver supports the "be" interface available as an Sbus option.
548           This is Sun's older 100baseT Ethernet device.
549
550           To compile this driver as a module, choose M here: the module
551           will be called sunbmac.
552
553 config SUNQE
554         tristate "Sun QuadEthernet support"
555         depends on NET_ETHERNET && SBUS
556         select CRC32
557         help
558           This driver supports the "qe" 10baseT Ethernet device, available as
559           an Sbus option. Note that this is not the same as Quad FastEthernet
560           "qfe" which is supported by the Happy Meal driver instead.
561
562           To compile this driver as a module, choose M here: the module
563           will be called sunqe.
564
565 config SUNGEM
566         tristate "Sun GEM support"
567         depends on NET_ETHERNET && PCI
568         select CRC32
569         help
570           Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0.  See also
571           <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
572
573 config NET_VENDOR_3COM
574         bool "3COM cards"
575         depends on NET_ETHERNET && (ISA || EISA || MCA || PCI)
576         help
577           If you have a network (Ethernet) card belonging to this class, say Y
578           and read the Ethernet-HOWTO, available from
579           <http://www.tldp.org/docs.html#howto>.
580
581           Note that the answer to this question doesn't directly affect the
582           kernel: saying N will just cause the configurator to skip all
583           the questions about 3COM cards. If you say Y, you will be asked for
584           your specific card in the following questions.
585
586 config EL1
587         tristate "3c501 \"EtherLink\" support"
588         depends on NET_VENDOR_3COM && ISA
589         ---help---
590           If you have a network (Ethernet) card of this type, say Y and read
591           the Ethernet-HOWTO, available from
592           <http://www.tldp.org/docs.html#howto>.  Also, consider buying a
593           new card, since the 3c501 is slow, broken, and obsolete: you will
594           have problems.  Some people suggest to ping ("man ping") a nearby
595           machine every minute ("man cron") when using this card.
596
597           To compile this driver as a module, choose M here and read
598           <file:Documentation/networking/net-modules.txt>. The module
599           will be called 3c501.
600
601 config EL2
602         tristate "3c503 \"EtherLink II\" support"
603         depends on NET_VENDOR_3COM && ISA
604         select CRC32
605         help
606           If you have a network (Ethernet) card of this type, say Y and read
607           the Ethernet-HOWTO, available from
608           <http://www.tldp.org/docs.html#howto>.
609
610           To compile this driver as a module, choose M here and read
611           <file:Documentation/networking/net-modules.txt>. The module
612           will be called 3c503.
613
614 config ELPLUS
615         tristate "3c505 \"EtherLink Plus\" support"
616         depends on NET_VENDOR_3COM && ISA
617         ---help---
618           Information about this network (Ethernet) card can be found in
619           <file:Documentation/networking/3c505.txt>.  If you have a card of
620           this type, say Y and read the Ethernet-HOWTO, available from
621           <http://www.tldp.org/docs.html#howto>.
622
623           To compile this driver as a module, choose M here and read
624           <file:Documentation/networking/net-modules.txt>. The module
625           will be called 3c505.
626
627 config EL16
628         tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
629         depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
630         help
631           If you have a network (Ethernet) card of this type, say Y and read
632           the Ethernet-HOWTO, available from
633           <http://www.tldp.org/docs.html#howto>.
634
635           To compile this driver as a module, choose M here and read
636           <file:Documentation/networking/net-modules.txt>. The module
637           will be called 3c507.
638
639 config EL3
640         tristate "3c509/3c529 (MCA)/3c569B (98)/3c579 \"EtherLink III\" support"
641         depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
642         ---help---
643           If you have a network (Ethernet) card belonging to the 3Com
644           EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
645           from <http://www.tldp.org/docs.html#howto>.
646
647           If your card is not working you may need to use the DOS
648           setup disk to disable Plug & Play mode, and to select the default
649           media type.
650
651           To compile this driver as a module, choose M here and read
652           <file:Documentation/networking/net-modules.txt>. The module
653           will be called 3c509.
654
655 config 3C515
656         tristate "3c515 ISA \"Fast EtherLink\""
657         depends on NET_VENDOR_3COM && (ISA || EISA)
658         help
659           If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
660           network card, say Y and read the Ethernet-HOWTO, available from
661           <http://www.tldp.org/docs.html#howto>.
662
663           To compile this driver as a module, choose M here and read
664           <file:Documentation/networking/net-modules.txt>. The module
665           will be called 3c515.
666
667 config ELMC
668         tristate "3c523 \"EtherLink/MC\" support"
669         depends on NET_VENDOR_3COM && MCA_LEGACY
670         help
671           If you have a network (Ethernet) card of this type, say Y and read
672           the Ethernet-HOWTO, available from
673           <http://www.tldp.org/docs.html#howto>.
674
675           To compile this driver as a module, choose M here and read
676           <file:Documentation/networking/net-modules.txt>. The module
677           will be called 3c523.
678
679 config ELMC_II
680         tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
681         depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
682         help
683           If you have a network (Ethernet) card of this type, say Y and read
684           the Ethernet-HOWTO, available from
685           <http://www.tldp.org/docs.html#howto>.
686
687           To compile this driver as a module, choose M here and read
688           <file:Documentation/networking/net-modules.txt>. The module
689           will be called 3c527.
690
691 config VORTEX
692         tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
693         depends on NET_VENDOR_3COM && (PCI || EISA)
694         ---help---
695           This option enables driver support for a large number of 10mbps and
696           10/100mbps EISA, PCI and PCMCIA 3Com network cards:
697
698           "Vortex"    (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
699           "Boomerang" (EtherLink XL 3c900 or 3c905)            PCI
700           "Cyclone"   (3c540/3c900/3c905/3c980/3c575/3c656)    PCI and Cardbus
701           "Tornado"   (3c905)                                  PCI
702           "Hurricane" (3c555/3cSOHO)                           PCI
703
704           If you have such a card, say Y and read the Ethernet-HOWTO,
705           available from <http://www.tldp.org/docs.html#howto>. More
706           specific information is in
707           <file:Documentation/networking/vortex.txt> and in the comments at
708           the beginning of <file:drivers/net/3c59x.c>.
709
710           To compile this support as a module, choose M here and read
711           <file:Documentation/networking/net-modules.txt>.
712
713 config TYPHOON
714         tristate "3cr990 series \"Typhoon\" support"
715         depends on NET_VENDOR_3COM && PCI
716         select CRC32
717         ---help---
718           This option enables driver support for the 3cr990 series of cards:
719
720           3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
721           3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
722           3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
723
724           If you have a network (Ethernet) card of this type, say Y and read
725           the Ethernet-HOWTO, available from
726           <http://www.tldp.org/docs.html#howto>.
727
728           To compile this driver as a module, choose M here and read
729           <file:Documentation/networking/net-modules.txt>. The module
730           will be called typhoon.
731
732 config LANCE
733         tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
734         depends on NET_ETHERNET && ISA
735         help
736           If you have a network (Ethernet) card of this type, say Y and read
737           the Ethernet-HOWTO, available from
738           <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
739           of this type.
740
741           To compile this driver as a module, choose M here: the module
742           will be called lance.  This is recommended.
743
744 config NET_VENDOR_SMC
745         bool "Western Digital/SMC cards"
746         depends on NET_ETHERNET && (ISA || MCA || EISA || MAC)
747         help
748           If you have a network (Ethernet) card belonging to this class, say Y
749           and read the Ethernet-HOWTO, available from
750           <http://www.tldp.org/docs.html#howto>.
751
752           Note that the answer to this question doesn't directly affect the
753           kernel: saying N will just cause the configurator to skip all
754           the questions about Western Digital cards. If you say Y, you will be
755           asked for your specific card in the following questions.
756
757 config WD80x3
758         tristate "WD80*3 support"
759         depends on NET_VENDOR_SMC && ISA
760         select CRC32
761         help
762           If you have a network (Ethernet) card of this type, say Y and read
763           the Ethernet-HOWTO, available from
764           <http://www.tldp.org/docs.html#howto>.
765
766           To compile this driver as a module, choose M here and read
767           <file:Documentation/networking/net-modules.txt>. The module
768           will be called wd.
769
770 config ULTRAMCA
771         tristate "SMC Ultra MCA support"
772         depends on NET_VENDOR_SMC && MCA
773         select CRC32
774         help
775           If you have a network (Ethernet) card of this type and are running
776           an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
777           available from <http://www.tldp.org/docs.html#howto>.
778
779           To compile this driver as a module, choose M here and read
780           <file:Documentation/networking/net-modules.txt>. The module
781           will be called smc-mca.
782
783 config ULTRA
784         tristate "SMC Ultra support"
785         depends on NET_VENDOR_SMC && ISA
786         select CRC32
787         ---help---
788           If you have a network (Ethernet) card of this type, say Y and read
789           the Ethernet-HOWTO, available from
790           <http://www.tldp.org/docs.html#howto>.
791
792           Important: There have been many reports that, with some motherboards
793           mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible,
794           such as some BusLogic models) causes corruption problems with many
795           operating systems. The Linux smc-ultra driver has a work-around for
796           this but keep it in mind if you have such a SCSI card and have
797           problems.
798
799           To compile this driver as a module, choose M here and read
800           <file:Documentation/networking/net-modules.txt>. The module
801           will be called smc-ultra.
802
803 config ULTRA32
804         tristate "SMC Ultra32 EISA support"
805         depends on NET_VENDOR_SMC && EISA
806         select CRC32
807         help
808           If you have a network (Ethernet) card of this type, say Y and read
809           the Ethernet-HOWTO, available from
810           <http://www.tldp.org/docs.html#howto>.
811
812           To compile this driver as a module, choose M here and read
813           <file:Documentation/networking/net-modules.txt>. The module
814           will be called smc-ultra32.
815
816 config SMC91X
817         tristate "SMC 91C9x/91C1xxx support"
818         select CRC32
819         select MII
820         depends on NET_ETHERNET && (ARM || REDWOOD_5 || REDWOOD_6)
821         help
822           This is a driver for SMC's 91x series of Ethernet chipsets,
823           including the SMC91C94 and the SMC91C111. Say Y if you want it
824           compiled into the kernel, and read the file
825           <file:Documentation/networking/smc9.txt>  and the Ethernet-HOWTO,
826           available from  <http://www.linuxdoc.org/docs.html#howto>.
827
828           This driver is also available as a module ( = code which can be
829           inserted in and removed from the running kernel whenever you want).
830           The module will be called smc91x.  If you want to compile it as a
831           module, say M here and read <file:Documentation/modules.txt> as well
832           as <file:Documentation/networking/net-modules.txt>.
833
834 config SMC9194
835         tristate "SMC 9194 support"
836         depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
837         select CRC32
838         ---help---
839           This is support for the SMC9xxx based Ethernet cards. Choose this
840           option if you have a DELL laptop with the docking station, or
841           another SMC9192/9194 based chipset.  Say Y if you want it compiled
842           into the kernel, and read the file
843           <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
844           available from <http://www.tldp.org/docs.html#howto>.
845
846           To compile this driver as a module, choose M here and read
847           <file:Documentation/networking/net-modules.txt>. The module
848           will be called smc9194.
849
850 config NET_VENDOR_RACAL
851         bool "Racal-Interlan (Micom) NI cards"
852         depends on NET_ETHERNET && ISA
853         help
854           If you have a network (Ethernet) card belonging to this class, such
855           as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
856           available from <http://www.tldp.org/docs.html#howto>.
857
858           Note that the answer to this question doesn't directly affect the
859           kernel: saying N will just cause the configurator to skip all
860           the questions about NI cards. If you say Y, you will be asked for
861           your specific card in the following questions.
862
863 config NI5010
864         tristate "NI5010 support (EXPERIMENTAL)"
865         depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
866         ---help---
867           If you have a network (Ethernet) card of this type, say Y and read
868           the Ethernet-HOWTO, available from
869           <http://www.tldp.org/docs.html#howto>. Note that this is still
870           experimental code.
871
872           To compile this driver as a module, choose M here and read
873           <file:Documentation/networking/net-modules.txt>. The module
874           will be called ni5010.
875
876 config NI52
877         tristate "NI5210 support"
878         depends on NET_VENDOR_RACAL && ISA
879         help
880           If you have a network (Ethernet) card of this type, say Y and read
881           the Ethernet-HOWTO, available from
882           <http://www.tldp.org/docs.html#howto>.
883
884           To compile this driver as a module, choose M here and read
885           <file:Documentation/networking/net-modules.txt>. The module
886           will be called ni52.
887
888 config NI65
889         tristate "NI6510 support"
890         depends on NET_VENDOR_RACAL && ISA
891         help
892           If you have a network (Ethernet) card of this type, say Y and read
893           the Ethernet-HOWTO, available from
894           <http://www.tldp.org/docs.html#howto>.
895
896           To compile this driver as a module, choose M here and read
897           <file:Documentation/networking/net-modules.txt>. The module
898           will be called ni65.
899
900 source "drivers/net/tulip/Kconfig"
901
902 config AT1700
903         tristate "AT1700/1720/RE1000Plus(C-Bus) support (EXPERIMENTAL)"
904         depends on NET_ETHERNET && (ISA || MCA_LEGACY) && EXPERIMENTAL
905         select CRC32
906         ---help---
907           If you have a network (Ethernet) card of this type, say Y and read
908           the Ethernet-HOWTO, available from
909           <http://www.tldp.org/docs.html#howto>.
910
911           To compile this driver as a module, choose M here and read
912           <file:Documentation/networking/net-modules.txt>. The module
913           will be called at1700.
914
915 config DEPCA
916         tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
917         depends on NET_ETHERNET && (ISA || EISA || MCA)
918         select CRC32
919         ---help---
920           If you have a network (Ethernet) card of this type, say Y and read
921           the Ethernet-HOWTO, available from
922           <http://www.tldp.org/docs.html#howto> as well as
923           <file:drivers/net/depca.c>.
924
925           To compile this driver as a module, choose M here and read
926           <file:Documentation/networking/net-modules.txt>. The module
927           will be called depca.
928
929 config HP100
930         tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
931         depends on NET_ETHERNET && (ISA || EISA || PCI)
932         help
933           If you have a network (Ethernet) card of this type, say Y and read
934           the Ethernet-HOWTO, available from
935           <http://www.tldp.org/docs.html#howto>.
936
937           To compile this driver as a module, choose M here and read
938           <file:Documentation/networking/net-modules.txt>. The module
939           will be called hp100.
940
941 config NET_ISA
942         bool "Other ISA cards"
943         depends on NET_ETHERNET && ISA
944         ---help---
945           If your network (Ethernet) card hasn't been mentioned yet and its
946           bus system (that's the way the cards talks to the other components
947           of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
948           Make sure you know the name of your card. Read the Ethernet-HOWTO,
949           available from <http://www.tldp.org/docs.html#howto>.
950
951           If unsure, say Y.
952
953           Note that the answer to this question doesn't directly affect the
954           kernel: saying N will just cause the configurator to skip all
955           the remaining ISA network card questions. If you say Y, you will be
956           asked for your specific card in the following questions.
957
958 config E2100
959         tristate "Cabletron E21xx support"
960         depends on NET_ISA
961         select CRC32
962         help
963           If you have a network (Ethernet) card of this type, say Y and read
964           the Ethernet-HOWTO, available from
965           <http://www.tldp.org/docs.html#howto>.
966
967           To compile this driver as a module, choose M here and read
968           <file:Documentation/networking/net-modules.txt>. The module
969           will be called e2100.
970
971 config EWRK3
972         tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
973         depends on NET_ISA
974         select CRC32
975         ---help---
976           This driver supports the DE203, DE204 and DE205 network (Ethernet)
977           cards. If this is for you, say Y and read
978           <file:Documentation/networking/ewrk3.txt> in the kernel source as
979           well as the Ethernet-HOWTO, available from
980           <http://www.tldp.org/docs.html#howto>.
981
982           To compile this driver as a module, choose M here and read
983           <file:Documentation/networking/net-modules.txt>. The module
984           will be called ewrk3.
985
986 config EEXPRESS
987         tristate "EtherExpress 16 support"
988         depends on NET_ISA
989         ---help---
990           If you have an EtherExpress16 network (Ethernet) card, say Y and
991           read the Ethernet-HOWTO, available from
992           <http://www.tldp.org/docs.html#howto>.  Note that the Intel
993           EtherExpress16 card used to be regarded as a very poor choice
994           because the driver was very unreliable. We now have a new driver
995           that should do better.
996
997           To compile this driver as a module, choose M here and read
998           <file:Documentation/networking/net-modules.txt>. The module
999           will be called eexpress.
1000
1001 config EEXPRESS_PRO
1002         tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1003         depends on NET_ISA
1004         ---help---
1005           If you have a network (Ethernet) card of this type, say Y. This
1006           driver supports intel i82595{FX,TX} based boards. Note however
1007           that the EtherExpress PRO/100 Ethernet card has its own separate
1008           driver.  Please read the Ethernet-HOWTO, available from
1009           <http://www.tldp.org/docs.html#howto>.
1010
1011           To compile this driver as a module, choose M here and read
1012           <file:Documentation/networking/net-modules.txt>. The module
1013           will be called eepro.
1014
1015 config FMV18X
1016         tristate "FMV-181/182/183/184 support (OBSOLETE)"
1017         depends on NET_ISA && OBSOLETE
1018         ---help---
1019           If you have a Fujitsu FMV-181/182/183/184 network (Ethernet) card,
1020           say Y and read the Ethernet-HOWTO, available from
1021           <http://www.tldp.org/docs.html#howto>.
1022
1023           If you use an FMV-183 or FMV-184 and it is not working, you may need
1024           to disable Plug & Play mode of the card.
1025
1026           To compile this driver as a module, choose M here and read
1027           <file:Documentation/networking/net-modules.txt>. The module
1028           will be called fmv18x.
1029
1030 config HPLAN_PLUS
1031         tristate "HP PCLAN+ (27247B and 27252A) support"
1032         depends on NET_ISA
1033         select CRC32
1034         help
1035           If you have a network (Ethernet) card of this type, say Y and read
1036           the Ethernet-HOWTO, available from
1037           <http://www.tldp.org/docs.html#howto>.
1038
1039           To compile this driver as a module, choose M here and read
1040           <file:Documentation/networking/net-modules.txt>. The module
1041           will be called hp-plus.
1042
1043 config HPLAN
1044         tristate "HP PCLAN (27245 and other 27xxx series) support"
1045         depends on NET_ISA
1046         select CRC32
1047         help
1048           If you have a network (Ethernet) card of this type, say Y and read
1049           the Ethernet-HOWTO, available from
1050           <http://www.tldp.org/docs.html#howto>.
1051
1052           To compile this driver as a module, choose M here and read
1053           <file:Documentation/networking/net-modules.txt>. The module
1054           will be called hp.
1055
1056 config LP486E
1057         tristate "LP486E on board Ethernet"
1058         depends on NET_ISA
1059         help
1060           Say Y here to support the 82596-based on-board Ethernet controller
1061           for the Panther motherboard, which is one of the two shipped in the
1062           Intel Professional Workstation.
1063
1064 config ETH16I
1065         tristate "ICL EtherTeam 16i/32 support"
1066         depends on NET_ISA
1067         help
1068           If you have a network (Ethernet) card of this type, say Y and read
1069           the Ethernet-HOWTO, available from
1070           <http://www.tldp.org/docs.html#howto>.
1071
1072           To compile this driver as a module, choose M here and read
1073           <file:Documentation/networking/net-modules.txt>. The module
1074           will be called eth16i.
1075
1076 config NE2000
1077         tristate "NE2000/NE1000 support"
1078         depends on NET_ISA || (Q40 && m)
1079         select CRC32
1080         ---help---
1081           If you have a network (Ethernet) card of this type, say Y and read
1082           the Ethernet-HOWTO, available from
1083           <http://www.tldp.org/docs.html#howto>.  Many Ethernet cards
1084           without a specific driver are compatible with NE2000.
1085
1086           If you have a PCI NE2000 card however, say N here and Y to "PCI
1087           NE2000 support", above. If you have a NE2000 card and are running on
1088           an MCA system (a bus system used on some IBM PS/2 computers and
1089           laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1090           below.
1091
1092           To compile this driver as a module, choose M here and read
1093           <file:Documentation/networking/net-modules.txt>. The module
1094           will be called ne.
1095
1096 config ZNET
1097         tristate "Zenith Z-Note support (EXPERIMENTAL)"
1098         depends on NET_ISA && EXPERIMENTAL
1099         help
1100           The Zenith Z-Note notebook computer has a built-in network
1101           (Ethernet) card, and this is the Linux driver for it. Note that the
1102           IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1103           by this driver. Read the Ethernet-HOWTO, available from
1104           <http://www.tldp.org/docs.html#howto>.
1105
1106 config SEEQ8005
1107         tristate "SEEQ8005 support (EXPERIMENTAL)"
1108         depends on NET_ISA && EXPERIMENTAL
1109         help
1110           This is a driver for the SEEQ 8005 network (Ethernet) card.  If this
1111           is for you, read the Ethernet-HOWTO, available from
1112           <http://www.tldp.org/docs.html#howto>.
1113
1114           To compile this driver as a module, choose M here and read
1115           <file:Documentation/networking/net-modules.txt>. The module
1116           will be called seeq8005.
1117
1118 config SK_G16
1119         tristate "SK_G16 support (OBSOLETE)"
1120         depends on NET_ISA && OBSOLETE
1121         help
1122           If you have a network (Ethernet) card of this type, say Y and read
1123           the Ethernet-HOWTO, available from
1124           <http://www.tldp.org/docs.html#howto>.
1125
1126 config SKMC
1127         tristate "SKnet MCA support"
1128         depends on NET_ETHERNET && MCA && BROKEN
1129         ---help---
1130           These are Micro Channel Ethernet adapters. You need to say Y to "MCA
1131           support" in order to use this driver.  Supported cards are the SKnet
1132           Junior MC2 and the SKnet MC2(+).  The driver automatically
1133           distinguishes between the two cards. Note that using multiple boards
1134           of different type hasn't been tested with this driver.  Say Y if you
1135           have one of these Ethernet adapters.
1136
1137           To compile this driver as a module, choose M here and read
1138           <file:Documentation/networking/net-modules.txt>. The module
1139           will be called sk_mca.
1140
1141 config NE2_MCA
1142         tristate "NE/2 (ne2000 MCA version) support"
1143         depends on NET_ETHERNET && MCA_LEGACY
1144         select CRC32
1145         help
1146           If you have a network (Ethernet) card of this type, say Y and read
1147           the Ethernet-HOWTO, available from
1148           <http://www.tldp.org/docs.html#howto>.
1149
1150           To compile this driver as a module, choose M here and read
1151           <file:Documentation/networking/net-modules.txt>. The module
1152           will be called ne2.
1153
1154 config IBMLANA
1155         tristate "IBM LAN Adapter/A support"
1156         depends on NET_ETHERNET && MCA && MCA_LEGACY
1157         ---help---
1158           This is a Micro Channel Ethernet adapter.  You need to set
1159           CONFIG_MCA to use this driver.  It is both available as an in-kernel
1160           driver and as a module.
1161
1162           To compile this driver as a module, choose M here and read
1163           <file:Documentation/networking/net-modules.txt>. The only
1164           currently supported card is the IBM LAN Adapter/A for Ethernet.  It
1165           will both support 16K and 32K memory windows, however a 32K window
1166           gives a better security against packet losses.  Usage of multiple
1167           boards with this driver should be possible, but has not been tested
1168           up to now due to lack of hardware.
1169
1170 config IBMVETH
1171         tristate "IBM LAN Virtual Ethernet support"
1172         depends on NETDEVICES && NET_ETHERNET && PPC_PSERIES
1173         ---help---
1174           This driver supports virtual ethernet adapters on newer IBM iSeries
1175           and pSeries systems.
1176
1177           To compile this driver as a module, choose M here and read
1178           <file:Documentation/networking/net-modules.txt>. The module will
1179           be called ibmveth.
1180
1181 config IBM_EMAC
1182        tristate "IBM PPC4xx EMAC driver support"
1183        depends on 4xx
1184        ---help---
1185        This driver supports the IBM PPC4xx EMAC family of on-chip
1186        Ethernet controllers.
1187
1188 config IBM_EMAC_ERRMSG
1189        bool "Verbose error messages"
1190        depends on IBM_EMAC
1191
1192 config IBM_EMAC_RXB
1193        int "Number of receive buffers"
1194        depends on IBM_EMAC
1195        default "128" if IBM_EMAC4
1196        default "64"
1197
1198 config IBM_EMAC_TXB
1199        int "Number of transmit buffers"
1200        depends on IBM_EMAC
1201        default "128" if IBM_EMAC4
1202        default "8"
1203
1204 config IBM_EMAC_FGAP
1205        int "Frame gap"
1206        depends on IBM_EMAC
1207        default "8"
1208
1209 config IBM_EMAC_SKBRES
1210        int "Skb reserve amount"
1211        depends on IBM_EMAC
1212        default "0"
1213
1214 config NET_PCI
1215         bool "EISA, VLB, PCI and on board controllers"
1216         depends on NET_ETHERNET && (ISA || EISA || PCI)
1217         help
1218           This is another class of network cards which attach directly to the
1219           bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1220           available from <http://www.tldp.org/docs.html#howto>.
1221
1222           Note that the answer to this question doesn't directly affect the
1223           kernel: saying N will just cause the configurator to skip all
1224           the questions about this class of network cards. If you say Y, you
1225           will be asked for your specific card in the following questions. If
1226           you are unsure, say Y.
1227
1228 config PCNET32
1229         tristate "AMD PCnet32 PCI support"
1230         depends on NET_PCI && PCI
1231         select CRC32
1232         select MII
1233         help
1234           If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1235           answer Y here and read the Ethernet-HOWTO, available from
1236           <http://www.tldp.org/docs.html#howto>.
1237
1238           To compile this driver as a module, choose M here and read
1239           <file:Documentation/networking/net-modules.txt>. The module
1240           will be called pcnet32.
1241
1242 config AMD8111_ETH
1243         tristate "AMD 8111 (new PCI lance) support"
1244         depends on NET_PCI && PCI
1245         select CRC32
1246         select MII
1247         help
1248           If you have an AMD 8111-based PCI lance ethernet card,
1249           answer Y here and read the Ethernet-HOWTO, available from
1250           <http://www.tldp.org/docs.html#howto>.
1251
1252           To compile this driver as a module, choose M here and read
1253           <file:Documentation/networking/net-modules.txt>. The module
1254           will be called amd8111e.
1255 config AMD8111E_NAPI
1256         bool "Enable NAPI support"
1257         depends on AMD8111_ETH
1258         help
1259           NAPI is a new driver API designed to reduce CPU and interrupt load
1260           when the driver is receiving lots of packets from the card. It is
1261           still somewhat experimental and thus not yet enabled by default.
1262
1263           If your estimated Rx load is 10kpps or more, or if the card will be
1264           deployed on potentially unfriendly networks (e.g. in a firewall),
1265           then say Y here.
1266
1267           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1268           information.
1269
1270           If in doubt, say N.
1271
1272 config ADAPTEC_STARFIRE
1273         tristate "Adaptec Starfire/DuraLAN support"
1274         depends on NET_PCI && PCI
1275         select CRC32
1276         select MII
1277         help
1278           Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1279           adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1280           Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1281           driver.
1282
1283           To compile this driver as a module, choose M here: the module
1284           will be called starfire.  This is recommended.
1285
1286 config ADAPTEC_STARFIRE_NAPI
1287         bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1288         depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1289         help
1290           NAPI is a new driver API designed to reduce CPU and interrupt load
1291           when the driver is receiving lots of packets from the card. It is
1292           still somewhat experimental and thus not yet enabled by default.
1293
1294           If your estimated Rx load is 10kpps or more, or if the card will be
1295           deployed on potentially unfriendly networks (e.g. in a firewall),
1296           then say Y here.
1297
1298           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1299           information.
1300
1301           If in doubt, say N.
1302
1303 config AC3200
1304         tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1305         depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1306         select CRC32
1307         help
1308           If you have a network (Ethernet) card of this type, say Y and read
1309           the Ethernet-HOWTO, available from
1310           <http://www.tldp.org/docs.html#howto>.
1311
1312           To compile this driver as a module, choose M here and read
1313           <file:Documentation/networking/net-modules.txt>. The module
1314           will be called ac3200.
1315
1316 config APRICOT
1317         tristate "Apricot Xen-II on board Ethernet"
1318         depends on NET_PCI && ISA
1319         help
1320           If you have a network (Ethernet) controller of this type, say Y and
1321           read the Ethernet-HOWTO, available from
1322           <http://www.tldp.org/docs.html#howto>.
1323
1324           To compile this driver as a module, choose M here and read
1325           <file:Documentation/networking/net-modules.txt>.  The module will be
1326           called apricot.
1327
1328 config B44
1329         tristate "Broadcom 4400 ethernet support (EXPERIMENTAL)"
1330         depends on NET_PCI && PCI && EXPERIMENTAL
1331         select MII
1332         help
1333           If you have a network (Ethernet) controller of this type, say Y and
1334           read the Ethernet-HOWTO, available from
1335           <http://www.tldp.org/docs.html#howto>.
1336
1337           To compile this driver as a module, choose M here and read
1338           <file:Documentation/networking/net-modules.txt>.  The module will be
1339           called b44.
1340
1341 config FORCEDETH
1342         tristate "Reverse Engineered nForce Ethernet support (EXPERIMENTAL)"
1343         depends on NET_PCI && PCI && EXPERIMENTAL
1344         help
1345           If you have a network (Ethernet) controller of this type, say Y and
1346           read the Ethernet-HOWTO, available from
1347           <http://www.tldp.org/docs.html#howto>.
1348
1349           To compile this driver as a module, choose M here and read
1350           <file:Documentation/networking/net-modules.txt>.  The module will be
1351           called forcedeth.
1352
1353
1354 config CS89x0
1355         tristate "CS89x0 support"
1356         depends on NET_PCI && ISA
1357         ---help---
1358           Support for CS89x0 chipset based Ethernet cards. If you have a
1359           network (Ethernet) card of this type, say Y and read the
1360           Ethernet-HOWTO, available from
1361           <http://www.tldp.org/docs.html#howto> as well as
1362           <file:Documentation/networking/cs89x0.txt>.
1363
1364           To compile this driver as a module, choose M here and read
1365           <file:Documentation/networking/net-modules.txt>.  The module will be
1366           called cs89x.
1367
1368 config TC35815
1369         tristate "TOSHIBA TC35815 Ethernet support"
1370         depends on NET_PCI && PCI && TOSHIBA_JMR3927
1371
1372 config DGRS
1373         tristate "Digi Intl. RightSwitch SE-X support"
1374         depends on NET_PCI && (PCI || EISA)
1375         ---help---
1376           This is support for the Digi International RightSwitch series of
1377           PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1378           models.  If you have a network card of this type, say Y and read the
1379           Ethernet-HOWTO, available from
1380           <http://www.tldp.org/docs.html#howto>.  More specific
1381           information is contained in <file:Documentation/networking/dgrs.txt>.
1382
1383           To compile this driver as a module, choose M here and read
1384           <file:Documentation/networking/net-modules.txt>.  The module
1385           will be called dgrs.
1386
1387 config EEPRO100
1388         tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1389         depends on NET_PCI && PCI
1390         select MII
1391         help
1392           If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1393           card, say Y and read the Ethernet-HOWTO, available from
1394           <http://www.tldp.org/docs.html#howto>.
1395
1396           To compile this driver as a module, choose M here and read
1397           <file:Documentation/networking/net-modules.txt>.  The module
1398           will be called eepro100.
1399
1400
1401 config EEPRO100_PIO
1402         bool "Use PIO instead of MMIO" if !X86_VISWS
1403         depends on EEPRO100
1404         default y if X86_VISWS
1405         help
1406           This instructs the driver to use programmed I/O ports (PIO) instead
1407           of PCI shared memory (MMIO).  This can possibly solve some problems
1408           in case your mainboard has memory consistency issues.  If unsure,
1409           say N.
1410
1411 config E100
1412         tristate "Intel(R) PRO/100+ support"
1413         depends on NET_PCI && PCI
1414         select MII
1415         ---help---
1416           This driver supports Intel(R) PRO/100 family of adapters, which 
1417           includes:
1418
1419           Controller  Adapter Name                       Board IDs
1420           ----------  ------------                       ---------
1421
1422           82558       PRO/100+ PCI Adapter               668081-xxx, 
1423           689661-xxx
1424           82558       PRO/100+ Management Adapter        691334-xxx, 
1425           701738-xxx,
1426           721383-xxx
1427           82558       PRO/100+ Dual Port Server Adapter  714303-xxx, 
1428           711269-xxx, 
1429           A28276-xxx
1430           82558       PRO/100+ PCI Server Adapter        710550-xxx
1431           82550       PRO/100 S Server Adapter           752438-xxx
1432           82559                                          A56831-xxx, 
1433           A10563-xxx,
1434           A12171-xxx, 
1435           A12321-xxx, 
1436           A12320-xxx, 
1437           A12170-xxx
1438           748568-xxx
1439           748565-xxx
1440           82550       PRO/100 S Desktop Adapter          751767-xxx
1441           82559                                          748592-xxx, 
1442           A12167-xxx, 
1443           A12318-xxx, 
1444           A12317-xxx, 
1445           A12165-xxx,
1446           748569-xxx 
1447           82559       PRO/100+ Server Adapter            729757-xxx
1448           82559       PRO/100 S Management Adapter       748566-xxx, 
1449           748564-xxx
1450           82550       PRO/100 S Dual Port Server Adapter A56831-xxx
1451           82551       PRO/100 M Desktop Adapter          A80897-xxx
1452           PRO/100 S Advanced Management Adapter 
1453           747842-xxx, 
1454           745171-xxx
1455           CNR         PRO/100 VE Desktop Adapter         A10386-xxx, 
1456           A10725-xxx, 
1457           A23801-xxx, 
1458           A19716-xxx
1459           PRO/100 VM Desktop Adapter         A14323-xxx, 
1460           A19725-xxx, 
1461           A23801-xxx, 
1462           A22220-xxx, 
1463           A23796-xxx
1464
1465
1466           To verify that your adapter is supported, find the board ID number 
1467           on the adapter. Look for a label that has a barcode and a number 
1468           in the format 123456-001 (six digits hyphen three digits). Match 
1469           this to the list of numbers above.
1470
1471           For more information on how to identify your adapter, go to the 
1472           Adapter & Driver ID Guide at:
1473
1474           http://support.intel.com/support/network/adapter/pro100/21397.htm
1475
1476           For the latest Intel PRO/100 network driver for Linux, see:
1477
1478           http://appsr.intel.com/scripts-df/support_intel.asp
1479
1480           More specific information on configuring the driver is in 
1481           <file:Documentation/networking/e100.txt>.
1482
1483           To compile this driver as a module, choose M here and read
1484           <file:Documentation/networking/net-modules.txt>.  The module
1485           will be called e100.
1486
1487 config E100_NAPI
1488         bool "Use Rx Polling (NAPI)"
1489         depends on E100
1490         help
1491           NAPI is a new driver API designed to reduce CPU and interrupt load
1492           when the driver is receiving lots of packets from the card. It is
1493           still somewhat experimental and thus not yet enabled by default.
1494
1495           If your estimated Rx load is 10kpps or more, or if the card will be
1496           deployed on potentially unfriendly networks (e.g. in a firewall),
1497           then say Y here.
1498
1499           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1500           information.
1501
1502           If in doubt, say N.
1503
1504 config LNE390
1505         tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1506         depends on NET_PCI && EISA && EXPERIMENTAL
1507         select CRC32
1508         help
1509           If you have a network (Ethernet) card of this type, say Y and read
1510           the Ethernet-HOWTO, available from
1511           <http://www.tldp.org/docs.html#howto>.
1512
1513           To compile this driver as a module, choose M here and read
1514           <file:Documentation/networking/net-modules.txt>.  The module
1515           will be called lne390.
1516
1517 config FEALNX
1518         tristate "Myson MTD-8xx PCI Ethernet support"
1519         depends on NET_PCI && PCI
1520         select CRC32
1521         select MII
1522         help
1523           Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1524           cards. Specifications and data at
1525           <http://www.myson.com.hk/mtd/datasheet/>.
1526
1527 config NATSEMI
1528         tristate "National Semiconductor DP8381x series PCI Ethernet support"
1529         depends on NET_PCI && PCI
1530         select CRC32
1531         help
1532           This driver is for the National Semiconductor DP83810 series,
1533           which is used in cards from PureData, NetGear, Linksys
1534           and others, including the 83815 chip.
1535           More specific information and updates are available from
1536           <http://www.scyld.com/network/natsemi.html>.
1537
1538 config NE2K_PCI
1539         tristate "PCI NE2000 and clones support (see help)"
1540         depends on NET_PCI && PCI
1541         select CRC32
1542         ---help---
1543           This driver is for NE2000 compatible PCI cards. It will not work
1544           with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1545           support" below). If you have a PCI NE2000 network (Ethernet) card,
1546           say Y and read the Ethernet-HOWTO, available from
1547           <http://www.tldp.org/docs.html#howto>.
1548
1549           This driver also works for the following NE2000 clone cards:
1550           RealTek RTL-8029  Winbond 89C940  Compex RL2000  KTI ET32P2
1551           NetVin NV5000SC   Via 86C926      SureCom NE34   Winbond
1552           Holtek HT80232    Holtek HT80229
1553
1554           To compile this driver as a module, choose M here and read
1555           <file:Documentation/networking/net-modules.txt>.  The module
1556           will be called ne2k-pci.
1557
1558 config NE3210
1559         tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1560         depends on NET_PCI && EISA && EXPERIMENTAL
1561         select CRC32
1562         ---help---
1563           If you have a network (Ethernet) card of this type, say Y and read
1564           the Ethernet-HOWTO, available from
1565           <http://www.tldp.org/docs.html#howto>.  Note that this driver
1566           will NOT WORK for NE3200 cards as they are completely different.
1567
1568           To compile this driver as a module, choose M here and read
1569           <file:Documentation/networking/net-modules.txt>.  The module
1570           will be called ne3210.
1571
1572 config ES3210
1573         tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1574         depends on NET_PCI && EISA && EXPERIMENTAL
1575         select CRC32
1576         help
1577           If you have a network (Ethernet) card of this type, say Y and read
1578           the Ethernet-HOWTO, available from
1579           <http://www.tldp.org/docs.html#howto>.
1580
1581           To compile this driver as a module, choose M here and read
1582           <file:Documentation/networking/net-modules.txt>.  The module
1583           will be called es3210.
1584
1585 config 8139CP
1586         tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1587         depends on NET_PCI && PCI && EXPERIMENTAL
1588         select CRC32
1589         select MII
1590         help
1591           This is a driver for the Fast Ethernet PCI network cards based on
1592           the RTL8139C+ chips. If you have one of those, say Y and read
1593           the Ethernet-HOWTO, available from
1594           <http://www.tldp.org/docs.html#howto>.
1595
1596           To compile this driver as a module, choose M here: the module
1597           will be called 8139cp.  This is recommended.
1598
1599 config 8139TOO
1600         tristate "RealTek RTL-8139 PCI Fast Ethernet Adapter support"
1601         depends on NET_PCI && PCI
1602         select CRC32
1603         select MII
1604         ---help---
1605           This is a driver for the Fast Ethernet PCI network cards based on
1606           the RTL8139 chips. If you have one of those, say Y and read
1607           the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
1608
1609           To compile this driver as a module, choose M here: the module
1610           will be called 8139too.  This is recommended.
1611
1612 config 8139TOO_PIO
1613         bool "Use PIO instead of MMIO"
1614         default y
1615         depends on 8139TOO
1616         help
1617           This instructs the driver to use programmed I/O ports (PIO) instead
1618           of PCI shared memory (MMIO).  This can possibly solve some problems
1619           in case your mainboard has memory consistency issues.  If unsure,
1620           say N.
1621
1622 config 8139TOO_TUNE_TWISTER
1623         bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1624         depends on 8139TOO
1625         help
1626           This implements a function which might come in handy in case you
1627           are using low quality on long cabling. It is required for RealTek
1628           RTL-8139 revision K boards, and totally unused otherwise.  It tries
1629           to match the transceiver to the cable characteristics. This is
1630           experimental since hardly documented by the manufacturer.
1631           If unsure, say Y.
1632
1633 config 8139TOO_8129
1634         bool "Support for older RTL-8129/8130 boards"
1635         depends on 8139TOO
1636         help
1637           This enables support for the older and uncommon RTL-8129 and
1638           RTL-8130 chips, which support MII via an external transceiver,
1639           instead of an internal one.  Disabling this option will save some
1640           memory by making the code size smaller.  If unsure, say Y.
1641
1642 config 8139_OLD_RX_RESET
1643         bool "Use older RX-reset method"
1644         depends on 8139TOO
1645         help
1646           The 8139too driver was recently updated to contain a more rapid
1647           reset sequence, in the face of severe receive errors.  This "new"
1648           RX-reset method should be adequate for all boards.  But if you
1649           experience problems, you can enable this option to restore the
1650           old RX-reset behavior.  If unsure, say N.
1651
1652 config SIS900
1653         tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1654         depends on NET_PCI && PCI
1655         select CRC32
1656         ---help---
1657           This is a driver for the Fast Ethernet PCI network cards based on
1658           the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
1659           SiS 630 and SiS 540 chipsets.  If you have one of those, say Y and
1660           read the Ethernet-HOWTO, available at
1661           <http://www.tldp.org/docs.html#howto>.  Please read
1662           <file:Documentation/networking/sis900.txt> and comments at the
1663           beginning of <file:drivers/net/sis900.c> for more information.
1664
1665           This driver also supports AMD 79C901 HomePNA so that you can use
1666           your phone line as a network cable.
1667
1668           To compile this driver as a module, choose M here: the module
1669           will be called sis900.  This is recommended.
1670
1671 config EPIC100
1672         tristate "SMC EtherPower II"
1673         depends on NET_PCI && PCI
1674         select CRC32
1675         select MII
1676         help
1677           This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1678           which is based on the SMC83c17x (EPIC/100).
1679           More specific information and updates are available from
1680           <http://www.scyld.com/network/epic100.html>.
1681
1682 config SUNDANCE
1683         tristate "Sundance Alta support"
1684         depends on NET_PCI && PCI
1685         select CRC32
1686         select MII
1687         help
1688           This driver is for the Sundance "Alta" chip.
1689           More specific information and updates are available from
1690           <http://www.scyld.com/network/sundance.html>.
1691
1692 config SUNDANCE_MMIO
1693         bool "Use MMIO instead of PIO"
1694         depends on SUNDANCE
1695         help
1696           Enable memory-mapped I/O for interaction with Sundance NIC registers.
1697           Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1698           is known to solve bugs on certain chips.
1699
1700           If unsure, say N.
1701
1702 config TLAN
1703         tristate "TI ThunderLAN support"
1704         depends on NET_PCI && (PCI || EISA) && !64BIT
1705         ---help---
1706           If you have a PCI Ethernet network card based on the ThunderLAN chip
1707           which is supported by this driver, say Y and read the
1708           Ethernet-HOWTO, available from
1709           <http://www.tldp.org/docs.html#howto>.
1710
1711           Devices currently supported by this driver are Compaq Netelligent,
1712           Compaq NetFlex and Olicom cards.  Please read the file
1713           <file:Documentation/networking/tlan.txt> for more details.
1714
1715           To compile this driver as a module, choose M here and read
1716           <file:Documentation/networking/net-modules.txt>. The module
1717           will be called tlan.
1718
1719           Please email feedback to  torben.mathiasen@compaq.com.
1720
1721 config VIA_RHINE
1722         tristate "VIA Rhine support"
1723         depends on NET_PCI && PCI
1724         select CRC32
1725         select MII
1726         help
1727           If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1728           Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1729           Ethernet functions can also be found integrated on South Bridges
1730           (e.g. VT8235).
1731
1732           To compile this driver as a module, choose M here. The module
1733           will be called via-rhine.
1734
1735 config VIA_RHINE_MMIO
1736         bool "Use MMIO instead of PIO"
1737         depends on VIA_RHINE
1738         help
1739           This instructs the driver to use PCI shared memory (MMIO) instead of
1740           programmed I/O ports (PIO). Enabling this gives an improvement in
1741           processing time in parts of the driver.
1742
1743           If unsure, say Y.
1744
1745 config VIA_VELOCITY
1746         tristate "VIA Velocity support"
1747         depends on NET_PCI && PCI
1748         select CRC32
1749         select MII
1750         help
1751           If you have a VIA "Velocity" based network card say Y here.
1752
1753           To compile this driver as a module, choose M here. The module
1754           will be called via-rhine.
1755
1756 config LAN_SAA9730
1757         bool "Philips SAA9730 Ethernet support (EXPERIMENTAL)"
1758         depends on NET_PCI && EXPERIMENTAL && MIPS
1759         help
1760           The SAA9730 is a combined multimedia and peripheral controller used
1761           in thin clients, Internet access terminals, and diskless
1762           workstations.
1763           See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1764
1765 config NET_POCKET
1766         bool "Pocket and portable adapters"
1767         depends on NET_ETHERNET && ISA
1768         ---help---
1769           Cute little network (Ethernet) devices which attach to the parallel
1770           port ("pocket adapters"), commonly used with laptops. If you have
1771           one of those, say Y and read the Ethernet-HOWTO, available from
1772           <http://www.tldp.org/docs.html#howto>.
1773
1774           If you want to plug a network (or some other) card into the PCMCIA
1775           (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1776           credit card size extension cards used by all modern laptops), you
1777           need the pcmcia-cs package (location contained in the file
1778           <file:Documentation/Changes>) and you can say N here.
1779
1780           Laptop users should read the Linux Laptop home page at
1781           <http://www.linux-on-laptops.com/> or
1782           Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1783
1784           Note that the answer to this question doesn't directly affect the
1785           kernel: saying N will just cause the configurator to skip all
1786           the questions about this class of network devices. If you say Y, you
1787           will be asked for your specific device in the following questions.
1788
1789 config ATP
1790         tristate "AT-LAN-TEC/RealTek pocket adapter support"
1791         depends on NET_POCKET && ISA && X86
1792         select CRC32
1793         ---help---
1794           This is a network (Ethernet) device which attaches to your parallel
1795           port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1796           available from <http://www.tldp.org/docs.html#howto>, if you
1797           want to use this.  If you intend to use this driver, you should have
1798           said N to the "Parallel printer support", because the two drivers
1799           don't like each other.
1800
1801           To compile this driver as a module, choose M here: the module
1802           will be called atp.
1803
1804 config DE600
1805         tristate "D-Link DE600 pocket adapter support"
1806         depends on NET_POCKET && ISA
1807         ---help---
1808           This is a network (Ethernet) device which attaches to your parallel
1809           port. Read <file:Documentation/networking/DLINK.txt> as well as the
1810           Ethernet-HOWTO, available from
1811           <http://www.tldp.org/docs.html#howto>, if you want to use
1812           this. It is possible to have several devices share a single parallel
1813           port and it is safe to compile the corresponding drivers into the
1814           kernel.
1815
1816           To compile this driver as a module, choose M here: the module
1817           will be called de600.
1818
1819 config DE620
1820         tristate "D-Link DE620 pocket adapter support"
1821         depends on NET_POCKET && ISA
1822         ---help---
1823           This is a network (Ethernet) device which attaches to your parallel
1824           port. Read <file:Documentation/networking/DLINK.txt> as well as the
1825           Ethernet-HOWTO, available from
1826           <http://www.tldp.org/docs.html#howto>, if you want to use
1827           this. It is possible to have several devices share a single parallel
1828           port and it is safe to compile the corresponding drivers into the
1829           kernel.
1830
1831           To compile this driver as a module, choose M here: the module
1832           will be called de620.
1833
1834 config SGISEEQ
1835         tristate "SGI Seeq ethernet controller support"
1836         depends on NET_ETHERNET && SGI_IP22
1837         help
1838           Say Y here if you have an Seeq based Ethernet network card. This is
1839           used in many Silicon Graphics machines.
1840
1841 config DECLANCE
1842         tristate "DEC LANCE ethernet controller support"
1843         depends on NET_ETHERNET && MACH_DECSTATION
1844         select CRC32
1845         help
1846           This driver is for the series of Ethernet controllers produced by
1847           DEC (now Compaq) based on the AMD Lance chipset, including the
1848           DEPCA series.  (This chipset is better known via the NE2100 cards.)
1849
1850 config BAGETLANCE
1851         tristate "Baget AMD LANCE support"
1852         depends on NET_ETHERNET && BAGET_MIPS
1853         help
1854           Say Y to enable kernel support for AMD Lance Ethernet cards on the
1855           MIPS-32-based Baget embedded system.  This chipset is better known
1856           via the NE2100 cards.
1857
1858 config 68360_ENET
1859         bool "Motorola 68360 ethernet controller"
1860         depends on M68360
1861         help
1862           Say Y here if you want to use the built-in ethernet controller of
1863           the Motorola 68360 processor.
1864
1865 config FEC
1866         bool "FEC ethernet controller (of ColdFire 5272)"
1867         depends on M5272 || M5282
1868         help
1869           Say Y here if you want to use the built-in 10/100 Fast ethernet
1870           controller on the Motorola ColdFire 5272 processor.
1871
1872 config NE_H8300
1873         tristate "NE2000 compatible support for H8/300"
1874         depends on H8300 && NET_ETHERNET
1875         help
1876           Say Y here if you want to use the NE2000 compatible
1877           controller on the Renesas H8/300 processor.
1878
1879 source "drivers/net/fec_8xx/Kconfig"
1880
1881 endmenu
1882
1883 #
1884 #       Gigabit Ethernet
1885 #
1886
1887 menu "Ethernet (1000 Mbit)"
1888         depends on NETDEVICES
1889
1890 config ACENIC
1891         tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1892         depends on PCI
1893         ---help---
1894           Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1895           GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1896           adapter. The driver allows for using the Jumbo Frame option (9000
1897           bytes/frame) however it requires that your switches can handle this
1898           as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1899           line.
1900
1901           To compile this driver as a module, choose M here: the
1902           module will be called acenic.
1903
1904 config ACENIC_OMIT_TIGON_I
1905         bool "Omit support for old Tigon I based AceNICs"
1906         depends on ACENIC
1907         help
1908           Say Y here if you only have Tigon II based AceNICs and want to leave
1909           out support for the older Tigon I based cards which are no longer
1910           being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1911           version)).  This will reduce the size of the driver object by
1912           app. 100KB.  If you are not sure whether your card is a Tigon I or a
1913           Tigon II, say N here.
1914
1915           The safe and default value for this is N.
1916
1917 config DL2K
1918         tristate "D-Link DL2000-based Gigabit Ethernet support"
1919         depends on PCI
1920         select CRC32
1921         help
1922           This driver supports D-Link 2000-based gigabit ethernet cards, which
1923           includes
1924           D-Link DGE-550T Gigabit Ethernet Adapter.
1925           D-Link DL2000-based Gigabit Ethernet Adapter.
1926
1927           To compile this driver as a module, choose M here: the
1928           module will be called dl2k.
1929
1930 config E1000
1931         tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1932         depends on PCI
1933         ---help---
1934           This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1935           adapters, which includes:
1936
1937           Controller  Adapter Name                         Board IDs
1938           ----------  ------------                         ---------
1939           82542       PRO/1000 Gigabit Server Adapter      700262-xxx,
1940           717037-xxx
1941           82543       PRO/1000 F Server Adapter            738640-xxx,
1942           A38888-xxx
1943           82543       PRO/1000 T Server Adapter            A19845-xxx,
1944           A33948-xxx
1945           82544       PRO/1000 XT Server Adapter           A51580-xxx
1946           82544       PRO/1000 XF Server Adapter           A50484-xxx
1947           82544       PRO/1000 T Desktop Adapter           A62947-xxx
1948           82540       PRO/1000 MT Desktop Adapter          A78408-xxx
1949           82541       PRO/1000 MT Desktop Adapter          C91016-xxx
1950           82545       PRO/1000 MT Server Adapter           A92165-xxx
1951           82546       PRO/1000 MT Dual Port Server Adapter A92111-xxx
1952           82545       PRO/1000 MF Server Adapter           A91622-xxx
1953           82545       PRO/1000 MF Server Adapter(LX)       A91624-xxx
1954           82546       PRO/1000 MF Dual Port Server Adapter A91620-xxx 
1955
1956           For more information on how to identify your adapter, go to the
1957           Adapter & Driver ID Guide at:
1958
1959           <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1960
1961           For general information and support, go to the Intel support
1962           website at:
1963
1964           <http://support.intel.com>
1965
1966           More specific information on configuring the driver is in 
1967           <file:Documentation/networking/e1000.txt>.
1968
1969           To compile this driver as a module, choose M here and read
1970           <file:Documentation/networking/net-modules.txt>.  The module
1971           will be called e1000.
1972
1973 config E1000_NAPI
1974         bool "Use Rx Polling (NAPI)"
1975         depends on E1000
1976         help
1977           NAPI is a new driver API designed to reduce CPU and interrupt load
1978           when the driver is receiving lots of packets from the card. It is
1979           still somewhat experimental and thus not yet enabled by default.
1980
1981           If your estimated Rx load is 10kpps or more, or if the card will be
1982           deployed on potentially unfriendly networks (e.g. in a firewall),
1983           then say Y here.
1984
1985           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1986           information.
1987
1988           If in doubt, say N.
1989
1990 config MYRI_SBUS
1991         tristate "MyriCOM Gigabit Ethernet support"
1992         depends on SBUS
1993         help
1994           This driver supports MyriCOM Sbus gigabit Ethernet cards.
1995
1996           To compile this driver as a module, choose M here: the module
1997           will be called myri_sbus.  This is recommended.
1998
1999 config NS83820
2000         tristate "National Semiconduct DP83820 support"
2001         depends on PCI
2002         help
2003           This is a driver for the National Semiconductor DP83820 series
2004           of gigabit ethernet MACs.  Cards using this chipset include
2005           the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2006           SOHO-GA2000T, SOHO-GA2500T.  The driver supports the use of
2007           zero copy.
2008
2009 config HAMACHI
2010         tristate "Packet Engines Hamachi GNIC-II support"
2011         depends on PCI
2012         select MII
2013         help
2014           If you have a Gigabit Ethernet card of this type, say Y and read
2015           the Ethernet-HOWTO, available from
2016           <http://www.tldp.org/docs.html#howto>.
2017
2018           To compile this driver as a module, choose M here and read
2019           <file:Documentation/networking/net-modules.txt>.  The module will be
2020           called hamachi.
2021
2022 config YELLOWFIN
2023         tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2024         depends on PCI && EXPERIMENTAL
2025         select CRC32
2026         ---help---
2027           Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2028           adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2029           used by the Beowulf Linux cluster project.  See
2030           <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2031           information about this driver in particular and Beowulf in general.
2032
2033           To compile this driver as a module, choose M here: the module
2034           will be called yellowfin.  This is recommended.
2035
2036 config R8169
2037         tristate "Realtek 8169 gigabit ethernet support"
2038         depends on PCI
2039         select CRC32
2040         ---help---
2041           Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2042
2043           To compile this driver as a module, choose M here: the module
2044           will be called r8169.  This is recommended.
2045
2046 config SK98LIN
2047         tristate "Marvell Yukon Chipset / SysKonnect SK-98xx Support"
2048         depends on PCI
2049         ---help---
2050           Say Y here if you have a Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2051           compliant Gigabit Ethernet Adapter. The following adapters are supported
2052           by this driver:
2053             - 3Com 3C940 Gigabit LOM Ethernet Adapter
2054             - 3Com 3C941 Gigabit LOM Ethernet Adapter
2055             - Allied Telesyn AT-2970LX Gigabit Ethernet Adapter
2056             - Allied Telesyn AT-2970LX/2SC Gigabit Ethernet Adapter
2057             - Allied Telesyn AT-2970SX Gigabit Ethernet Adapter
2058             - Allied Telesyn AT-2970SX/2SC Gigabit Ethernet Adapter
2059             - Allied Telesyn AT-2970TX Gigabit Ethernet Adapter
2060             - Allied Telesyn AT-2970TX/2TX Gigabit Ethernet Adapter
2061             - Allied Telesyn AT-2971SX Gigabit Ethernet Adapter
2062             - Allied Telesyn AT-2971T Gigabit Ethernet Adapter
2063             - Belkin Gigabit Desktop Card 10/100/1000Base-T Adapter, Copper RJ-45
2064             - DGE-530T Gigabit Ethernet Adapter
2065             - EG1032 v2 Instant Gigabit Network Adapter
2066             - EG1064 v2 Instant Gigabit Network Adapter
2067             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Abit)
2068             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Albatron)
2069             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Asus)
2070             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (ECS)
2071             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Epox)
2072             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Foxconn)
2073             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Gigabyte)
2074             - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Iwill)
2075             - Marvell 88E8050 Gigabit LOM Ethernet Adapter (Intel)
2076             - Marvell RDK-8001 Adapter
2077             - Marvell RDK-8002 Adapter
2078             - Marvell RDK-8003 Adapter
2079             - Marvell RDK-8004 Adapter
2080             - Marvell RDK-8006 Adapter
2081             - Marvell RDK-8007 Adapter
2082             - Marvell RDK-8008 Adapter
2083             - Marvell RDK-8009 Adapter
2084             - Marvell RDK-8010 Adapter
2085             - Marvell RDK-8011 Adapter
2086             - Marvell RDK-8012 Adapter
2087             - Marvell RDK-8052 Adapter
2088             - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (32 bit)
2089             - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (64 bit)
2090             - N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L)
2091             - SK-9521 10/100/1000Base-T Adapter
2092             - SK-9521 V2.0 10/100/1000Base-T Adapter
2093             - SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T)
2094             - SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter
2095             - SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link)
2096             - SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX)
2097             - SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter
2098             - SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link)
2099             - SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX)
2100             - SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2101             - SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link)
2102             - SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2103             - SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition)
2104             - SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2105             - SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link)
2106             - SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX)
2107             - SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter
2108             - SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)
2109             - SMC EZ Card 1000 (SMC9452TXV.2)
2110           
2111           The adapters support Jumbo Frames.
2112           The dual link adapters support link-failover and dual port features.
2113           Both Marvell Yukon and SysKonnect SK-98xx/SK-95xx adapters support 
2114           the scatter-gather functionality with sendfile(). Please refer to 
2115           Documentation/networking/sk98lin.txt for more information about
2116           optional driver parameters.
2117           Questions concerning this driver may be addressed to:
2118               linux@syskonnect.de
2119           
2120           If you want to compile this driver as a module ( = code which can be
2121           inserted in and removed from the running kernel whenever you want),
2122           say M here and read Documentation/kbuild/modules.txt. The module will
2123           be called sk98lin. This is recommended.
2124
2125 config TIGON3
2126         tristate "Broadcom Tigon3 support"
2127         depends on PCI
2128         help
2129           This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2130
2131           To compile this driver as a module, choose M here: the module
2132           will be called tg3.  This is recommended.
2133
2134 endmenu
2135
2136 #
2137 #       10 Gigabit Ethernet
2138 #
2139
2140 menu "Ethernet (10000 Mbit)"
2141         depends on NETDEVICES
2142
2143 config IXGB
2144         tristate "Intel(R) PRO/10GbE support"
2145         depends on PCI
2146         ---help---
2147           This driver supports Intel(R) PRO/10GbE family of
2148           adapters, which includes:
2149
2150           Controller  Adapter Name                           Board IDs
2151           ----------  ------------                           ---------
2152           82597EX     Intel(R) PRO/10GbE LR Server Adapter   A82505-xxx
2153
2154           For more information on how to identify your adapter, go to the
2155           Adapter & Driver ID Guide at:
2156
2157           <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2158
2159           For general information and support, go to the Intel support
2160           website at:
2161
2162           <http://support.intel.com>
2163
2164           More specific information on configuring the driver is in 
2165           <file:Documentation/networking/ixgb.txt>.
2166
2167           To compile this driver as a module, choose M here and read
2168           <file:Documentation/networking/net-modules.txt>.  The module
2169           will be called ixgb.
2170
2171 config IXGB_NAPI
2172         bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2173         depends on IXGB && EXPERIMENTAL
2174         help
2175           NAPI is a new driver API designed to reduce CPU and interrupt load
2176           when the driver is receiving lots of packets from the card. It is
2177           still somewhat experimental and thus not yet enabled by default.
2178
2179           If your estimated Rx load is 10kpps or more, or if the card will be
2180           deployed on potentially unfriendly networks (e.g. in a firewall),
2181           then say Y here.
2182
2183           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2184           information.
2185
2186           If in doubt, say N.
2187
2188 config S2IO
2189         tristate "S2IO 10Gbe XFrame NIC"
2190         depends on PCI
2191         ---help---
2192           This driver supports the 10Gbe XFrame NIC of S2IO. 
2193           For help regarding driver compilation, installation and 
2194           tuning please look into ~/drivers/net/s2io/README.txt.
2195
2196 config S2IO_NAPI
2197         bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2198         depends on S2IO && EXPERIMENTAL
2199         help
2200           NAPI is a new driver API designed to reduce CPU and interrupt load
2201           when the driver is receiving lots of packets from the card. It is
2202           still somewhat experimental and thus not yet enabled by default.
2203
2204           If your estimated Rx load is 10kpps or more, or if the card will be
2205           deployed on potentially unfriendly networks (e.g. in a firewall),
2206           then say Y here.
2207
2208           See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2209           information.
2210
2211           If in doubt, say N.
2212
2213 endmenu
2214
2215 source "drivers/net/tokenring/Kconfig"
2216
2217 source "drivers/net/wireless/Kconfig"
2218
2219 source "drivers/net/pcmcia/Kconfig"
2220
2221 source "drivers/net/wan/Kconfig"
2222
2223 source "drivers/atm/Kconfig"
2224
2225 source "drivers/s390/net/Kconfig"
2226
2227 config ISERIES_VETH
2228         tristate "iSeries Virtual Ethernet driver support"
2229         depends on NETDEVICES && PPC_ISERIES
2230
2231 config FDDI
2232         bool "FDDI driver support"
2233         depends on NETDEVICES && (PCI || EISA)
2234         help
2235           Fiber Distributed Data Interface is a high speed local area network
2236           design; essentially a replacement for high speed Ethernet. FDDI can
2237           run over copper or fiber. If you are connected to such a network and
2238           want a driver for the FDDI card in your computer, say Y here (and
2239           then also Y to the driver for your FDDI card, below). Most people
2240           will say N.
2241
2242 config DEFXX
2243         tristate "Digital DEFEA and DEFPA adapter support"
2244         depends on FDDI && (PCI || EISA)
2245         help
2246           This is support for the DIGITAL series of EISA (DEFEA) and PCI
2247           (DEFPA) controllers which can connect you to a local FDDI network.
2248
2249 config SKFP
2250         tristate "SysKonnect FDDI PCI support"
2251         depends on FDDI && PCI
2252         ---help---
2253           Say Y here if you have a SysKonnect FDDI PCI adapter.
2254           The following adapters are supported by this driver:
2255           - SK-5521 (SK-NET FDDI-UP)
2256           - SK-5522 (SK-NET FDDI-UP DAS)
2257           - SK-5541 (SK-NET FDDI-FP)
2258           - SK-5543 (SK-NET FDDI-LP)
2259           - SK-5544 (SK-NET FDDI-LP DAS)
2260           - SK-5821 (SK-NET FDDI-UP64)
2261           - SK-5822 (SK-NET FDDI-UP64 DAS)
2262           - SK-5841 (SK-NET FDDI-FP64)
2263           - SK-5843 (SK-NET FDDI-LP64)
2264           - SK-5844 (SK-NET FDDI-LP64 DAS)
2265           - Netelligent 100 FDDI DAS Fibre SC
2266           - Netelligent 100 FDDI SAS Fibre SC
2267           - Netelligent 100 FDDI DAS UTP
2268           - Netelligent 100 FDDI SAS UTP
2269           - Netelligent 100 FDDI SAS Fibre MIC
2270
2271           Read <file:Documentation/networking/skfp.txt> for information about
2272           the driver.
2273
2274           Questions concerning this driver can be addressed to:
2275           linux@syskonnect.de
2276
2277           To compile this driver as a module, choose M here: the module
2278           will be called skfp.  This is recommended.
2279
2280 config HIPPI
2281         bool "HIPPI driver support (EXPERIMENTAL)"
2282         depends on NETDEVICES && EXPERIMENTAL && INET && PCI
2283         help
2284           HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2285           1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2286           can run over copper (25m) or fiber (300m on multi-mode or 10km on
2287           single-mode). HIPPI networks are commonly used for clusters and to
2288           connect to super computers. If you are connected to a HIPPI network
2289           and have a HIPPI network card in your computer that you want to use
2290           under Linux, say Y here (you must also remember to enable the driver
2291           for your HIPPI card below). Most people will say N here.
2292
2293 config ROADRUNNER
2294         tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2295         depends on HIPPI && PCI
2296         help
2297           Say Y here if this is your PCI HIPPI network card.
2298
2299           To compile this driver as a module, choose M here: the module
2300           will be called rrunner.  If unsure, say N.
2301
2302 config ROADRUNNER_LARGE_RINGS
2303         bool "Use large TX/RX rings (EXPERIMENTAL)"
2304         depends on ROADRUNNER
2305         help
2306           If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2307           of additional memory to allow for fastest operation, both for
2308           transmitting and receiving. This memory cannot be used by any other
2309           kernel code or by user space programs. Say Y here only if you have
2310           the memory.
2311
2312 config PLIP
2313         tristate "PLIP (parallel port) support"
2314         depends on NETDEVICES && PARPORT
2315         ---help---
2316           PLIP (Parallel Line Internet Protocol) is used to create a
2317           reasonably fast mini network consisting of two (or, rarely, more)
2318           local machines.  A PLIP link from a Linux box is a popular means to
2319           install a Linux distribution on a machine which doesn't have a
2320           CD-ROM drive (a minimal system has to be transferred with floppies
2321           first). The kernels on both machines need to have this PLIP option
2322           enabled for this to work.
2323
2324           The PLIP driver has two modes, mode 0 and mode 1.  The parallel
2325           ports (the connectors at the computers with 25 holes) are connected
2326           with "null printer" or "Turbo Laplink" cables which can transmit 4
2327           bits at a time (mode 0) or with special PLIP cables, to be used on
2328           bidirectional parallel ports only, which can transmit 8 bits at a
2329           time (mode 1); you can find the wiring of these cables in
2330           <file:Documentation/networking/PLIP.txt>.  The cables can be up to
2331           15m long.  Mode 0 works also if one of the machines runs DOS/Windows
2332           and has some PLIP software installed, e.g. the Crynwr PLIP packet
2333           driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2334           and winsock or NCSA's telnet.
2335
2336           If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2337           as the NET-3-HOWTO, both available from
2338           <http://www.tldp.org/docs.html#howto>.  Note that the PLIP
2339           protocol has been changed and this PLIP driver won't work together
2340           with the PLIP support in Linux versions 1.0.x.  This option enlarges
2341           your kernel by about 8 KB.
2342
2343           To compile this driver as a module, choose M here and read
2344           <file:Documentation/networking/net-modules.txt>.  The module will be
2345           called plip.  If unsure, say Y or M, in case you buy a laptop
2346           later.
2347
2348 config PPP
2349         tristate "PPP (point-to-point protocol) support"
2350         depends on NETDEVICES
2351         ---help---
2352           PPP (Point to Point Protocol) is a newer and better SLIP.  It serves
2353           the same purpose: sending Internet traffic over telephone (and other
2354           serial) lines.  Ask your access provider if they support it, because
2355           otherwise you can't use it; most Internet access providers these
2356           days support PPP rather than SLIP.
2357
2358           To use PPP, you need an additional program called pppd as described
2359           in the PPP-HOWTO, available at
2360           <http://www.tldp.org/docs.html#howto>.  Make sure that you have
2361           the version of pppd recommended in <file:Documentation/Changes>.
2362           The PPP option enlarges your kernel by about 16 KB.
2363
2364           There are actually two versions of PPP: the traditional PPP for
2365           asynchronous lines, such as regular analog phone lines, and
2366           synchronous PPP which can be used over digital ISDN lines for
2367           example.  If you want to use PPP over phone lines or other
2368           asynchronous serial lines, you need to say Y (or M) here and also to
2369           the next option, "PPP support for async serial ports".  For PPP over
2370           synchronous lines, you should say Y (or M) here and to "Support
2371           synchronous PPP", below.
2372
2373           If you said Y to "Version information on all symbols" above, then
2374           you cannot compile the PPP driver into the kernel; you can then only
2375           compile it as a module. To compile this driver as a module, choose M
2376           here and read <file:Documentation/networking/net-modules.txt>.
2377           The module will be called ppp_generic.
2378
2379 config PPP_MULTILINK
2380         bool "PPP multilink support (EXPERIMENTAL)"
2381         depends on PPP && EXPERIMENTAL
2382         help
2383           PPP multilink is a protocol (defined in RFC 1990) which allows you
2384           to combine several (logical or physical) lines into one logical PPP
2385           connection, so that you can utilize your full bandwidth.
2386
2387           This has to be supported at the other end as well and you need a
2388           version of the pppd daemon which understands the multilink protocol.
2389
2390           If unsure, say N.
2391
2392 config PPP_FILTER
2393         bool "PPP filtering"
2394         depends on PPP
2395         help
2396           Say Y here if you want to be able to filter the packets passing over
2397           PPP interfaces.  This allows you to control which packets count as
2398           activity (i.e. which packets will reset the idle timer or bring up
2399           a demand-dialled link) and which packets are to be dropped entirely.
2400           You need to say Y here if you wish to use the pass-filter and
2401           active-filter options to pppd.
2402
2403           If unsure, say N.
2404
2405 config PPP_ASYNC
2406         tristate "PPP support for async serial ports"
2407         depends on PPP
2408         select CRC_CCITT
2409         ---help---
2410           Say Y (or M) here if you want to be able to use PPP over standard
2411           asynchronous serial ports, such as COM1 or COM2 on a PC.  If you use
2412           a modem (not a synchronous or ISDN modem) to contact your ISP, you
2413           need this option.
2414
2415           To compile this driver as a module, choose M here.
2416
2417           If unsure, say Y.
2418
2419 config PPP_SYNC_TTY
2420         tristate "PPP support for sync tty ports"
2421         depends on PPP
2422         help
2423           Say Y (or M) here if you want to be able to use PPP over synchronous
2424           (HDLC) tty devices, such as the SyncLink adapter. These devices
2425           are often used for high-speed leased lines like T1/E1.
2426
2427           To compile this driver as a module, choose M here.
2428
2429 config PPP_DEFLATE
2430         tristate "PPP Deflate compression"
2431         depends on PPP
2432         select ZLIB_INFLATE
2433         select ZLIB_DEFLATE
2434         ---help---
2435           Support for the Deflate compression method for PPP, which uses the
2436           Deflate algorithm (the same algorithm that gzip uses) to compress
2437           each PPP packet before it is sent over the wire.  The machine at the
2438           other end of the PPP link (usually your ISP) has to support the
2439           Deflate compression method as well for this to be useful.  Even if
2440           they don't support it, it is safe to say Y here.
2441
2442           To compile this driver as a module, choose M here.
2443
2444 config PPP_BSDCOMP
2445         tristate "PPP BSD-Compress compression"
2446         depends on PPP
2447         ---help---
2448           Support for the BSD-Compress compression method for PPP, which uses
2449           the LZW compression method to compress each PPP packet before it is
2450           sent over the wire. The machine at the other end of the PPP link
2451           (usually your ISP) has to support the BSD-Compress compression
2452           method as well for this to be useful. Even if they don't support it,
2453           it is safe to say Y here.
2454
2455           The PPP Deflate compression method ("PPP Deflate compression",
2456           above) is preferable to BSD-Compress, because it compresses better
2457           and is patent-free.
2458
2459           Note that the BSD compression code will always be compiled as a
2460           module; it is called bsd_comp and will show up in the directory
2461           modules once you have said "make modules". If unsure, say N.
2462
2463 config PPPOE
2464         tristate "PPP over Ethernet (EXPERIMENTAL)"
2465         depends on EXPERIMENTAL && PPP
2466         help
2467           Support for PPP over Ethernet.
2468
2469           This driver requires the latest version of pppd from the CVS
2470           repository at cvs.samba.org.  Alternatively, see the 
2471           RoaringPenguin package (http://www.roaringpenguin.com/pppoe)
2472           which contains instruction on how to use this driver (under 
2473           the heading "Kernel mode PPPoE").
2474
2475 config PPPOATM
2476         tristate "PPP over ATM"
2477         depends on ATM && PPP
2478         help
2479           Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2480           This implementation does not yet comply with section 8 of RFC2364,
2481           which can lead to bad results if the ATM peer loses state and
2482           changes its encapsulation unilaterally.
2483
2484 config SLIP
2485         tristate "SLIP (serial line) support"
2486         depends on NETDEVICES
2487         ---help---
2488           Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2489           connect to your Internet service provider or to connect to some
2490           other local Unix box or if you want to configure your Linux box as a
2491           Slip/CSlip server for other people to dial in. SLIP (Serial Line
2492           Internet Protocol) is a protocol used to send Internet traffic over
2493           serial connections such as telephone lines or null modem cables;
2494           nowadays, the protocol PPP is more commonly used for this same
2495           purpose.
2496
2497           Normally, your access provider has to support SLIP in order for you
2498           to be able to use it, but there is now a SLIP emulator called SLiRP
2499           around (available from
2500           <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2501           allows you to use SLIP over a regular dial up shell connection. If
2502           you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2503           NET-3-HOWTO, available from
2504           <http://www.tldp.org/docs.html#howto>, explains how to
2505           configure SLIP. Note that you don't need this option if you just
2506           want to run term (term is a program which gives you almost full
2507           Internet connectivity if you have a regular dial up shell account on
2508           some Internet connected Unix computer. Read
2509           <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2510           support will enlarge your kernel by about 4 KB. If unsure, say N.
2511
2512           To compile this driver as a module, choose M here and read
2513           <file:Documentation/networking/net-modules.txt>. The module will be
2514           called slip.
2515
2516 config SLIP_COMPRESSED
2517         bool "CSLIP compressed headers"
2518         depends on SLIP
2519         ---help---
2520           This protocol is faster than SLIP because it uses compression on the
2521           TCP/IP headers (not on the data itself), but it has to be supported
2522           on both ends. Ask your access provider if you are not sure and
2523           answer Y, just in case. You will still be able to use plain SLIP. If
2524           you plan to use SLiRP, the SLIP emulator (available from
2525           <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2526           allows you to use SLIP over a regular dial up shell connection, you
2527           definitely want to say Y here. The NET-3-HOWTO, available from
2528           <http://www.tldp.org/docs.html#howto>, explains how to configure
2529           CSLIP. This won't enlarge your kernel.
2530
2531 config SLIP_SMART
2532         bool "Keepalive and linefill"
2533         depends on SLIP
2534         help
2535           Adds additional capabilities to the SLIP driver to support the
2536           RELCOM line fill and keepalive monitoring. Ideal on poor quality
2537           analogue lines.
2538
2539 config SLIP_MODE_SLIP6
2540         bool "Six bit SLIP encapsulation"
2541         depends on SLIP
2542         help
2543           Just occasionally you may need to run IP over hostile serial
2544           networks that don't pass all control characters or are only seven
2545           bit. Saying Y here adds an extra mode you can use with SLIP:
2546           "slip6". In this mode, SLIP will only send normal ASCII symbols over
2547           the serial device. Naturally, this has to be supported at the other
2548           end of the link as well. It's good enough, for example, to run IP
2549           over the async ports of a Camtec JNT Pad. If unsure, say N.
2550
2551 config NET_FC
2552         bool "Fibre Channel driver support"
2553         depends on NETDEVICES && SCSI && PCI
2554         help
2555           Fibre Channel is a high speed serial protocol mainly used to connect
2556           large storage devices to the computer; it is compatible with and
2557           intended to replace SCSI.
2558
2559           If you intend to use Fibre Channel, you need to have a Fibre channel
2560           adaptor card in your computer; say Y here and to the driver for your
2561           adaptor below. You also should have said Y to "SCSI support" and
2562           "SCSI generic support".
2563
2564 config IPHASE5526
2565         tristate "Interphase 5526 Tachyon chipset based adapter support"
2566         depends on NET_FC && SCSI && PCI && BROKEN
2567         help
2568           Say Y here if you have a Fibre Channel adaptor of this kind.
2569
2570           To compile this driver as a module, choose M here: the module
2571           will be called iph5526.
2572
2573 config SHAPER
2574         tristate "Traffic Shaper (EXPERIMENTAL)"
2575         depends on NETDEVICES && EXPERIMENTAL
2576         ---help---
2577           The traffic shaper is a virtual network device that allows you to
2578           limit the rate of outgoing data flow over some other network device.
2579           The traffic that you want to slow down can then be routed through
2580           these virtual devices. See
2581           <file:Documentation/networking/shaper.txt> for more information.
2582
2583           An alternative to this traffic shaper is the experimental
2584           Class-Based Queueing (CBQ) scheduling support which you get if you
2585           say Y to "QoS and/or fair queueing" above.
2586
2587           To set up and configure shaper devices, you need the shapecfg
2588           program, available from <ftp://shadow.cabi.net/pub/Linux/> in the
2589           shaper package.
2590
2591           To compile this driver as a module, choose M here: the module
2592           will be called shaper.  If unsure, say N.
2593
2594 config NETCONSOLE
2595         tristate "Network console logging support (EXPERIMENTAL)"
2596         depends on NETDEVICES && EXPERIMENTAL
2597         ---help---
2598         If you want to log kernel messages over the network, enable this.
2599         See Documentation/networking/netconsole.txt for details.
2600