]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/Kconfig
sunhme.c:quattro_pci_find() must be __devinit
[mirror_ubuntu-jammy-kernel.git] / drivers / net / Kconfig
CommitLineData
1da177e4
LT
1
2#
3# Network device configuration
4#
5
d1c0a65f 6menuconfig NETDEVICES
ce2d2aed 7 default y if UML
1da177e4
LT
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
1618cb0c
RD
24# All the following symbols are dependent on NETDEVICES - do not repeat
25# that for each of the symbols.
26if NETDEVICES
cbcd2a4c 27
253af423
JHS
28config IFB
29 tristate "Intermediate Functional Block support"
30 depends on NET_CLS_ACT
31 ---help---
3cb2fccc 32 This is an intermediate driver that allows sharing of
253af423
JHS
33 resources.
34 To compile this driver as a module, choose M here: the module
35 will be called ifb. If you want to use more than one ifb
36 device at a time, you need to compile this driver as a module.
37 Instead of 'ifb', the devices will then be called 'ifb0',
38 'ifb1' etc.
39 Look at the iproute2 documentation directory for usage etc
40
1da177e4
LT
41config DUMMY
42 tristate "Dummy net driver support"
1da177e4
LT
43 ---help---
44 This is essentially a bit-bucket device (i.e. traffic you send to
45 this device is consigned into oblivion) with a configurable IP
46 address. It is most commonly used in order to make your currently
47 inactive SLIP address seem like a real address for local programs.
48 If you use SLIP or PPP, you might want to say Y here. Since this
49 thing often comes in handy, the default is Y. It won't enlarge your
50 kernel either. What a deal. Read about it in the Network
51 Administrator's Guide, available from
52 <http://www.tldp.org/docs.html#guide>.
53
54 To compile this driver as a module, choose M here: the module
55 will be called dummy. If you want to use more than one dummy
56 device at a time, you need to compile this driver as a module.
57 Instead of 'dummy', the devices will then be called 'dummy0',
58 'dummy1' etc.
59
60config BONDING
61 tristate "Bonding driver support"
1da177e4
LT
62 depends on INET
63 ---help---
64 Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
65 Channels together. This is called 'Etherchannel' by Cisco,
66 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
67
68 The driver supports multiple bonding modes to allow for both high
47c51431 69 performance and high availability operation.
1da177e4
LT
70
71 Refer to <file:Documentation/networking/bonding.txt> for more
72 information.
73
74 To compile this driver as a module, choose M here: the module
75 will be called bonding.
76
77config EQUALIZER
78 tristate "EQL (serial line load balancing) support"
1da177e4
LT
79 ---help---
80 If you have two serial connections to some other computer (this
81 usually requires two modems and two telephone lines) and you use
82 SLIP (the protocol for sending Internet traffic over telephone
83 lines) or PPP (a better SLIP) on them, you can make them behave like
84 one double speed connection using this driver. Naturally, this has
85 to be supported at the other end as well, either with a similar EQL
86 Linux driver or with a Livingston Portmaster 2e.
87
88 Say Y if you want this and read
89 <file:Documentation/networking/eql.txt>. You may also want to read
90 section 6.2 of the NET-3-HOWTO, available from
91 <http://www.tldp.org/docs.html#howto>.
92
93 To compile this driver as a module, choose M here: the module
94 will be called eql. If unsure, say N.
95
96config TUN
97 tristate "Universal TUN/TAP device driver support"
1da177e4
LT
98 select CRC32
99 ---help---
100 TUN/TAP provides packet reception and transmission for user space
101 programs. It can be viewed as a simple Point-to-Point or Ethernet
102 device, which instead of receiving packets from a physical media,
103 receives them from user space program and instead of sending packets
104 via physical media writes them to the user space program.
105
106 When a program opens /dev/net/tun, driver creates and registers
107 corresponding net device tunX or tapX. After a program closed above
108 devices, driver will automatically delete tunXX or tapXX device and
109 all routes corresponding to it.
110
111 Please read <file:Documentation/networking/tuntap.txt> for more
112 information.
113
114 To compile this driver as a module, choose M here: the module
115 will be called tun.
116
117 If you don't know what to use this for, you don't need it.
118
119config NET_SB1000
120 tristate "General Instruments Surfboard 1000"
cbcd2a4c 121 depends on PNP
1da177e4
LT
122 ---help---
123 This is a driver for the General Instrument (also known as
124 NextLevel) SURFboard 1000 internal
125 cable modem. This is an ISA card which is used by a number of cable
126 TV companies to provide cable modem access. It's a one-way
127 downstream-only cable modem, meaning that your upstream net link is
128 provided by your regular phone modem.
129
130 At present this driver only compiles as a module, so say M here if
131 you have this card. The module will be called sb1000. Then read
132 <file:Documentation/networking/README.sb1000> for information on how
133 to use this module, as it needs special ppp scripts for establishing
134 a connection. Further documentation and the necessary scripts can be
135 found at:
136
137 <http://www.jacksonville.net/~fventuri/>
138 <http://home.adelphia.net/~siglercm/sb1000.html>
139 <http://linuxpower.cx/~cable/>
140
141 If you don't have this card, of course say N.
142
f65fd8fb 143source "drivers/net/arcnet/Kconfig"
1da177e4 144
00db8189
AF
145source "drivers/net/phy/Kconfig"
146
1da177e4
LT
147#
148# Ethernet
149#
150
d1c0a65f 151menuconfig NET_ETHERNET
1da177e4 152 bool "Ethernet (10 or 100Mbit)"
d1c0a65f 153 depends on !UML
1da177e4
LT
154 ---help---
155 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
156 type of Local Area Network (LAN) in universities and companies.
157
158 Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
159 coaxial cable, linking computers in a chain), 10BASE-T or twisted
160 pair (10 Mbps over twisted pair cable, linking computers to central
161 hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
162 100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
163 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
164 cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
165 [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
166 Ethernet (1 Gbps over optical fiber or short copper links).
167
168 If your Linux machine will be connected to an Ethernet and you have
169 an Ethernet network interface card (NIC) installed in your computer,
170 say Y here and read the Ethernet-HOWTO, available from
171 <http://www.tldp.org/docs.html#howto>. You will then also have
172 to say Y to the driver for your particular NIC.
173
174 Note that the answer to this question won't directly affect the
175 kernel: saying N will just cause the configurator to skip all
176 the questions about Ethernet network cards. If unsure, say N.
177
d1c0a65f
JE
178if NET_ETHERNET
179
1da177e4
LT
180config MII
181 tristate "Generic Media Independent Interface device support"
1da177e4
LT
182 help
183 Most ethernet controllers have MII transceiver either as an external
184 or internal device. It is safe to say Y or M here even if your
185 ethernet card lack MII.
186
89e5785f
HS
187config MACB
188 tristate "Atmel MACB support"
d1c0a65f 189 depends on AVR32 || ARCH_AT91SAM9260 || ARCH_AT91SAM9263
89e5785f
HS
190 select MII
191 help
192 The Atmel MACB ethernet interface is found on many AT32 and AT91
193 parts. Say Y to include support for the MACB chip.
194
195 To compile this driver as a module, choose M here: the module
196 will be called macb.
197
1da177e4
LT
198source "drivers/net/arm/Kconfig"
199
825a2ff1
BD
200config AX88796
201 tristate "ASIX AX88796 NE2000 clone support"
202 select CRC32
203 select MII
204 help
205 AX88796 driver, using platform bus to provide
206 chip detection and resources
207
1da177e4
LT
208config MACE
209 tristate "MACE (Power Mac ethernet) support"
d1c0a65f 210 depends on PPC_PMAC && PPC32
1da177e4
LT
211 select CRC32
212 help
213 Power Macintoshes and clones with Ethernet built-in on the
214 motherboard will usually use a MACE (Medium Access Control for
215 Ethernet) interface. Say Y to include support for the MACE chip.
216
217 To compile this driver as a module, choose M here: the module
218 will be called mace.
219
220config MACE_AAUI_PORT
221 bool "Use AAUI port instead of TP by default"
222 depends on MACE
223 help
224 Some Apple machines (notably the Apple Network Server) which use the
225 MACE ethernet chip have an Apple AUI port (small 15-pin connector),
226 instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
227 Y here if you have such a machine. If unsure, say N.
228 The driver will default to AAUI on ANS anyway, and if you use it as
229 a module, you can provide the port_aaui=0|1 to force the driver.
230
231config BMAC
232 tristate "BMAC (G3 ethernet) support"
d1c0a65f 233 depends on PPC_PMAC && PPC32
1da177e4
LT
234 select CRC32
235 help
236 Say Y for support of BMAC Ethernet interfaces. These are used on G3
237 computers.
238
239 To compile this driver as a module, choose M here: the module
240 will be called bmac.
241
1da177e4
LT
242config ARIADNE
243 tristate "Ariadne support"
d1c0a65f 244 depends on ZORRO
1da177e4
LT
245 help
246 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
247 Otherwise, say N.
248
249 To compile this driver as a module, choose M here: the module
250 will be called ariadne.
251
252config A2065
253 tristate "A2065 support"
d1c0a65f 254 depends on ZORRO
1da177e4
LT
255 select CRC32
256 help
257 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
258 say N.
259
260 To compile this driver as a module, choose M here: the module
261 will be called a2065.
262
263config HYDRA
264 tristate "Hydra support"
d1c0a65f 265 depends on ZORRO
1da177e4
LT
266 select CRC32
267 help
268 If you have a Hydra Ethernet adapter, say Y. Otherwise, say N.
269
270 To compile this driver as a module, choose M here: the module
271 will be called hydra.
272
273config ZORRO8390
274 tristate "Zorro NS8390-based Ethernet support"
d1c0a65f 275 depends on ZORRO
1da177e4
LT
276 select CRC32
277 help
278 This driver is for Zorro Ethernet cards using an NS8390-compatible
279 chipset, like the Village Tronic Ariadne II and the Individual
280 Computers X-Surf Ethernet cards. If you have such a card, say Y.
281 Otherwise, say N.
282
283 To compile this driver as a module, choose M here: the module
284 will be called zorro8390.
285
286config APNE
287 tristate "PCMCIA NE2000 support"
d1c0a65f 288 depends on AMIGA_PCMCIA
1da177e4
LT
289 select CRC32
290 help
291 If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
292 say N.
293
294 To compile this driver as a module, choose M here: the module
295 will be called apne.
296
297config APOLLO_ELPLUS
298 tristate "Apollo 3c505 support"
d1c0a65f 299 depends on APOLLO
1da177e4
LT
300 help
301 Say Y or M here if your Apollo has a 3Com 3c505 ISA Ethernet card.
302 If you don't have one made for Apollos, you can use one from a PC,
303 except that your Apollo won't be able to boot from it (because the
304 code in the ROM will be for a PC).
305
306config MAC8390
307 bool "Macintosh NS 8390 based ethernet cards"
d1c0a65f 308 depends on MAC
1da177e4
LT
309 select CRC32
310 help
311 If you want to include a driver to support Nubus or LC-PDS
312 Ethernet cards using an NS8390 chipset or its equivalent, say Y
313 and read the Ethernet-HOWTO, available from
314 <http://www.tldp.org/docs.html#howto>.
315
316config MAC89x0
317 tristate "Macintosh CS89x0 based ethernet cards"
d1c0a65f 318 depends on MAC
1da177e4
LT
319 ---help---
320 Support for CS89x0 chipset based Ethernet cards. If you have a
321 Nubus or LC-PDS network (Ethernet) card of this type, say Y and
322 read the Ethernet-HOWTO, available from
323 <http://www.tldp.org/docs.html#howto>.
324
325 To compile this driver as a module, choose M here and read
326 <file:Documentation/networking/net-modules.txt>. This module will
327 be called mac89x0.
328
329config MACSONIC
330 tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
d1c0a65f 331 depends on MAC
1da177e4
LT
332 ---help---
333 Support for NatSemi SONIC based Ethernet devices. This includes
334 the onboard Ethernet in many Quadras as well as some LC-PDS,
335 a few Nubus and all known Comm Slot Ethernet cards. If you have
336 one of these say Y and read the Ethernet-HOWTO, available from
337 <http://www.tldp.org/docs.html#howto>.
338
339 To compile this driver as a module, choose M here and read
340 <file:Documentation/networking/net-modules.txt>. This module will
341 be called macsonic.
342
343config MACMACE
8b6aaab8 344 bool "Macintosh (AV) onboard MACE ethernet"
d1c0a65f 345 depends on MAC
1da177e4
LT
346 select CRC32
347 help
348 Support for the onboard AMD 79C940 MACE Ethernet controller used in
349 the 660AV and 840AV Macintosh. If you have one of these Macintoshes
350 say Y and read the Ethernet-HOWTO, available from
351 <http://www.tldp.org/docs.html#howto>.
352
353config MVME147_NET
354 tristate "MVME147 (Lance) Ethernet support"
d1c0a65f 355 depends on MVME147
1da177e4
LT
356 select CRC32
357 help
358 Support for the on-board Ethernet interface on the Motorola MVME147
359 single-board computer. Say Y here to include the
360 driver for this chip in your kernel.
361 To compile this driver as a module, choose M here.
362
363config MVME16x_NET
364 tristate "MVME16x Ethernet support"
d1c0a65f 365 depends on MVME16x
1da177e4
LT
366 help
367 This is the driver for the Ethernet interface on the Motorola
368 MVME162, 166, 167, 172 and 177 boards. Say Y here to include the
369 driver for this chip in your kernel.
370 To compile this driver as a module, choose M here.
371
372config BVME6000_NET
373 tristate "BVME6000 Ethernet support"
d1c0a65f 374 depends on BVME6000
1da177e4
LT
375 help
376 This is the driver for the Ethernet interface on BVME4000 and
377 BVME6000 VME boards. Say Y here to include the driver for this chip
378 in your kernel.
379 To compile this driver as a module, choose M here.
380
381config ATARILANCE
382 tristate "Atari Lance support"
d1c0a65f 383 depends on ATARI
1da177e4
LT
384 help
385 Say Y to include support for several Atari Ethernet adapters based
386 on the AMD Lance chipset: RieblCard (with or without battery), or
387 PAMCard VME (also the version by Rhotron, with different addresses).
388
389config ATARI_BIONET
390 tristate "BioNet-100 support"
d1c0a65f 391 depends on ATARI && ATARI_ACSI && BROKEN
1da177e4
LT
392 help
393 Say Y to include support for BioData's BioNet-100 Ethernet adapter
394 for the ACSI port. The driver works (has to work...) with a polled
395 I/O scheme, so it's rather slow :-(
396
397config ATARI_PAMSNET
398 tristate "PAMsNet support"
d1c0a65f 399 depends on ATARI && ATARI_ACSI && BROKEN
1da177e4
LT
400 help
401 Say Y to include support for the PAMsNet Ethernet adapter for the
402 ACSI port ("ACSI node"). The driver works (has to work...) with a
403 polled I/O scheme, so it's rather slow :-(
404
405config SUN3LANCE
406 tristate "Sun3/Sun3x on-board LANCE support"
d1c0a65f 407 depends on SUN3 || SUN3X
1da177e4
LT
408 help
409 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
410 featured an AMD Lance 10Mbit Ethernet controller on board; say Y
411 here to compile in the Linux driver for this and enable Ethernet.
412 General Linux information on the Sun 3 and 3x series (now
413 discontinued) is at
414 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
415
416 If you're not building a kernel for a Sun 3, say N.
417
418config SUN3_82586
9a482206 419 bool "Sun3 on-board Intel 82586 support"
d1c0a65f 420 depends on SUN3
1da177e4
LT
421 help
422 This driver enables support for the on-board Intel 82586 based
423 Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
424 that this driver does not support 82586-based adapters on additional
425 VME boards.
426
427config HPLANCE
428 bool "HP on-board LANCE support"
d1c0a65f 429 depends on DIO
1da177e4
LT
430 select CRC32
431 help
432 If you want to use the builtin "LANCE" Ethernet controller on an
433 HP300 machine, say Y here.
434
435config LASI_82596
436 tristate "Lasi ethernet"
d1c0a65f 437 depends on GSC
1da177e4 438 help
6de187ee
MW
439 Say Y here to support the builtin Intel 82596 ethernet controller
440 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
1da177e4 441
f2ec8030
TB
442config SNI_82596
443 tristate "SNI RM ethernet"
444 depends on NET_ETHERNET && SNI_RM
445 help
446 Say Y here to support the on-board Intel 82596 ethernet controller
447 built into SNI RM machines.
448
1da177e4
LT
449config MIPS_JAZZ_SONIC
450 tristate "MIPS JAZZ onboard SONIC Ethernet support"
d1c0a65f 451 depends on MACH_JAZZ
1da177e4
LT
452 help
453 This is the driver for the onboard card of MIPS Magnum 4000,
454 Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
455
1da177e4
LT
456config MIPS_AU1X00_ENET
457 bool "MIPS AU1000 Ethernet support"
d1c0a65f 458 depends on SOC_AU1X00
0638dec0 459 select PHYLIB
1da177e4
LT
460 select CRC32
461 help
462 If you have an Alchemy Semi AU1X00 based system
463 say Y. Otherwise, say N.
464
465config NET_SB1250_MAC
466 tristate "SB1250 Ethernet support"
d1c0a65f 467 depends on SIBYTE_SB1xxx_SOC
1da177e4
LT
468
469config SGI_IOC3_ETH
470 bool "SGI IOC3 Ethernet"
d1c0a65f 471 depends on PCI && SGI_IP27
1da177e4
LT
472 select CRC32
473 select MII
474 help
475 If you have a network (Ethernet) card of this type, say Y and read
476 the Ethernet-HOWTO, available from
477 <http://www.tldp.org/docs.html#howto>.
478
479config SGI_IOC3_ETH_HW_RX_CSUM
480 bool "Receive hardware checksums"
481 depends on SGI_IOC3_ETH && INET
482 default y
483 help
484 The SGI IOC3 network adapter supports TCP and UDP checksums in
485 hardware to offload processing of these checksums from the CPU. At
486 the moment only acceleration of IPv4 is supported. This option
487 enables offloading for checksums on receive. If unsure, say Y.
488
489config SGI_IOC3_ETH_HW_TX_CSUM
490 bool "Transmit hardware checksums"
491 depends on SGI_IOC3_ETH && INET
492 default y
493 help
494 The SGI IOC3 network adapter supports TCP and UDP checksums in
495 hardware to offload processing of these checksums from the CPU. At
496 the moment only acceleration of IPv4 is supported. This option
497 enables offloading for checksums on transmit. If unsure, say Y.
498
dcbf8477 499config MIPS_SIM_NET
1e2b980f 500 tristate "MIPS simulator Network device"
d1c0a65f 501 depends on MIPS_SIM
dcbf8477
RB
502 help
503 The MIPSNET device is a simple Ethernet network device which is
504 emulated by the MIPS Simulator.
505 If you are not using a MIPSsim or are unsure, say N.
506
1da177e4
LT
507config SGI_O2MACE_ETH
508 tristate "SGI O2 MACE Fast Ethernet support"
d1c0a65f 509 depends on SGI_IP32=y
1da177e4
LT
510
511config STNIC
512 tristate "National DP83902AV support"
d1c0a65f 513 depends on SUPERH
1da177e4
LT
514 select CRC32
515 help
516 Support for cards based on the National Semiconductor DP83902AV
517 ST-NIC Serial Network Interface Controller for Twisted Pair. This
518 is a 10Mbit/sec Ethernet controller. Product overview and specs at
519 <http://www.national.com/pf/DP/DP83902A.html>.
520
521 If unsure, say N.
522
523config SUNLANCE
524 tristate "Sun LANCE support"
d1c0a65f 525 depends on SBUS
1da177e4
LT
526 select CRC32
527 help
528 This driver supports the "le" interface present on all 32-bit Sparc
529 systems, on some older Ultra systems and as an Sbus option. These
530 cards are based on the AMD Lance chipset, which is better known
531 via the NE2100 cards.
532
533 To compile this driver as a module, choose M here: the module
534 will be called sunlance.
535
536config HAPPYMEAL
537 tristate "Sun Happy Meal 10/100baseT support"
d1c0a65f 538 depends on SBUS || PCI
1da177e4
LT
539 select CRC32
540 help
541 This driver supports the "hme" interface present on most Ultra
542 systems and as an option on older Sbus systems. This driver supports
543 both PCI and Sbus devices. This driver also supports the "qfe" quad
544 100baseT device available in both PCI and Sbus configurations.
545
546 To compile this driver as a module, choose M here: the module
547 will be called sunhme.
548
549config SUNBMAC
550 tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
d1c0a65f 551 depends on SBUS && EXPERIMENTAL
1da177e4
LT
552 select CRC32
553 help
554 This driver supports the "be" interface available as an Sbus option.
555 This is Sun's older 100baseT Ethernet device.
556
557 To compile this driver as a module, choose M here: the module
558 will be called sunbmac.
559
560config SUNQE
561 tristate "Sun QuadEthernet support"
d1c0a65f 562 depends on SBUS
1da177e4
LT
563 select CRC32
564 help
565 This driver supports the "qe" 10baseT Ethernet device, available as
566 an Sbus option. Note that this is not the same as Quad FastEthernet
567 "qfe" which is supported by the Happy Meal driver instead.
568
569 To compile this driver as a module, choose M here: the module
570 will be called sunqe.
571
572config SUNGEM
573 tristate "Sun GEM support"
d1c0a65f 574 depends on PCI
1da177e4
LT
575 select CRC32
576 help
577 Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
578 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
579
1f26dac3
DM
580config CASSINI
581 tristate "Sun Cassini support"
d1c0a65f 582 depends on PCI
1f26dac3
DM
583 select CRC32
584 help
585 Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
586 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
587
1da177e4
LT
588config NET_VENDOR_3COM
589 bool "3COM cards"
d1c0a65f 590 depends on ISA || EISA || MCA || PCI
1da177e4
LT
591 help
592 If you have a network (Ethernet) card belonging to this class, say Y
593 and read the Ethernet-HOWTO, available from
594 <http://www.tldp.org/docs.html#howto>.
595
596 Note that the answer to this question doesn't directly affect the
597 kernel: saying N will just cause the configurator to skip all
598 the questions about 3COM cards. If you say Y, you will be asked for
599 your specific card in the following questions.
600
601config EL1
602 tristate "3c501 \"EtherLink\" support"
603 depends on NET_VENDOR_3COM && ISA
604 ---help---
605 If you have a network (Ethernet) card of this type, say Y and read
606 the Ethernet-HOWTO, available from
607 <http://www.tldp.org/docs.html#howto>. Also, consider buying a
608 new card, since the 3c501 is slow, broken, and obsolete: you will
609 have problems. Some people suggest to ping ("man ping") a nearby
610 machine every minute ("man cron") when using this card.
611
612 To compile this driver as a module, choose M here and read
613 <file:Documentation/networking/net-modules.txt>. The module
614 will be called 3c501.
615
616config EL2
617 tristate "3c503 \"EtherLink II\" support"
618 depends on NET_VENDOR_3COM && ISA
619 select CRC32
620 help
621 If you have a network (Ethernet) card of this type, say Y and read
622 the Ethernet-HOWTO, available from
623 <http://www.tldp.org/docs.html#howto>.
624
625 To compile this driver as a module, choose M here and read
626 <file:Documentation/networking/net-modules.txt>. The module
627 will be called 3c503.
628
629config ELPLUS
630 tristate "3c505 \"EtherLink Plus\" support"
a5532606 631 depends on NET_VENDOR_3COM && ISA && ISA_DMA_API
1da177e4
LT
632 ---help---
633 Information about this network (Ethernet) card can be found in
634 <file:Documentation/networking/3c505.txt>. If you have a card of
635 this type, say Y and read the Ethernet-HOWTO, available from
636 <http://www.tldp.org/docs.html#howto>.
637
638 To compile this driver as a module, choose M here and read
639 <file:Documentation/networking/net-modules.txt>. The module
640 will be called 3c505.
641
642config EL16
643 tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
644 depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
645 help
646 If you have a network (Ethernet) card of this type, say Y and read
647 the Ethernet-HOWTO, available from
648 <http://www.tldp.org/docs.html#howto>.
649
650 To compile this driver as a module, choose M here and read
651 <file:Documentation/networking/net-modules.txt>. The module
652 will be called 3c507.
653
654config EL3
655 tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support"
656 depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
657 ---help---
658 If you have a network (Ethernet) card belonging to the 3Com
659 EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
660 from <http://www.tldp.org/docs.html#howto>.
661
662 If your card is not working you may need to use the DOS
663 setup disk to disable Plug & Play mode, and to select the default
664 media type.
665
666 To compile this driver as a module, choose M here and read
667 <file:Documentation/networking/net-modules.txt>. The module
668 will be called 3c509.
669
670config 3C515
671 tristate "3c515 ISA \"Fast EtherLink\""
a5532606 672 depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API
1da177e4
LT
673 help
674 If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
675 network card, say Y and read the Ethernet-HOWTO, available from
676 <http://www.tldp.org/docs.html#howto>.
677
678 To compile this driver as a module, choose M here and read
679 <file:Documentation/networking/net-modules.txt>. The module
680 will be called 3c515.
681
682config ELMC
683 tristate "3c523 \"EtherLink/MC\" support"
684 depends on NET_VENDOR_3COM && MCA_LEGACY
685 help
686 If you have a network (Ethernet) card of this type, say Y and read
687 the Ethernet-HOWTO, available from
688 <http://www.tldp.org/docs.html#howto>.
689
690 To compile this driver as a module, choose M here and read
691 <file:Documentation/networking/net-modules.txt>. The module
692 will be called 3c523.
693
694config ELMC_II
695 tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
696 depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
697 help
698 If you have a network (Ethernet) card of this type, say Y and read
699 the Ethernet-HOWTO, available from
700 <http://www.tldp.org/docs.html#howto>.
701
702 To compile this driver as a module, choose M here and read
703 <file:Documentation/networking/net-modules.txt>. The module
704 will be called 3c527.
705
706config VORTEX
707 tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
708 depends on NET_VENDOR_3COM && (PCI || EISA)
709 select MII
710 ---help---
47c51431
JM
711 This option enables driver support for a large number of 10Mbps and
712 10/100Mbps EISA, PCI and PCMCIA 3Com network cards:
1da177e4
LT
713
714 "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
715 "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
716 "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
717 "Tornado" (3c905) PCI
718 "Hurricane" (3c555/3cSOHO) PCI
719
720 If you have such a card, say Y and read the Ethernet-HOWTO,
721 available from <http://www.tldp.org/docs.html#howto>. More
722 specific information is in
723 <file:Documentation/networking/vortex.txt> and in the comments at
724 the beginning of <file:drivers/net/3c59x.c>.
725
726 To compile this support as a module, choose M here and read
727 <file:Documentation/networking/net-modules.txt>.
728
729config TYPHOON
730 tristate "3cr990 series \"Typhoon\" support"
731 depends on NET_VENDOR_3COM && PCI
732 select CRC32
733 ---help---
734 This option enables driver support for the 3cr990 series of cards:
735
736 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
737 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
738 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
739
740 If you have a network (Ethernet) card of this type, say Y and read
741 the Ethernet-HOWTO, available from
742 <http://www.tldp.org/docs.html#howto>.
743
744 To compile this driver as a module, choose M here and read
745 <file:Documentation/networking/net-modules.txt>. The module
746 will be called typhoon.
747
748config LANCE
749 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
d1c0a65f 750 depends on ISA && ISA_DMA_API
1da177e4
LT
751 help
752 If you have a network (Ethernet) card of this type, say Y and read
753 the Ethernet-HOWTO, available from
754 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
755 of this type.
756
757 To compile this driver as a module, choose M here: the module
758 will be called lance. This is recommended.
759
760config NET_VENDOR_SMC
761 bool "Western Digital/SMC cards"
d1c0a65f 762 depends on ISA || MCA || EISA || MAC
1da177e4
LT
763 help
764 If you have a network (Ethernet) card belonging to this class, say Y
765 and read the Ethernet-HOWTO, available from
766 <http://www.tldp.org/docs.html#howto>.
767
768 Note that the answer to this question doesn't directly affect the
769 kernel: saying N will just cause the configurator to skip all
770 the questions about Western Digital cards. If you say Y, you will be
771 asked for your specific card in the following questions.
772
773config WD80x3
774 tristate "WD80*3 support"
775 depends on NET_VENDOR_SMC && ISA
776 select CRC32
777 help
778 If you have a network (Ethernet) card of this type, say Y and read
779 the Ethernet-HOWTO, available from
780 <http://www.tldp.org/docs.html#howto>.
781
782 To compile this driver as a module, choose M here and read
783 <file:Documentation/networking/net-modules.txt>. The module
784 will be called wd.
785
786config ULTRAMCA
787 tristate "SMC Ultra MCA support"
788 depends on NET_VENDOR_SMC && MCA
789 select CRC32
790 help
791 If you have a network (Ethernet) card of this type and are running
792 an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
793 available from <http://www.tldp.org/docs.html#howto>.
794
795 To compile this driver as a module, choose M here and read
796 <file:Documentation/networking/net-modules.txt>. The module
797 will be called smc-mca.
798
799config ULTRA
800 tristate "SMC Ultra support"
801 depends on NET_VENDOR_SMC && ISA
802 select CRC32
803 ---help---
804 If you have a network (Ethernet) card of this type, say Y and read
805 the Ethernet-HOWTO, available from
806 <http://www.tldp.org/docs.html#howto>.
807
808 Important: There have been many reports that, with some motherboards
809 mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible,
810 such as some BusLogic models) causes corruption problems with many
811 operating systems. The Linux smc-ultra driver has a work-around for
812 this but keep it in mind if you have such a SCSI card and have
813 problems.
814
815 To compile this driver as a module, choose M here and read
816 <file:Documentation/networking/net-modules.txt>. The module
817 will be called smc-ultra.
818
819config ULTRA32
820 tristate "SMC Ultra32 EISA support"
821 depends on NET_VENDOR_SMC && EISA
822 select CRC32
823 help
824 If you have a network (Ethernet) card of this type, say Y and read
825 the Ethernet-HOWTO, available from
826 <http://www.tldp.org/docs.html#howto>.
827
828 To compile this driver as a module, choose M here and read
829 <file:Documentation/networking/net-modules.txt>. The module
830 will be called smc-ultra32.
831
d1c0a65f
JE
832config SMC9194
833 tristate "SMC 9194 support"
834 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
835 select CRC32
836 ---help---
837 This is support for the SMC9xxx based Ethernet cards. Choose this
838 option if you have a DELL laptop with the docking station, or
839 another SMC9192/9194 based chipset. Say Y if you want it compiled
840 into the kernel, and read the file
841 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
842 available from <http://www.tldp.org/docs.html#howto>.
843
844 To compile this driver as a module, choose M here and read
845 <file:Documentation/networking/net-modules.txt>. The module
846 will be called smc9194.
847
1da177e4
LT
848config SMC91X
849 tristate "SMC 91C9x/91C1xxx support"
850 select CRC32
851 select MII
d1c0a65f 852 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
1da177e4
LT
853 help
854 This is a driver for SMC's 91x series of Ethernet chipsets,
855 including the SMC91C94 and the SMC91C111. Say Y if you want it
856 compiled into the kernel, and read the file
857 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
858 available from <http://www.linuxdoc.org/docs.html#howto>.
859
860 This driver is also available as a module ( = code which can be
861 inserted in and removed from the running kernel whenever you want).
862 The module will be called smc91x. If you want to compile it as a
39f5fb30
AP
863 module, say M here and read <file:Documentation/kbuild/modules.txt>
864 as well as <file:Documentation/networking/net-modules.txt>.
1da177e4 865
92aa674d
SH
866config NET_NETX
867 tristate "NetX Ethernet support"
868 select MII
d1c0a65f 869 depends on ARCH_NETX
92aa674d
SH
870 help
871 This is support for the Hilscher netX builtin Ethernet ports
872
873 To compile this driver as a module, choose M here and read
874 <file:Documentation/networking/net-modules.txt>. The module
875 will be called netx-eth.
876
a1365275
SH
877config DM9000
878 tristate "DM9000 support"
d1c0a65f 879 depends on ARM || MIPS
a1365275
SH
880 select CRC32
881 select MII
882 ---help---
883 Support for DM9000 chipset.
884
885 To compile this driver as a module, choose M here and read
886 <file:Documentation/networking/net-modules.txt>. The module will be
887 called dm9000.
888
0a0c72c9
DM
889config SMC911X
890 tristate "SMSC LAN911[5678] support"
891 select CRC32
892 select MII
d1c0a65f 893 depends on ARCH_PXA
0a0c72c9
DM
894 help
895 This is a driver for SMSC's LAN911x series of Ethernet chipsets
896 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
897 Say Y if you want it compiled into the kernel,
898 and read the Ethernet-HOWTO, available from
899 <http://www.linuxdoc.org/docs.html#howto>.
900
901 This driver is also available as a module. The module will be
902 called smc911x. If you want to compile it as a module, say M
39f5fb30 903 here and read <file:Documentation/kbuild/modules.txt>
0a0c72c9 904
1da177e4
LT
905config NET_VENDOR_RACAL
906 bool "Racal-Interlan (Micom) NI cards"
d1c0a65f 907 depends on ISA
1da177e4
LT
908 help
909 If you have a network (Ethernet) card belonging to this class, such
910 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
911 available from <http://www.tldp.org/docs.html#howto>.
912
913 Note that the answer to this question doesn't directly affect the
914 kernel: saying N will just cause the configurator to skip all
915 the questions about NI cards. If you say Y, you will be asked for
916 your specific card in the following questions.
917
918config NI5010
919 tristate "NI5010 support (EXPERIMENTAL)"
920 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
921 ---help---
922 If you have a network (Ethernet) card of this type, say Y and read
923 the Ethernet-HOWTO, available from
924 <http://www.tldp.org/docs.html#howto>. Note that this is still
925 experimental code.
926
927 To compile this driver as a module, choose M here and read
928 <file:Documentation/networking/net-modules.txt>. The module
929 will be called ni5010.
930
931config NI52
932 tristate "NI5210 support"
933 depends on NET_VENDOR_RACAL && ISA
934 help
935 If you have a network (Ethernet) card of this type, say Y and read
936 the Ethernet-HOWTO, available from
937 <http://www.tldp.org/docs.html#howto>.
938
939 To compile this driver as a module, choose M here and read
940 <file:Documentation/networking/net-modules.txt>. The module
941 will be called ni52.
942
943config NI65
944 tristate "NI6510 support"
a5532606 945 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
1da177e4
LT
946 help
947 If you have a network (Ethernet) card of this type, say Y and read
948 the Ethernet-HOWTO, available from
949 <http://www.tldp.org/docs.html#howto>.
950
951 To compile this driver as a module, choose M here and read
952 <file:Documentation/networking/net-modules.txt>. The module
953 will be called ni65.
954
955source "drivers/net/tulip/Kconfig"
956
957config AT1700
958 tristate "AT1700/1720 support (EXPERIMENTAL)"
d1c0a65f 959 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
1da177e4
LT
960 select CRC32
961 ---help---
962 If you have a network (Ethernet) card of this type, say Y and read
963 the Ethernet-HOWTO, available from
964 <http://www.tldp.org/docs.html#howto>.
965
966 To compile this driver as a module, choose M here and read
967 <file:Documentation/networking/net-modules.txt>. The module
968 will be called at1700.
969
970config DEPCA
971 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
d1c0a65f 972 depends on ISA || EISA || MCA
1da177e4
LT
973 select CRC32
974 ---help---
975 If you have a network (Ethernet) card of this type, say Y and read
976 the Ethernet-HOWTO, available from
977 <http://www.tldp.org/docs.html#howto> as well as
978 <file:drivers/net/depca.c>.
979
980 To compile this driver as a module, choose M here and read
981 <file:Documentation/networking/net-modules.txt>. The module
982 will be called depca.
983
984config HP100
985 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
d1c0a65f 986 depends on ISA || EISA || PCI
1da177e4
LT
987 help
988 If you have a network (Ethernet) card of this type, say Y and read
989 the Ethernet-HOWTO, available from
990 <http://www.tldp.org/docs.html#howto>.
991
992 To compile this driver as a module, choose M here and read
993 <file:Documentation/networking/net-modules.txt>. The module
994 will be called hp100.
995
996config NET_ISA
997 bool "Other ISA cards"
d1c0a65f 998 depends on ISA
1da177e4
LT
999 ---help---
1000 If your network (Ethernet) card hasn't been mentioned yet and its
1001 bus system (that's the way the cards talks to the other components
1002 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1003 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1004 available from <http://www.tldp.org/docs.html#howto>.
1005
1006 If unsure, say Y.
1007
1008 Note that the answer to this question doesn't directly affect the
1009 kernel: saying N will just cause the configurator to skip all
1010 the remaining ISA network card questions. If you say Y, you will be
1011 asked for your specific card in the following questions.
1012
1013config E2100
1014 tristate "Cabletron E21xx support"
1015 depends on NET_ISA
1016 select CRC32
1017 help
1018 If you have a network (Ethernet) card of this type, say Y and read
1019 the Ethernet-HOWTO, available from
1020 <http://www.tldp.org/docs.html#howto>.
1021
1022 To compile this driver as a module, choose M here and read
1023 <file:Documentation/networking/net-modules.txt>. The module
1024 will be called e2100.
1025
1026config EWRK3
1027 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1028 depends on NET_ISA
1029 select CRC32
1030 ---help---
1031 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1032 cards. If this is for you, say Y and read
1033 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1034 well as the Ethernet-HOWTO, available from
1035 <http://www.tldp.org/docs.html#howto>.
1036
1037 To compile this driver as a module, choose M here and read
1038 <file:Documentation/networking/net-modules.txt>. The module
1039 will be called ewrk3.
1040
1041config EEXPRESS
1042 tristate "EtherExpress 16 support"
1043 depends on NET_ISA
1044 ---help---
1045 If you have an EtherExpress16 network (Ethernet) card, say Y and
1046 read the Ethernet-HOWTO, available from
1047 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1048 EtherExpress16 card used to be regarded as a very poor choice
1049 because the driver was very unreliable. We now have a new driver
1050 that should do better.
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 eexpress.
1055
1056config EEXPRESS_PRO
1057 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1058 depends on NET_ISA
1059 ---help---
1060 If you have a network (Ethernet) card of this type, say Y. This
47c51431 1061 driver supports Intel i82595{FX,TX} based boards. Note however
1da177e4
LT
1062 that the EtherExpress PRO/100 Ethernet card has its own separate
1063 driver. Please read the Ethernet-HOWTO, available from
1064 <http://www.tldp.org/docs.html#howto>.
1065
1066 To compile this driver as a module, choose M here and read
1067 <file:Documentation/networking/net-modules.txt>. The module
1068 will be called eepro.
1069
1da177e4
LT
1070config HPLAN_PLUS
1071 tristate "HP PCLAN+ (27247B and 27252A) support"
1072 depends on NET_ISA
1073 select CRC32
1074 help
1075 If you have a network (Ethernet) card of this type, say Y and read
1076 the Ethernet-HOWTO, available from
1077 <http://www.tldp.org/docs.html#howto>.
1078
1079 To compile this driver as a module, choose M here and read
1080 <file:Documentation/networking/net-modules.txt>. The module
1081 will be called hp-plus.
1082
1083config HPLAN
1084 tristate "HP PCLAN (27245 and other 27xxx series) support"
1085 depends on NET_ISA
1086 select CRC32
1087 help
1088 If you have a network (Ethernet) card of this type, say Y and read
1089 the Ethernet-HOWTO, available from
1090 <http://www.tldp.org/docs.html#howto>.
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 hp.
1095
1096config LP486E
1097 tristate "LP486E on board Ethernet"
1098 depends on NET_ISA
1099 help
1100 Say Y here to support the 82596-based on-board Ethernet controller
1101 for the Panther motherboard, which is one of the two shipped in the
1102 Intel Professional Workstation.
1103
1104config ETH16I
1105 tristate "ICL EtherTeam 16i/32 support"
1106 depends on NET_ISA
1107 help
1108 If you have a network (Ethernet) card of this type, say Y and read
1109 the Ethernet-HOWTO, available from
1110 <http://www.tldp.org/docs.html#howto>.
1111
1112 To compile this driver as a module, choose M here and read
1113 <file:Documentation/networking/net-modules.txt>. The module
1114 will be called eth16i.
1115
1116config NE2000
1117 tristate "NE2000/NE1000 support"
57e386ce 1118 depends on NET_ISA || (Q40 && m) || M32R || TOSHIBA_RBTX4927 || TOSHIBA_RBTX4938
1da177e4
LT
1119 select CRC32
1120 ---help---
1121 If you have a network (Ethernet) card of this type, say Y and read
1122 the Ethernet-HOWTO, available from
1123 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1124 without a specific driver are compatible with NE2000.
1125
1126 If you have a PCI NE2000 card however, say N here and Y to "PCI
28beaf65
JJ
1127 NE2000 and clone support" under "EISA, VLB, PCI and on board
1128 controllers" below. If you have a NE2000 card and are running on
1da177e4
LT
1129 an MCA system (a bus system used on some IBM PS/2 computers and
1130 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1131 below.
1132
1133 To compile this driver as a module, choose M here and read
1134 <file:Documentation/networking/net-modules.txt>. The module
1135 will be called ne.
1136
1137config ZNET
1138 tristate "Zenith Z-Note support (EXPERIMENTAL)"
a5532606 1139 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
1da177e4
LT
1140 help
1141 The Zenith Z-Note notebook computer has a built-in network
1142 (Ethernet) card, and this is the Linux driver for it. Note that the
1143 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1144 by this driver. Read the Ethernet-HOWTO, available from
1145 <http://www.tldp.org/docs.html#howto>.
1146
1147config SEEQ8005
1148 tristate "SEEQ8005 support (EXPERIMENTAL)"
1149 depends on NET_ISA && EXPERIMENTAL
1150 help
1151 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1152 is for you, read the Ethernet-HOWTO, available from
1153 <http://www.tldp.org/docs.html#howto>.
1154
1155 To compile this driver as a module, choose M here and read
1156 <file:Documentation/networking/net-modules.txt>. The module
1157 will be called seeq8005.
1158
1da177e4
LT
1159config NE2_MCA
1160 tristate "NE/2 (ne2000 MCA version) support"
d1c0a65f 1161 depends on MCA_LEGACY
1da177e4
LT
1162 select CRC32
1163 help
1164 If you have a network (Ethernet) card of this type, say Y and read
1165 the Ethernet-HOWTO, available from
1166 <http://www.tldp.org/docs.html#howto>.
1167
1168 To compile this driver as a module, choose M here and read
1169 <file:Documentation/networking/net-modules.txt>. The module
1170 will be called ne2.
1171
1172config IBMLANA
1173 tristate "IBM LAN Adapter/A support"
d1c0a65f 1174 depends on MCA && MCA_LEGACY
1da177e4
LT
1175 ---help---
1176 This is a Micro Channel Ethernet adapter. You need to set
1177 CONFIG_MCA to use this driver. It is both available as an in-kernel
1178 driver and as a module.
1179
1180 To compile this driver as a module, choose M here and read
1181 <file:Documentation/networking/net-modules.txt>. The only
1182 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1183 will both support 16K and 32K memory windows, however a 32K window
1184 gives a better security against packet losses. Usage of multiple
1185 boards with this driver should be possible, but has not been tested
1186 up to now due to lack of hardware.
1187
1188config IBMVETH
1189 tristate "IBM LAN Virtual Ethernet support"
d1c0a65f 1190 depends on PPC_PSERIES
1da177e4
LT
1191 ---help---
1192 This driver supports virtual ethernet adapters on newer IBM iSeries
1193 and pSeries systems.
1194
1195 To compile this driver as a module, choose M here and read
1196 <file:Documentation/networking/net-modules.txt>. The module will
1197 be called ibmveth.
1198
1199config IBM_EMAC
37448f7d 1200 tristate "PowerPC 4xx on-chip Ethernet support"
86affd5a 1201 depends on 4xx && !PPC_MERGE
37448f7d
ES
1202 help
1203 This driver supports the PowerPC 4xx EMAC family of on-chip
1204 Ethernet controllers.
1da177e4
LT
1205
1206config IBM_EMAC_RXB
1207 int "Number of receive buffers"
1208 depends on IBM_EMAC
37448f7d 1209 default "128"
1da177e4
LT
1210
1211config IBM_EMAC_TXB
1212 int "Number of transmit buffers"
1213 depends on IBM_EMAC
37448f7d
ES
1214 default "64"
1215
1216config IBM_EMAC_POLL_WEIGHT
1217 int "MAL NAPI polling weight"
1218 depends on IBM_EMAC
1219 default "32"
1da177e4 1220
37448f7d
ES
1221config IBM_EMAC_RX_COPY_THRESHOLD
1222 int "RX skb copy threshold (bytes)"
1da177e4 1223 depends on IBM_EMAC
37448f7d 1224 default "256"
1da177e4 1225
37448f7d
ES
1226config IBM_EMAC_RX_SKB_HEADROOM
1227 int "Additional RX skb headroom (bytes)"
1da177e4
LT
1228 depends on IBM_EMAC
1229 default "0"
37448f7d
ES
1230 help
1231 Additional receive skb headroom. Note, that driver
1232 will always reserve at least 2 bytes to make IP header
47c51431 1233 aligned, so usually there is no need to add any additional
37448f7d
ES
1234 headroom.
1235
1236 If unsure, set to 0.
1237
1238config IBM_EMAC_PHY_RX_CLK_FIX
1239 bool "PHY Rx clock workaround"
1b195916 1240 depends on IBM_EMAC && (405EP || 440GX || 440EP || 440GR)
37448f7d
ES
1241 help
1242 Enable this if EMAC attached to a PHY which doesn't generate
1243 RX clock if there is no link, if this is the case, you will
1244 see "TX disable timeout" or "RX disable timeout" in the system
1245 log.
1246
1247 If unsure, say N.
1248
1249config IBM_EMAC_DEBUG
1250 bool "Debugging"
1251 depends on IBM_EMAC
1252 default n
1253
1254config IBM_EMAC_ZMII
1255 bool
1256 depends on IBM_EMAC && (NP405H || NP405L || 44x)
1257 default y
1258
1259config IBM_EMAC_RGMII
1260 bool
1261 depends on IBM_EMAC && 440GX
1262 default y
1263
1264config IBM_EMAC_TAH
1265 bool
1266 depends on IBM_EMAC && 440GX
1267 default y
1da177e4
LT
1268
1269config NET_PCI
1270 bool "EISA, VLB, PCI and on board controllers"
d1c0a65f 1271 depends on ISA || EISA || PCI
1da177e4
LT
1272 help
1273 This is another class of network cards which attach directly to the
1274 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1275 available from <http://www.tldp.org/docs.html#howto>.
1276
1277 Note that the answer to this question doesn't directly affect the
1278 kernel: saying N will just cause the configurator to skip all
1279 the questions about this class of network cards. If you say Y, you
1280 will be asked for your specific card in the following questions. If
1281 you are unsure, say Y.
1282
1283config PCNET32
1284 tristate "AMD PCnet32 PCI support"
1285 depends on NET_PCI && PCI
1286 select CRC32
1287 select MII
1288 help
1289 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1290 answer Y here and read the Ethernet-HOWTO, available from
1291 <http://www.tldp.org/docs.html#howto>.
1292
1293 To compile this driver as a module, choose M here and read
1294 <file:Documentation/networking/net-modules.txt>. The module
1295 will be called pcnet32.
1296
7de745e5 1297config PCNET32_NAPI
659dd835 1298 bool "Use RX polling (NAPI)"
1299 depends on PCNET32
7de745e5
DF
1300 help
1301 NAPI is a new driver API designed to reduce CPU and interrupt load
1302 when the driver is receiving lots of packets from the card. It is
1303 still somewhat experimental and thus not yet enabled by default.
1304
1305 If your estimated Rx load is 10kpps or more, or if the card will be
1306 deployed on potentially unfriendly networks (e.g. in a firewall),
1307 then say Y here.
1308
1309 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1310 information.
1311
1312 If in doubt, say N.
1313
1da177e4
LT
1314config AMD8111_ETH
1315 tristate "AMD 8111 (new PCI lance) support"
1316 depends on NET_PCI && PCI
1317 select CRC32
1318 select MII
1319 help
1320 If you have an AMD 8111-based PCI lance ethernet card,
1321 answer Y here and 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
1326 will be called amd8111e.
d1c0a65f 1327
1da177e4
LT
1328config AMD8111E_NAPI
1329 bool "Enable NAPI support"
1330 depends on AMD8111_ETH
1331 help
1332 NAPI is a new driver API designed to reduce CPU and interrupt load
1333 when the driver is receiving lots of packets from the card. It is
1334 still somewhat experimental and thus not yet enabled by default.
1335
1336 If your estimated Rx load is 10kpps or more, or if the card will be
1337 deployed on potentially unfriendly networks (e.g. in a firewall),
1338 then say Y here.
1339
1340 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1341 information.
1342
1343 If in doubt, say N.
1344
1345config ADAPTEC_STARFIRE
1346 tristate "Adaptec Starfire/DuraLAN support"
1347 depends on NET_PCI && PCI
1348 select CRC32
1349 select MII
1350 help
1351 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1352 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1353 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1354 driver.
1355
1356 To compile this driver as a module, choose M here: the module
1357 will be called starfire. This is recommended.
1358
1359config ADAPTEC_STARFIRE_NAPI
1360 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1361 depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1362 help
1363 NAPI is a new driver API designed to reduce CPU and interrupt load
1364 when the driver is receiving lots of packets from the card. It is
1365 still somewhat experimental and thus not yet enabled by default.
1366
1367 If your estimated Rx load is 10kpps or more, or if the card will be
1368 deployed on potentially unfriendly networks (e.g. in a firewall),
1369 then say Y here.
1370
1371 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1372 information.
1373
1374 If in doubt, say N.
1375
1376config AC3200
1377 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1378 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1379 select CRC32
1380 help
1381 If you have a network (Ethernet) card of this type, say Y and read
1382 the Ethernet-HOWTO, available from
1383 <http://www.tldp.org/docs.html#howto>.
1384
1385 To compile this driver as a module, choose M here and read
1386 <file:Documentation/networking/net-modules.txt>. The module
1387 will be called ac3200.
1388
1389config APRICOT
1390 tristate "Apricot Xen-II on board Ethernet"
1391 depends on NET_PCI && ISA
1392 help
1393 If you have a network (Ethernet) controller of this type, say Y and
1394 read the Ethernet-HOWTO, available from
1395 <http://www.tldp.org/docs.html#howto>.
1396
1397 To compile this driver as a module, choose M here and read
1398 <file:Documentation/networking/net-modules.txt>. The module will be
1399 called apricot.
1400
1401config B44
fc13dcae
GZ
1402 tristate "Broadcom 4400 ethernet support"
1403 depends on NET_PCI && PCI
1da177e4
LT
1404 select MII
1405 help
1406 If you have a network (Ethernet) controller of this type, say Y and
1407 read the Ethernet-HOWTO, available from
1408 <http://www.tldp.org/docs.html#howto>.
1409
1410 To compile this driver as a module, choose M here and read
1411 <file:Documentation/networking/net-modules.txt>. The module will be
1412 called b44.
1413
1414config FORCEDETH
82770086
AB
1415 tristate "nForce Ethernet support"
1416 depends on NET_PCI && PCI
1da177e4
LT
1417 help
1418 If you have a network (Ethernet) controller of this type, say Y and
1419 read the Ethernet-HOWTO, available from
1420 <http://www.tldp.org/docs.html#howto>.
1421
1422 To compile this driver as a module, choose M here and read
1423 <file:Documentation/networking/net-modules.txt>. The module will be
1424 called forcedeth.
1425
e27cdba5
SH
1426config FORCEDETH_NAPI
1427 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
1428 depends on FORCEDETH && EXPERIMENTAL
1429 help
1430 NAPI is a new driver API designed to reduce CPU and interrupt load
1431 when the driver is receiving lots of packets from the card. It is
1432 still somewhat experimental and thus not yet enabled by default.
1433
1434 If your estimated Rx load is 10kpps or more, or if the card will be
1435 deployed on potentially unfriendly networks (e.g. in a firewall),
1436 then say Y here.
1437
1438 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1439 information.
1440
1441 If in doubt, say N.
1da177e4
LT
1442
1443config CS89x0
1444 tristate "CS89x0 support"
9c878967 1445 depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
1da177e4
LT
1446 ---help---
1447 Support for CS89x0 chipset based Ethernet cards. If you have a
1448 network (Ethernet) card of this type, say Y and read the
1449 Ethernet-HOWTO, available from
1450 <http://www.tldp.org/docs.html#howto> as well as
1451 <file:Documentation/networking/cs89x0.txt>.
1452
1453 To compile this driver as a module, choose M here and read
1454 <file:Documentation/networking/net-modules.txt>. The module will be
fd85d765 1455 called cs89x0.
1da177e4
LT
1456
1457config TC35815
1458 tristate "TOSHIBA TC35815 Ethernet support"
eea221ce
AN
1459 depends on NET_PCI && PCI && MIPS
1460 select MII
1da177e4
LT
1461
1462config DGRS
1463 tristate "Digi Intl. RightSwitch SE-X support"
1464 depends on NET_PCI && (PCI || EISA)
1465 ---help---
1466 This is support for the Digi International RightSwitch series of
1467 PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1468 models. If you have a network card of this type, say Y and read the
1469 Ethernet-HOWTO, available from
1470 <http://www.tldp.org/docs.html#howto>. More specific
1471 information is contained in <file:Documentation/networking/dgrs.txt>.
1472
1473 To compile this driver as a module, choose M here and read
1474 <file:Documentation/networking/net-modules.txt>. The module
1475 will be called dgrs.
1476
1477config EEPRO100
1478 tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1479 depends on NET_PCI && PCI
1480 select MII
1481 help
1482 If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1483 card, say Y and read the Ethernet-HOWTO, available from
1484 <http://www.tldp.org/docs.html#howto>.
1485
1486 To compile this driver as a module, choose M here and read
1487 <file:Documentation/networking/net-modules.txt>. The module
1488 will be called eepro100.
1489
1490
1491config E100
1492 tristate "Intel(R) PRO/100+ support"
1493 depends on NET_PCI && PCI
1494 select MII
1495 ---help---
1496 This driver supports Intel(R) PRO/100 family of adapters.
1497 To verify that your adapter is supported, find the board ID number
1498 on the adapter. Look for a label that has a barcode and a number
1499 in the format 123456-001 (six digits hyphen three digits).
1500
1501 Use the above information and the Adapter & Driver ID Guide at:
1502
1503 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1504
1505 to identify the adapter.
1506
1507 For the latest Intel PRO/100 network driver for Linux, see:
1508
1509 <http://appsr.intel.com/scripts-df/support_intel.asp>
1510
1511 More specific information on configuring the driver is in
1512 <file:Documentation/networking/e100.txt>.
1513
1514 To compile this driver as a module, choose M here and read
1515 <file:Documentation/networking/net-modules.txt>. The module
1516 will be called e100.
1517
1518config LNE390
1519 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1520 depends on NET_PCI && EISA && EXPERIMENTAL
1521 select CRC32
1522 help
1523 If you have a network (Ethernet) card of this type, say Y and read
1524 the Ethernet-HOWTO, available from
1525 <http://www.tldp.org/docs.html#howto>.
1526
1527 To compile this driver as a module, choose M here and read
1528 <file:Documentation/networking/net-modules.txt>. The module
1529 will be called lne390.
1530
1531config FEALNX
1532 tristate "Myson MTD-8xx PCI Ethernet support"
1533 depends on NET_PCI && PCI
1534 select CRC32
1535 select MII
1536 help
1537 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1538 cards. Specifications and data at
1539 <http://www.myson.com.hk/mtd/datasheet/>.
1540
1541config NATSEMI
1542 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1543 depends on NET_PCI && PCI
1544 select CRC32
1545 help
1546 This driver is for the National Semiconductor DP83810 series,
1547 which is used in cards from PureData, NetGear, Linksys
1548 and others, including the 83815 chip.
1549 More specific information and updates are available from
1550 <http://www.scyld.com/network/natsemi.html>.
1551
1552config NE2K_PCI
1553 tristate "PCI NE2000 and clones support (see help)"
1554 depends on NET_PCI && PCI
1555 select CRC32
1556 ---help---
1557 This driver is for NE2000 compatible PCI cards. It will not work
1558 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1559 support" below). If you have a PCI NE2000 network (Ethernet) card,
1560 say Y and read the Ethernet-HOWTO, available from
1561 <http://www.tldp.org/docs.html#howto>.
1562
1563 This driver also works for the following NE2000 clone cards:
1564 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1565 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1566 Holtek HT80232 Holtek HT80229
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 ne2k-pci.
1571
1572config NE3210
1573 tristate "Novell/Eagle/Microdyne NE3210 EISA 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>. Note that this driver
1580 will NOT WORK for NE3200 cards as they are completely different.
1581
1582 To compile this driver as a module, choose M here and read
1583 <file:Documentation/networking/net-modules.txt>. The module
1584 will be called ne3210.
1585
1586config ES3210
1587 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1588 depends on NET_PCI && EISA && EXPERIMENTAL
1589 select CRC32
1590 help
1591 If you have a network (Ethernet) card of this type, say Y and read
1592 the Ethernet-HOWTO, available from
1593 <http://www.tldp.org/docs.html#howto>.
1594
1595 To compile this driver as a module, choose M here and read
1596 <file:Documentation/networking/net-modules.txt>. The module
1597 will be called es3210.
1598
1599config 8139CP
1600 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1601 depends on NET_PCI && PCI && EXPERIMENTAL
1602 select CRC32
1603 select MII
1604 help
1605 This is a driver for the Fast Ethernet PCI network cards based on
1606 the RTL8139C+ chips. If you have one of those, say Y and read
1607 the Ethernet-HOWTO, available from
1608 <http://www.tldp.org/docs.html#howto>.
1609
1610 To compile this driver as a module, choose M here: the module
1611 will be called 8139cp. This is recommended.
1612
1613config 8139TOO
f04e3f09 1614 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
1da177e4
LT
1615 depends on NET_PCI && PCI
1616 select CRC32
1617 select MII
1618 ---help---
1619 This is a driver for the Fast Ethernet PCI network cards based on
f04e3f09
AB
1620 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1621 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
1da177e4
LT
1622
1623 To compile this driver as a module, choose M here: the module
1624 will be called 8139too. This is recommended.
1625
1626config 8139TOO_PIO
1627 bool "Use PIO instead of MMIO"
1628 default y
1629 depends on 8139TOO
1630 help
1631 This instructs the driver to use programmed I/O ports (PIO) instead
1632 of PCI shared memory (MMIO). This can possibly solve some problems
1633 in case your mainboard has memory consistency issues. If unsure,
1634 say N.
1635
1636config 8139TOO_TUNE_TWISTER
1637 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1638 depends on 8139TOO
1639 help
1640 This implements a function which might come in handy in case you
1641 are using low quality on long cabling. It is required for RealTek
1642 RTL-8139 revision K boards, and totally unused otherwise. It tries
1643 to match the transceiver to the cable characteristics. This is
1644 experimental since hardly documented by the manufacturer.
1645 If unsure, say Y.
1646
1647config 8139TOO_8129
1648 bool "Support for older RTL-8129/8130 boards"
1649 depends on 8139TOO
1650 help
1651 This enables support for the older and uncommon RTL-8129 and
1652 RTL-8130 chips, which support MII via an external transceiver,
1653 instead of an internal one. Disabling this option will save some
1654 memory by making the code size smaller. If unsure, say Y.
1655
1656config 8139_OLD_RX_RESET
1657 bool "Use older RX-reset method"
1658 depends on 8139TOO
1659 help
1660 The 8139too driver was recently updated to contain a more rapid
1661 reset sequence, in the face of severe receive errors. This "new"
1662 RX-reset method should be adequate for all boards. But if you
1663 experience problems, you can enable this option to restore the
1664 old RX-reset behavior. If unsure, say N.
1665
1666config SIS900
1667 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1668 depends on NET_PCI && PCI
1669 select CRC32
6da0f685 1670 select MII
1da177e4
LT
1671 ---help---
1672 This is a driver for the Fast Ethernet PCI network cards based on
1673 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
c3cf560e 1674 SiS 630 and SiS 540 chipsets.
1da177e4
LT
1675
1676 This driver also supports AMD 79C901 HomePNA so that you can use
1677 your phone line as a network cable.
1678
1679 To compile this driver as a module, choose M here: the module
1680 will be called sis900. This is recommended.
1681
1682config EPIC100
1683 tristate "SMC EtherPower II"
1684 depends on NET_PCI && PCI
1685 select CRC32
1686 select MII
1687 help
1688 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1689 which is based on the SMC83c17x (EPIC/100).
1690 More specific information and updates are available from
1691 <http://www.scyld.com/network/epic100.html>.
1692
1693config SUNDANCE
1694 tristate "Sundance Alta support"
1695 depends on NET_PCI && PCI
1696 select CRC32
1697 select MII
1698 help
1699 This driver is for the Sundance "Alta" chip.
1700 More specific information and updates are available from
1701 <http://www.scyld.com/network/sundance.html>.
1702
1703config SUNDANCE_MMIO
1704 bool "Use MMIO instead of PIO"
1705 depends on SUNDANCE
1706 help
1707 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1708 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1709 is known to solve bugs on certain chips.
1710
1711 If unsure, say N.
1712
1713config TLAN
1714 tristate "TI ThunderLAN support"
1715 depends on NET_PCI && (PCI || EISA) && !64BIT
1716 ---help---
1717 If you have a PCI Ethernet network card based on the ThunderLAN chip
1718 which is supported by this driver, say Y and read the
1719 Ethernet-HOWTO, available from
1720 <http://www.tldp.org/docs.html#howto>.
1721
1722 Devices currently supported by this driver are Compaq Netelligent,
1723 Compaq NetFlex and Olicom cards. Please read the file
1724 <file:Documentation/networking/tlan.txt> for more details.
1725
1726 To compile this driver as a module, choose M here and read
1727 <file:Documentation/networking/net-modules.txt>. The module
1728 will be called tlan.
1729
1730 Please email feedback to <torben.mathiasen@compaq.com>.
1731
1732config VIA_RHINE
1733 tristate "VIA Rhine support"
1734 depends on NET_PCI && PCI
1735 select CRC32
1736 select MII
1737 help
1738 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1739 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1740 Ethernet functions can also be found integrated on South Bridges
1741 (e.g. VT8235).
1742
1743 To compile this driver as a module, choose M here. The module
1744 will be called via-rhine.
1745
1746config VIA_RHINE_MMIO
1747 bool "Use MMIO instead of PIO"
1748 depends on VIA_RHINE
1749 help
1750 This instructs the driver to use PCI shared memory (MMIO) instead of
1751 programmed I/O ports (PIO). Enabling this gives an improvement in
1752 processing time in parts of the driver.
1753
1754 If unsure, say Y.
1755
633949a1
RL
1756config VIA_RHINE_NAPI
1757 bool "Use Rx Polling (NAPI)"
1758 depends on VIA_RHINE
1759 help
1760 NAPI is a new driver API designed to reduce CPU and interrupt load
1761 when the driver is receiving lots of packets from the card.
1762
1763 If your estimated Rx load is 10kpps or more, or if the card will be
1764 deployed on potentially unfriendly networks (e.g. in a firewall),
1765 then say Y here.
1766
1767 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1768 information.
1da177e4
LT
1769
1770config LAN_SAA9730
f2b67c79
RB
1771 bool "Philips SAA9730 Ethernet support"
1772 depends on NET_PCI && PCI && MIPS_ATLAS
1da177e4
LT
1773 help
1774 The SAA9730 is a combined multimedia and peripheral controller used
1775 in thin clients, Internet access terminals, and diskless
1776 workstations.
1777 See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1778
bf345707
CEB
1779config SC92031
1780 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1781 depends on NET_PCI && PCI && EXPERIMENTAL
1782 select CRC32
1783 ---help---
1784 This is a driver for the Fast Ethernet PCI network cards based on
1785 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1786 have one of these, say Y here.
1787
1788 To compile this driver as a module, choose M here: the module
1789 will be called sc92031. This is recommended.
1790
1da177e4
LT
1791config NET_POCKET
1792 bool "Pocket and portable adapters"
d1c0a65f 1793 depends on PARPORT
1da177e4
LT
1794 ---help---
1795 Cute little network (Ethernet) devices which attach to the parallel
1796 port ("pocket adapters"), commonly used with laptops. If you have
1797 one of those, say Y and read the Ethernet-HOWTO, available from
1798 <http://www.tldp.org/docs.html#howto>.
1799
1800 If you want to plug a network (or some other) card into the PCMCIA
1801 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1802 credit card size extension cards used by all modern laptops), you
1803 need the pcmcia-cs package (location contained in the file
1804 <file:Documentation/Changes>) and you can say N here.
1805
1806 Laptop users should read the Linux Laptop home page at
1807 <http://www.linux-on-laptops.com/> or
1808 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1809
1810 Note that the answer to this question doesn't directly affect the
1811 kernel: saying N will just cause the configurator to skip all
1812 the questions about this class of network devices. If you say Y, you
1813 will be asked for your specific device in the following questions.
1814
1815config ATP
1816 tristate "AT-LAN-TEC/RealTek pocket adapter support"
32fa2bfc 1817 depends on NET_POCKET && PARPORT && X86
1da177e4
LT
1818 select CRC32
1819 ---help---
1820 This is a network (Ethernet) device which attaches to your parallel
1821 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1822 available from <http://www.tldp.org/docs.html#howto>, if you
1823 want to use this. If you intend to use this driver, you should have
1824 said N to the "Parallel printer support", because the two drivers
1825 don't like each other.
1826
1827 To compile this driver as a module, choose M here: the module
1828 will be called atp.
1829
1830config DE600
1831 tristate "D-Link DE600 pocket adapter support"
32fa2bfc 1832 depends on NET_POCKET && PARPORT
1da177e4
LT
1833 ---help---
1834 This is a network (Ethernet) device which attaches to your parallel
1835 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1836 Ethernet-HOWTO, available from
1837 <http://www.tldp.org/docs.html#howto>, if you want to use
1838 this. It is possible to have several devices share a single parallel
1839 port and it is safe to compile the corresponding drivers into the
1840 kernel.
1841
1842 To compile this driver as a module, choose M here: the module
1843 will be called de600.
1844
1845config DE620
1846 tristate "D-Link DE620 pocket adapter support"
32fa2bfc 1847 depends on NET_POCKET && PARPORT
1da177e4
LT
1848 ---help---
1849 This is a network (Ethernet) device which attaches to your parallel
1850 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1851 Ethernet-HOWTO, available from
1852 <http://www.tldp.org/docs.html#howto>, if you want to use
1853 this. It is possible to have several devices share a single parallel
1854 port and it is safe to compile the corresponding drivers into the
1855 kernel.
1856
1857 To compile this driver as a module, choose M here: the module
1858 will be called de620.
1859
1860config SGISEEQ
1861 tristate "SGI Seeq ethernet controller support"
d1c0a65f 1862 depends on SGI_IP22
1da177e4
LT
1863 help
1864 Say Y here if you have an Seeq based Ethernet network card. This is
1865 used in many Silicon Graphics machines.
1866
1867config DECLANCE
1868 tristate "DEC LANCE ethernet controller support"
d1c0a65f 1869 depends on MACH_DECSTATION
1da177e4
LT
1870 select CRC32
1871 help
1872 This driver is for the series of Ethernet controllers produced by
1873 DEC (now Compaq) based on the AMD Lance chipset, including the
1874 DEPCA series. (This chipset is better known via the NE2100 cards.)
1875
1876config 68360_ENET
1877 bool "Motorola 68360 ethernet controller"
1878 depends on M68360
1879 help
1880 Say Y here if you want to use the built-in ethernet controller of
1881 the Motorola 68360 processor.
1882
1883config FEC
2af6921f 1884 bool "FEC ethernet controller (of ColdFire CPUs)"
892b6252 1885 depends on M523x || M527x || M5272 || M528x || M520x
1da177e4
LT
1886 help
1887 Say Y here if you want to use the built-in 10/100 Fast ethernet
2af6921f
GU
1888 controller on some Motorola ColdFire processors.
1889
1890config FEC2
1891 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1892 depends on FEC
1893 help
1894 Say Y here if you want to use the second built-in 10/100 Fast
1895 ethernet controller on some Motorola ColdFire processors.
1da177e4
LT
1896
1897config NE_H8300
1898 tristate "NE2000 compatible support for H8/300"
d1c0a65f 1899 depends on H8300
1da177e4
LT
1900 help
1901 Say Y here if you want to use the NE2000 compatible
1902 controller on the Renesas H8/300 processor.
1903
1904source "drivers/net/fec_8xx/Kconfig"
48257c4f 1905source "drivers/net/fs_enet/Kconfig"
1da177e4 1906
d1c0a65f 1907endif # NET_ETHERNET
1da177e4
LT
1908
1909#
1910# Gigabit Ethernet
1911#
1912
f30486d5
JE
1913menuconfig NETDEV_1000
1914 bool "Ethernet (1000 Mbit)"
cbcd2a4c 1915 depends on !UML
f30486d5
JE
1916 default y
1917
1918if NETDEV_1000
1da177e4
LT
1919
1920config ACENIC
1921 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1922 depends on PCI
1923 ---help---
1924 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1925 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1926 adapter. The driver allows for using the Jumbo Frame option (9000
1927 bytes/frame) however it requires that your switches can handle this
1928 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1929 line.
1930
1931 To compile this driver as a module, choose M here: the
1932 module will be called acenic.
1933
1934config ACENIC_OMIT_TIGON_I
1935 bool "Omit support for old Tigon I based AceNICs"
1936 depends on ACENIC
1937 help
1938 Say Y here if you only have Tigon II based AceNICs and want to leave
1939 out support for the older Tigon I based cards which are no longer
1940 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1941 version)). This will reduce the size of the driver object by
1942 app. 100KB. If you are not sure whether your card is a Tigon I or a
1943 Tigon II, say N here.
1944
1945 The safe and default value for this is N.
1946
1947config DL2K
1948 tristate "D-Link DL2000-based Gigabit Ethernet support"
1949 depends on PCI
1950 select CRC32
1951 help
1952 This driver supports D-Link 2000-based gigabit ethernet cards, which
1953 includes
1954 D-Link DGE-550T Gigabit Ethernet Adapter.
1955 D-Link DL2000-based Gigabit Ethernet Adapter.
1956
1957 To compile this driver as a module, choose M here: the
1958 module will be called dl2k.
1959
1960config E1000
1961 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1962 depends on PCI
1963 ---help---
1964 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1965 adapters. For more information on how to identify your adapter, go
1966 to the Adapter & Driver ID Guide at:
1967
1968 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1969
1970 For general information and support, go to the Intel support
1971 website at:
1972
1973 <http://support.intel.com>
1974
1975 More specific information on configuring the driver is in
1976 <file:Documentation/networking/e1000.txt>.
1977
1978 To compile this driver as a module, choose M here and read
1979 <file:Documentation/networking/net-modules.txt>. The module
1980 will be called e1000.
1981
1982config E1000_NAPI
1983 bool "Use Rx Polling (NAPI)"
1984 depends on E1000
1985 help
1986 NAPI is a new driver API designed to reduce CPU and interrupt load
1987 when the driver is receiving lots of packets from the card. It is
1988 still somewhat experimental and thus not yet enabled by default.
1989
1990 If your estimated Rx load is 10kpps or more, or if the card will be
1991 deployed on potentially unfriendly networks (e.g. in a firewall),
1992 then say Y here.
1993
1994 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1995 information.
1996
1997 If in doubt, say N.
1998
35ec56bb
JB
1999config E1000_DISABLE_PACKET_SPLIT
2000 bool "Disable Packet Split for PCI express adapters"
2001 depends on E1000
2002 help
2003 Say Y here if you want to use the legacy receive path for PCI express
9e6b4873 2004 hardware.
35ec56bb
JB
2005
2006 If in doubt, say N.
2007
15d014d1
LB
2008source "drivers/net/ixp2000/Kconfig"
2009
1da177e4
LT
2010config MYRI_SBUS
2011 tristate "MyriCOM Gigabit Ethernet support"
2012 depends on SBUS
2013 help
2014 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2015
2016 To compile this driver as a module, choose M here: the module
2017 will be called myri_sbus. This is recommended.
2018
2019config NS83820
47c51431 2020 tristate "National Semiconductor DP83820 support"
1da177e4
LT
2021 depends on PCI
2022 help
2023 This is a driver for the National Semiconductor DP83820 series
2024 of gigabit ethernet MACs. Cards using this chipset include
2025 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2026 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2027 zero copy.
2028
2029config HAMACHI
2030 tristate "Packet Engines Hamachi GNIC-II support"
2031 depends on PCI
2032 select MII
2033 help
2034 If you have a Gigabit Ethernet card of this type, say Y and read
2035 the Ethernet-HOWTO, available from
2036 <http://www.tldp.org/docs.html#howto>.
2037
2038 To compile this driver as a module, choose M here and read
2039 <file:Documentation/networking/net-modules.txt>. The module will be
2040 called hamachi.
2041
2042config YELLOWFIN
2043 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2044 depends on PCI && EXPERIMENTAL
2045 select CRC32
2046 ---help---
2047 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2048 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2049 used by the Beowulf Linux cluster project. See
2050 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2051 information about this driver in particular and Beowulf in general.
2052
2053 To compile this driver as a module, choose M here: the module
2054 will be called yellowfin. This is recommended.
2055
2056config R8169
2057 tristate "Realtek 8169 gigabit ethernet support"
2058 depends on PCI
2059 select CRC32
2060 ---help---
2061 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2062
2063 To compile this driver as a module, choose M here: the module
2064 will be called r8169. This is recommended.
2065
2066config R8169_NAPI
2067 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
2068 depends on R8169 && EXPERIMENTAL
2069 help
2070 NAPI is a new driver API designed to reduce CPU and interrupt load
2071 when the driver is receiving lots of packets from the card. It is
2072 still somewhat experimental and thus not yet enabled by default.
2073
2074 If your estimated Rx load is 10kpps or more, or if the card will be
2075 deployed on potentially unfriendly networks (e.g. in a firewall),
2076 then say Y here.
2077
2078 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2079 information.
2080
2081 If in doubt, say N.
2082
2083config R8169_VLAN
2084 bool "VLAN support"
2085 depends on R8169 && VLAN_8021Q
2086 ---help---
2087 Say Y here for the r8169 driver to support the functions required
2088 by the kernel 802.1Q code.
2089
2090 If in doubt, say Y.
2091
890e8d0a 2092config SIS190
e797637f 2093 tristate "SiS190/SiS191 gigabit ethernet support"
e9985d53
AB
2094 depends on PCI
2095 select CRC32
2096 select MII
2097 ---help---
e797637f
FR
2098 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2099 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2100 appear in lan on motherboard designs which are based on SiS 965
2101 and SiS 966 south bridge.
e9985d53
AB
2102
2103 To compile this driver as a module, choose M here: the module
2104 will be called sis190. This is recommended.
890e8d0a 2105
baef58b1 2106config SKGE
7a160c73
SH
2107 tristate "New SysKonnect GigaEthernet support"
2108 depends on PCI
baef58b1
SH
2109 select CRC32
2110 ---help---
2111 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2112 and related Gigabit Ethernet adapters. It is a new smaller driver
46a60f2d 2113 with better performance and more complete ethtool support.
baef58b1
SH
2114
2115 It does not support the link failover and network management
2116 features that "portable" vendor supplied sk98lin driver does.
cd28ab6a 2117
c6f0d75a
DD
2118 This driver supports adapters based on the original Yukon chipset:
2119 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2120 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2121
2122 It does not support the newer Yukon2 chipset: a separate driver,
2123 sky2, is provided for Yukon2-based adapters.
2124
2125 To compile this driver as a module, choose M here: the module
2126 will be called skge. This is recommended.
cd28ab6a
SH
2127
2128config SKY2
8a3e3bfd 2129 tristate "SysKonnect Yukon2 support"
f479b322 2130 depends on PCI
cd28ab6a
SH
2131 select CRC32
2132 ---help---
cab00891 2133 This driver supports Gigabit Ethernet adapters based on the
c6f0d75a
DD
2134 Marvell Yukon 2 chipset:
2135 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2136 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2137
f479b322
SH
2138 There is companion driver for the older Marvell Yukon and
2139 Genesis based adapters: skge.
cd28ab6a
SH
2140
2141 To compile this driver as a module, choose M here: the module
2142 will be called sky2. This is recommended.
2143
3cf26753
SH
2144config SKY2_DEBUG
2145 bool "Debugging interface"
2146 depends on SKY2 && DEBUG_FS
2147 help
2148 This option adds the ability to dump driver state for debugging.
2149 The file debugfs/sky2/ethX displays the state of the internal
2150 transmit and receive rings.
2151
2152 If unsure, say N.
2153
1da177e4 2154config SK98LIN
0b3581e2 2155 tristate "Marvell Yukon Chipset / SysKonnect SK-98xx Support (DEPRECATED)"
1da177e4
LT
2156 depends on PCI
2157 ---help---
2158 Say Y here if you have a Marvell Yukon or SysKonnect SK-98xx/SK-95xx
c6f0d75a
DD
2159 compliant Gigabit Ethernet Adapter.
2160
0b3581e2
DD
2161 This driver supports the original Yukon chipset. This driver is
2162 deprecated and will be removed from the kernel in the near future,
2163 it has been replaced by the skge driver. skge is cleaner and
2164 seems to work better.
c6f0d75a 2165
3cb2fccc 2166 This driver does not support the newer Yukon2 chipset. A separate
c6f0d75a
DD
2167 driver, sky2, is provided to support Yukon2-based adapters.
2168
2169 The following adapters are supported by this driver:
1da177e4
LT
2170 - 3Com 3C940 Gigabit LOM Ethernet Adapter
2171 - 3Com 3C941 Gigabit LOM Ethernet Adapter
2172 - Allied Telesyn AT-2970LX Gigabit Ethernet Adapter
2173 - Allied Telesyn AT-2970LX/2SC Gigabit Ethernet Adapter
2174 - Allied Telesyn AT-2970SX Gigabit Ethernet Adapter
2175 - Allied Telesyn AT-2970SX/2SC Gigabit Ethernet Adapter
2176 - Allied Telesyn AT-2970TX Gigabit Ethernet Adapter
2177 - Allied Telesyn AT-2970TX/2TX Gigabit Ethernet Adapter
2178 - Allied Telesyn AT-2971SX Gigabit Ethernet Adapter
2179 - Allied Telesyn AT-2971T Gigabit Ethernet Adapter
2180 - Belkin Gigabit Desktop Card 10/100/1000Base-T Adapter, Copper RJ-45
1da177e4
LT
2181 - EG1032 v2 Instant Gigabit Network Adapter
2182 - EG1064 v2 Instant Gigabit Network Adapter
2183 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Abit)
2184 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Albatron)
2185 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Asus)
2186 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (ECS)
2187 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Epox)
2188 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Foxconn)
2189 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Gigabyte)
2190 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Iwill)
2191 - Marvell 88E8050 Gigabit LOM Ethernet Adapter (Intel)
2192 - Marvell RDK-8001 Adapter
2193 - Marvell RDK-8002 Adapter
2194 - Marvell RDK-8003 Adapter
2195 - Marvell RDK-8004 Adapter
2196 - Marvell RDK-8006 Adapter
2197 - Marvell RDK-8007 Adapter
2198 - Marvell RDK-8008 Adapter
2199 - Marvell RDK-8009 Adapter
2200 - Marvell RDK-8010 Adapter
2201 - Marvell RDK-8011 Adapter
2202 - Marvell RDK-8012 Adapter
2203 - Marvell RDK-8052 Adapter
2204 - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (32 bit)
2205 - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (64 bit)
2206 - N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L)
2207 - SK-9521 10/100/1000Base-T Adapter
2208 - SK-9521 V2.0 10/100/1000Base-T Adapter
2209 - SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T)
2210 - SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter
2211 - SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link)
2212 - SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX)
2213 - SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter
2214 - SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link)
2215 - SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX)
2216 - SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2217 - SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link)
2218 - SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2219 - SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition)
2220 - SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2221 - SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link)
2222 - SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX)
2223 - SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter
2224 - SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)
2225 - SMC EZ Card 1000 (SMC9452TXV.2)
2226
2227 The adapters support Jumbo Frames.
2228 The dual link adapters support link-failover and dual port features.
2229 Both Marvell Yukon and SysKonnect SK-98xx/SK-95xx adapters support
2230 the scatter-gather functionality with sendfile(). Please refer to
2231 <file:Documentation/networking/sk98lin.txt> for more information about
2232 optional driver parameters.
2233 Questions concerning this driver may be addressed to:
2234 <linux@syskonnect.de>
2235
2236 If you want to compile this driver as a module ( = code which can be
2237 inserted in and removed from the running kernel whenever you want),
2238 say M here and read <file:Documentation/kbuild/modules.txt>. The module will
2239 be called sk98lin. This is recommended.
2240
2241config VIA_VELOCITY
2242 tristate "VIA Velocity support"
73815538 2243 depends on PCI
1da177e4
LT
2244 select CRC32
2245 select CRC_CCITT
2246 select MII
2247 help
2248 If you have a VIA "Velocity" based network card say Y here.
2249
2250 To compile this driver as a module, choose M here. The module
2251 will be called via-velocity.
2252
2253config TIGON3
2254 tristate "Broadcom Tigon3 support"
2255 depends on PCI
2256 help
2257 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2258
2259 To compile this driver as a module, choose M here: the module
2260 will be called tg3. This is recommended.
2261
b6016b76
MC
2262config BNX2
2263 tristate "Broadcom NetXtremeII support"
2264 depends on PCI
fba9fe91
MC
2265 select CRC32
2266 select ZLIB_INFLATE
b6016b76
MC
2267 help
2268 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2269
2270 To compile this driver as a module, choose M here: the module
2271 will be called bnx2. This is recommended.
2272
aaec0fab
JO
2273config SPIDER_NET
2274 tristate "Spider Gigabit Ethernet driver"
3342cf0e 2275 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
9b15879a 2276 select FW_LOADER
aaec0fab
JO
2277 help
2278 This driver supports the Gigabit Ethernet chips present on the
2279 Cell Processor-Based Blades from IBM.
2280
5e123b84
ZR
2281config TSI108_ETH
2282 tristate "Tundra TSI108 gigabit Ethernet support"
2283 depends on TSI108_BRIDGE
2284 help
2285 This driver supports Tundra TSI108 gigabit Ethernet ports.
2286 To compile this driver as a module, choose M here: the module
2287 will be called tsi108_eth.
2288
1da177e4
LT
2289config GIANFAR
2290 tristate "Gianfar Ethernet"
ef82a306 2291 depends on 85xx || 83xx || PPC_86xx
bb40dcbb 2292 select PHYLIB
bf41a7c5 2293 select CRC32
1da177e4 2294 help
ef82a306
JL
2295 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2296 and MPC86xx family of chips, and the FEC on the 8540.
1da177e4
LT
2297
2298config GFAR_NAPI
2299 bool "NAPI Support"
2300 depends on GIANFAR
2301
ce973b14 2302config UCC_GETH
7d776cb5
TT
2303 tristate "Freescale QE Gigabit Ethernet"
2304 depends on QUICC_ENGINE
296baae2 2305 select PHYLIB
ce973b14 2306 help
7d776cb5
TT
2307 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2308 which is available on some Freescale SOCs.
ce973b14
LY
2309
2310config UGETH_NAPI
2311 bool "NAPI Support"
2312 depends on UCC_GETH
2313
2314config UGETH_MAGIC_PACKET
2315 bool "Magic Packet detection support"
2316 depends on UCC_GETH
2317
2318config UGETH_FILTERING
2319 bool "Mac address filtering support"
2320 depends on UCC_GETH
2321
d5b9049d
MR
2322config UGETH_TX_ON_DEMAND
2323 bool "Transmit on Demand support"
ce973b14
LY
2324 depends on UCC_GETH
2325
1da177e4
LT
2326config MV643XX_ETH
2327 tristate "MV-643XX Ethernet support"
649c8e02 2328 depends on MOMENCO_OCELOT_C || MOMENCO_JAGUAR_ATX || MV64360 || MV64X60 || MOMENCO_OCELOT_3 || (PPC_MULTIPLATFORM && PPC32)
cd6478c8 2329 select MII
1da177e4
LT
2330 help
2331 This driver supports the gigabit Ethernet on the Marvell MV643XX
2332 chipset which is used in the Momenco Ocelot C and Jaguar ATX and
2333 Pegasos II, amongst other PPC and MIPS boards.
2334
5a4faa87
RM
2335config QLA3XXX
2336 tristate "QLogic QLA3XXX Network Driver Support"
2337 depends on PCI
2338 help
2339 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2340
2341 To compile this driver as a module, choose M here: the module
2342 will be called qla3xxx.
2343
f3cc28c7
JC
2344config ATL1
2345 tristate "Attansic L1 Gigabit Ethernet support (EXPERIMENTAL)"
a1ca14b1 2346 depends on PCI && EXPERIMENTAL
f3cc28c7
JC
2347 select CRC32
2348 select MII
2349 help
2350 This driver supports the Attansic L1 gigabit ethernet adapter.
2351
2352 To compile this driver as a module, choose M here. The module
2353 will be called atl1.
2354
f30486d5 2355endif # NETDEV_1000
1da177e4
LT
2356
2357#
2358# 10 Gigabit Ethernet
2359#
2360
f30486d5
JE
2361menuconfig NETDEV_10000
2362 bool "Ethernet (10000 Mbit)"
cbcd2a4c 2363 depends on !UML
f30486d5
JE
2364 default y
2365
2366if NETDEV_10000
1da177e4 2367
8199d3a7
CL
2368config CHELSIO_T1
2369 tristate "Chelsio 10Gb Ethernet support"
2370 depends on PCI
57834ca1 2371 select CRC32
8199d3a7 2372 help
f1d3d38a
SH
2373 This driver supports Chelsio gigabit and 10-gigabit
2374 Ethernet cards. More information about adapter features and
2375 performance tuning is in <file:Documentation/networking/cxgb.txt>.
8199d3a7
CL
2376
2377 For general information about Chelsio and our products, visit
2378 our website at <http://www.chelsio.com>.
2379
2380 For customer support, please visit our customer support page at
2381 <http://www.chelsio.com/support.htm>.
2382
2383 Please send feedback to <linux-bugs@chelsio.com>.
2384
2385 To compile this driver as a module, choose M here: the module
2386 will be called cxgb.
2387
352c417d
SH
2388config CHELSIO_T1_1G
2389 bool "Chelsio gigabit Ethernet support"
2390 depends on CHELSIO_T1
2391 help
2392 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2393 are using only 10G cards say 'N' here.
2394
7fe26a60
SH
2395config CHELSIO_T1_NAPI
2396 bool "Use Rx Polling (NAPI)"
2397 depends on CHELSIO_T1
2398 default y
2399 help
2400 NAPI is a driver API designed to reduce CPU and interrupt load
2401 when the driver is receiving lots of packets from the card.
2402
4d22de3e 2403config CHELSIO_T3
194c1fbe
DLR
2404 tristate "Chelsio Communications T3 10Gb Ethernet support"
2405 depends on PCI
2e283962 2406 select FW_LOADER
194c1fbe
DLR
2407 help
2408 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2409 adapters.
4d22de3e 2410
194c1fbe
DLR
2411 For general information about Chelsio and our products, visit
2412 our website at <http://www.chelsio.com>.
4d22de3e 2413
194c1fbe
DLR
2414 For customer support, please visit our customer support page at
2415 <http://www.chelsio.com/support.htm>.
4d22de3e 2416
194c1fbe 2417 Please send feedback to <linux-bugs@chelsio.com>.
4d22de3e 2418
194c1fbe
DLR
2419 To compile this driver as a module, choose M here: the module
2420 will be called cxgb3.
4d22de3e 2421
7a291083
JBT
2422config EHEA
2423 tristate "eHEA Ethernet support"
2424 depends on IBMEBUS
2425 ---help---
2426 This driver supports the IBM pSeries eHEA ethernet adapter.
2427
2428 To compile the driver as a module, choose M here. The module
2429 will be called ehea.
2430
1da177e4
LT
2431config IXGB
2432 tristate "Intel(R) PRO/10GbE support"
2433 depends on PCI
2434 ---help---
2435 This driver supports Intel(R) PRO/10GbE family of
2436 adapters. For more information on how to identify your adapter, go
2437 to the Adapter & Driver ID Guide at:
2438
2439 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2440
2441 For general information and support, go to the Intel support
2442 website at:
2443
2444 <http://support.intel.com>
2445
2446 More specific information on configuring the driver is in
2447 <file:Documentation/networking/ixgb.txt>.
2448
2449 To compile this driver as a module, choose M here and read
2450 <file:Documentation/networking/net-modules.txt>. The module
2451 will be called ixgb.
2452
2453config IXGB_NAPI
2454 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2455 depends on IXGB && EXPERIMENTAL
2456 help
2457 NAPI is a new driver API designed to reduce CPU and interrupt load
2458 when the driver is receiving lots of packets from the card. It is
2459 still somewhat experimental and thus not yet enabled by default.
2460
2461 If your estimated Rx load is 10kpps or more, or if the card will be
2462 deployed on potentially unfriendly networks (e.g. in a firewall),
2463 then say Y here.
2464
2465 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2466 information.
2467
2468 If in doubt, say N.
2469
2470config S2IO
2471 tristate "S2IO 10Gbe XFrame NIC"
2472 depends on PCI
2473 ---help---
2474 This driver supports the 10Gbe XFrame NIC of S2IO.
9eb343ae
AM
2475 More specific information on configuring the driver is in
2476 <file:Documentation/networking/s2io.txt>.
1da177e4
LT
2477
2478config S2IO_NAPI
2479 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2480 depends on S2IO && EXPERIMENTAL
2481 help
2482 NAPI is a new driver API designed to reduce CPU and interrupt load
2483 when the driver is receiving lots of packets from the card. It is
2484 still somewhat experimental and thus not yet enabled by default.
2485
2486 If your estimated Rx load is 10kpps or more, or if the card will be
2487 deployed on potentially unfriendly networks (e.g. in a firewall),
2488 then say Y here.
2489
2490 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2491 information.
2492
2493 If in doubt, say N.
2494
0da34b6d
BG
2495config MYRI10GE
2496 tristate "Myricom Myri-10G Ethernet support"
2497 depends on PCI
2498 select FW_LOADER
2499 select CRC32
2500 ---help---
2501 This driver supports Myricom Myri-10G Dual Protocol interface in
2502 Ethernet mode. If the eeprom on your board is not recent enough,
2503 you will need a newer firmware image.
2504 You may get this image or more information, at:
2505
d2794905 2506 <http://www.myri.com/scs/download-Myri10GE.html>
0da34b6d
BG
2507
2508 To compile this driver as a module, choose M here and read
2509 <file:Documentation/networking/net-modules.txt>. The module
2510 will be called myri10ge.
2511
3d396eb1
AK
2512config NETXEN_NIC
2513 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
5ac36615 2514 depends on PCI
3d396eb1
AK
2515 help
2516 This enables the support for NetXen's Gigabit Ethernet card.
2517
f5cd7872
OJ
2518config PASEMI_MAC
2519 tristate "PA Semi 1/10Gbit MAC"
2520 depends on PPC64 && PCI
bb6e9590 2521 select PHYLIB
f5cd7872
OJ
2522 help
2523 This driver supports the on-chip 1/10Gbit Ethernet controller on
2524 PA Semi's PWRficient line of chips.
2525
225c7b1f
RD
2526config MLX4_CORE
2527 tristate
2528 depends on PCI
2529 default n
2530
2531config MLX4_DEBUG
2532 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
f550d94c 2533 depends on MLX4_CORE
225c7b1f
RD
2534 default y
2535 ---help---
2536 This option causes debugging code to be compiled into the
2537 mlx4_core driver. The output can be turned on via the
2538 debug_level module parameter (which can also be set after
2539 the driver is loaded through sysfs).
2540
f30486d5 2541endif # NETDEV_10000
1da177e4 2542
1da177e4
LT
2543source "drivers/net/tokenring/Kconfig"
2544
2545source "drivers/net/wireless/Kconfig"
2546
5b2fc499
JG
2547source "drivers/net/usb/Kconfig"
2548
1da177e4 2549source "drivers/net/pcmcia/Kconfig"
1da177e4
LT
2550
2551source "drivers/net/wan/Kconfig"
2552
2553source "drivers/atm/Kconfig"
2554
2555source "drivers/s390/net/Kconfig"
2556
2557config ISERIES_VETH
2558 tristate "iSeries Virtual Ethernet driver support"
cbcd2a4c 2559 depends on PPC_ISERIES
1da177e4 2560
f89efd52
MP
2561config RIONET
2562 tristate "RapidIO Ethernet over messaging driver support"
a81c52a8 2563 depends on RAPIDIO
f89efd52
MP
2564
2565config RIONET_TX_SIZE
2566 int "Number of outbound queue entries"
2567 depends on RIONET
2568 default "128"
2569
2570config RIONET_RX_SIZE
2571 int "Number of inbound queue entries"
2572 depends on RIONET
2573 default "128"
2574
1da177e4
LT
2575config FDDI
2576 bool "FDDI driver support"
e89a2cfb 2577 depends on (PCI || EISA || TC)
1da177e4
LT
2578 help
2579 Fiber Distributed Data Interface is a high speed local area network
2580 design; essentially a replacement for high speed Ethernet. FDDI can
2581 run over copper or fiber. If you are connected to such a network and
2582 want a driver for the FDDI card in your computer, say Y here (and
2583 then also Y to the driver for your FDDI card, below). Most people
2584 will say N.
2585
2586config DEFXX
e89a2cfb
MR
2587 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2588 depends on FDDI && (PCI || EISA || TC)
2589 ---help---
2590 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2591 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2592 to a local FDDI network.
2593
2594 To compile this driver as a module, choose M here: the module
2595 will be called defxx. If unsure, say N.
2596
2597config DEFXX_MMIO
2598 bool
2599 prompt "Use MMIO instead of PIO" if PCI || EISA
2600 depends on DEFXX
2601 default n if PCI || EISA
2602 default y
2603 ---help---
2604 This instructs the driver to use EISA or PCI memory-mapped I/O
2605 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2606 Enabling this gives an improvement in processing time in parts
2607 of the driver, but it may cause problems with EISA (DEFEA)
2608 adapters. TURBOchannel does not have the concept of I/O ports,
2609 so MMIO is always used for these (DEFTA) adapters.
2610
2611 If unsure, say N.
1da177e4
LT
2612
2613config SKFP
2614 tristate "SysKonnect FDDI PCI support"
2615 depends on FDDI && PCI
bc63eb9c 2616 select BITREVERSE
1da177e4
LT
2617 ---help---
2618 Say Y here if you have a SysKonnect FDDI PCI adapter.
2619 The following adapters are supported by this driver:
2620 - SK-5521 (SK-NET FDDI-UP)
2621 - SK-5522 (SK-NET FDDI-UP DAS)
2622 - SK-5541 (SK-NET FDDI-FP)
2623 - SK-5543 (SK-NET FDDI-LP)
2624 - SK-5544 (SK-NET FDDI-LP DAS)
2625 - SK-5821 (SK-NET FDDI-UP64)
2626 - SK-5822 (SK-NET FDDI-UP64 DAS)
2627 - SK-5841 (SK-NET FDDI-FP64)
2628 - SK-5843 (SK-NET FDDI-LP64)
2629 - SK-5844 (SK-NET FDDI-LP64 DAS)
2630 - Netelligent 100 FDDI DAS Fibre SC
2631 - Netelligent 100 FDDI SAS Fibre SC
2632 - Netelligent 100 FDDI DAS UTP
2633 - Netelligent 100 FDDI SAS UTP
2634 - Netelligent 100 FDDI SAS Fibre MIC
2635
2636 Read <file:Documentation/networking/skfp.txt> for information about
2637 the driver.
2638
2639 Questions concerning this driver can be addressed to:
2640 <linux@syskonnect.de>
2641
2642 To compile this driver as a module, choose M here: the module
2643 will be called skfp. This is recommended.
2644
2645config HIPPI
2646 bool "HIPPI driver support (EXPERIMENTAL)"
cbcd2a4c 2647 depends on EXPERIMENTAL && INET && PCI
1da177e4
LT
2648 help
2649 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2650 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2651 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2652 single-mode). HIPPI networks are commonly used for clusters and to
2653 connect to super computers. If you are connected to a HIPPI network
2654 and have a HIPPI network card in your computer that you want to use
2655 under Linux, say Y here (you must also remember to enable the driver
2656 for your HIPPI card below). Most people will say N here.
2657
2658config ROADRUNNER
2659 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2660 depends on HIPPI && PCI
2661 help
2662 Say Y here if this is your PCI HIPPI network card.
2663
2664 To compile this driver as a module, choose M here: the module
2665 will be called rrunner. If unsure, say N.
2666
2667config ROADRUNNER_LARGE_RINGS
2668 bool "Use large TX/RX rings (EXPERIMENTAL)"
2669 depends on ROADRUNNER
2670 help
2671 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2672 of additional memory to allow for fastest operation, both for
2673 transmitting and receiving. This memory cannot be used by any other
2674 kernel code or by user space programs. Say Y here only if you have
2675 the memory.
2676
2677config PLIP
2678 tristate "PLIP (parallel port) support"
cbcd2a4c 2679 depends on PARPORT
1da177e4
LT
2680 ---help---
2681 PLIP (Parallel Line Internet Protocol) is used to create a
2682 reasonably fast mini network consisting of two (or, rarely, more)
2683 local machines. A PLIP link from a Linux box is a popular means to
2684 install a Linux distribution on a machine which doesn't have a
2685 CD-ROM drive (a minimal system has to be transferred with floppies
2686 first). The kernels on both machines need to have this PLIP option
2687 enabled for this to work.
2688
2689 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2690 ports (the connectors at the computers with 25 holes) are connected
2691 with "null printer" or "Turbo Laplink" cables which can transmit 4
2692 bits at a time (mode 0) or with special PLIP cables, to be used on
2693 bidirectional parallel ports only, which can transmit 8 bits at a
2694 time (mode 1); you can find the wiring of these cables in
2695 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2696 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2697 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2698 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2699 and winsock or NCSA's telnet.
2700
2701 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2702 as the NET-3-HOWTO, both available from
2703 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2704 protocol has been changed and this PLIP driver won't work together
2705 with the PLIP support in Linux versions 1.0.x. This option enlarges
2706 your kernel by about 8 KB.
2707
2708 To compile this driver as a module, choose M here and read
2709 <file:Documentation/networking/net-modules.txt>. The module will be
2710 called plip. If unsure, say Y or M, in case you buy a laptop
2711 later.
2712
2713config PPP
2714 tristate "PPP (point-to-point protocol) support"
b6e37e55 2715 select SLHC
1da177e4
LT
2716 ---help---
2717 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2718 the same purpose: sending Internet traffic over telephone (and other
2719 serial) lines. Ask your access provider if they support it, because
2720 otherwise you can't use it; most Internet access providers these
2721 days support PPP rather than SLIP.
2722
2723 To use PPP, you need an additional program called pppd as described
2724 in the PPP-HOWTO, available at
2725 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2726 the version of pppd recommended in <file:Documentation/Changes>.
2727 The PPP option enlarges your kernel by about 16 KB.
2728
2729 There are actually two versions of PPP: the traditional PPP for
2730 asynchronous lines, such as regular analog phone lines, and
2731 synchronous PPP which can be used over digital ISDN lines for
2732 example. If you want to use PPP over phone lines or other
2733 asynchronous serial lines, you need to say Y (or M) here and also to
2734 the next option, "PPP support for async serial ports". For PPP over
2735 synchronous lines, you should say Y (or M) here and to "Support
2736 synchronous PPP", below.
2737
2738 If you said Y to "Version information on all symbols" above, then
2739 you cannot compile the PPP driver into the kernel; you can then only
2740 compile it as a module. To compile this driver as a module, choose M
2741 here and read <file:Documentation/networking/net-modules.txt>.
2742 The module will be called ppp_generic.
2743
2744config PPP_MULTILINK
2745 bool "PPP multilink support (EXPERIMENTAL)"
2746 depends on PPP && EXPERIMENTAL
2747 help
2748 PPP multilink is a protocol (defined in RFC 1990) which allows you
2749 to combine several (logical or physical) lines into one logical PPP
2750 connection, so that you can utilize your full bandwidth.
2751
2752 This has to be supported at the other end as well and you need a
2753 version of the pppd daemon which understands the multilink protocol.
2754
2755 If unsure, say N.
2756
2757config PPP_FILTER
2758 bool "PPP filtering"
2759 depends on PPP
2760 help
2761 Say Y here if you want to be able to filter the packets passing over
2762 PPP interfaces. This allows you to control which packets count as
2763 activity (i.e. which packets will reset the idle timer or bring up
47c51431 2764 a demand-dialed link) and which packets are to be dropped entirely.
1da177e4
LT
2765 You need to say Y here if you wish to use the pass-filter and
2766 active-filter options to pppd.
2767
2768 If unsure, say N.
2769
2770config PPP_ASYNC
2771 tristate "PPP support for async serial ports"
2772 depends on PPP
2773 select CRC_CCITT
2774 ---help---
2775 Say Y (or M) here if you want to be able to use PPP over standard
2776 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2777 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2778 need this option.
2779
2780 To compile this driver as a module, choose M here.
2781
2782 If unsure, say Y.
2783
2784config PPP_SYNC_TTY
2785 tristate "PPP support for sync tty ports"
2786 depends on PPP
2787 help
2788 Say Y (or M) here if you want to be able to use PPP over synchronous
2789 (HDLC) tty devices, such as the SyncLink adapter. These devices
2790 are often used for high-speed leased lines like T1/E1.
2791
2792 To compile this driver as a module, choose M here.
2793
2794config PPP_DEFLATE
2795 tristate "PPP Deflate compression"
2796 depends on PPP
2797 select ZLIB_INFLATE
2798 select ZLIB_DEFLATE
2799 ---help---
2800 Support for the Deflate compression method for PPP, which uses the
2801 Deflate algorithm (the same algorithm that gzip uses) to compress
2802 each PPP packet before it is sent over the wire. The machine at the
2803 other end of the PPP link (usually your ISP) has to support the
2804 Deflate compression method as well for this to be useful. Even if
2805 they don't support it, it is safe to say Y here.
2806
2807 To compile this driver as a module, choose M here.
2808
2809config PPP_BSDCOMP
2810 tristate "PPP BSD-Compress compression"
2811 depends on PPP
2812 ---help---
2813 Support for the BSD-Compress compression method for PPP, which uses
2814 the LZW compression method to compress each PPP packet before it is
2815 sent over the wire. The machine at the other end of the PPP link
2816 (usually your ISP) has to support the BSD-Compress compression
2817 method as well for this to be useful. Even if they don't support it,
2818 it is safe to say Y here.
2819
2820 The PPP Deflate compression method ("PPP Deflate compression",
2821 above) is preferable to BSD-Compress, because it compresses better
2822 and is patent-free.
2823
2824 Note that the BSD compression code will always be compiled as a
2825 module; it is called bsd_comp and will show up in the directory
2826 modules once you have said "make modules". If unsure, say N.
2827
b3f9b92a
MD
2828config PPP_MPPE
2829 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
2830 depends on PPP && EXPERIMENTAL
2831 select CRYPTO
2832 select CRYPTO_SHA1
2833 select CRYPTO_ARC4
bcbaecbb 2834 select CRYPTO_ECB
b3f9b92a
MD
2835 ---help---
2836 Support for the MPPE Encryption protocol, as employed by the
2837 Microsoft Point-to-Point Tunneling Protocol.
2838
2839 See http://pptpclient.sourceforge.net/ for information on
2840 configuring PPTP clients and servers to utilize this method.
2841
1da177e4
LT
2842config PPPOE
2843 tristate "PPP over Ethernet (EXPERIMENTAL)"
2844 depends on EXPERIMENTAL && PPP
2845 help
2846 Support for PPP over Ethernet.
2847
2848 This driver requires the latest version of pppd from the CVS
2849 repository at cvs.samba.org. Alternatively, see the
2850 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
2851 which contains instruction on how to use this driver (under
2852 the heading "Kernel mode PPPoE").
2853
2854config PPPOATM
2855 tristate "PPP over ATM"
2856 depends on ATM && PPP
2857 help
2858 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2859 This implementation does not yet comply with section 8 of RFC2364,
2860 which can lead to bad results if the ATM peer loses state and
2861 changes its encapsulation unilaterally.
2862
2863config SLIP
2864 tristate "SLIP (serial line) support"
1da177e4
LT
2865 ---help---
2866 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2867 connect to your Internet service provider or to connect to some
2868 other local Unix box or if you want to configure your Linux box as a
2869 Slip/CSlip server for other people to dial in. SLIP (Serial Line
2870 Internet Protocol) is a protocol used to send Internet traffic over
2871 serial connections such as telephone lines or null modem cables;
2872 nowadays, the protocol PPP is more commonly used for this same
2873 purpose.
2874
2875 Normally, your access provider has to support SLIP in order for you
2876 to be able to use it, but there is now a SLIP emulator called SLiRP
2877 around (available from
2878 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2879 allows you to use SLIP over a regular dial up shell connection. If
2880 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2881 NET-3-HOWTO, available from
2882 <http://www.tldp.org/docs.html#howto>, explains how to
2883 configure SLIP. Note that you don't need this option if you just
2884 want to run term (term is a program which gives you almost full
2885 Internet connectivity if you have a regular dial up shell account on
2886 some Internet connected Unix computer. Read
2887 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2888 support will enlarge your kernel by about 4 KB. If unsure, say N.
2889
2890 To compile this driver as a module, choose M here and read
2891 <file:Documentation/networking/net-modules.txt>. The module will be
2892 called slip.
2893
2894config SLIP_COMPRESSED
2895 bool "CSLIP compressed headers"
2896 depends on SLIP
b6e37e55 2897 select SLHC
1da177e4
LT
2898 ---help---
2899 This protocol is faster than SLIP because it uses compression on the
2900 TCP/IP headers (not on the data itself), but it has to be supported
2901 on both ends. Ask your access provider if you are not sure and
2902 answer Y, just in case. You will still be able to use plain SLIP. If
2903 you plan to use SLiRP, the SLIP emulator (available from
2904 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2905 allows you to use SLIP over a regular dial up shell connection, you
2906 definitely want to say Y here. The NET-3-HOWTO, available from
2907 <http://www.tldp.org/docs.html#howto>, explains how to configure
2908 CSLIP. This won't enlarge your kernel.
2909
b6e37e55
RB
2910config SLHC
2911 tristate
2912 help
2913 This option enables Van Jacobsen serial line header compression
2914 routines.
2915
1da177e4
LT
2916config SLIP_SMART
2917 bool "Keepalive and linefill"
2918 depends on SLIP
2919 help
2920 Adds additional capabilities to the SLIP driver to support the
2921 RELCOM line fill and keepalive monitoring. Ideal on poor quality
2922 analogue lines.
2923
2924config SLIP_MODE_SLIP6
2925 bool "Six bit SLIP encapsulation"
2926 depends on SLIP
2927 help
2928 Just occasionally you may need to run IP over hostile serial
2929 networks that don't pass all control characters or are only seven
2930 bit. Saying Y here adds an extra mode you can use with SLIP:
2931 "slip6". In this mode, SLIP will only send normal ASCII symbols over
2932 the serial device. Naturally, this has to be supported at the other
2933 end of the link as well. It's good enough, for example, to run IP
2934 over the async ports of a Camtec JNT Pad. If unsure, say N.
2935
2936config NET_FC
2937 bool "Fibre Channel driver support"
cbcd2a4c 2938 depends on SCSI && PCI
1da177e4
LT
2939 help
2940 Fibre Channel is a high speed serial protocol mainly used to connect
2941 large storage devices to the computer; it is compatible with and
2942 intended to replace SCSI.
2943
2944 If you intend to use Fibre Channel, you need to have a Fibre channel
2945 adaptor card in your computer; say Y here and to the driver for your
2946 adaptor below. You also should have said Y to "SCSI support" and
2947 "SCSI generic support".
2948
2949config SHAPER
3b6a792f 2950 tristate "Traffic Shaper (OBSOLETE)"
cbcd2a4c 2951 depends on EXPERIMENTAL
1da177e4
LT
2952 ---help---
2953 The traffic shaper is a virtual network device that allows you to
2954 limit the rate of outgoing data flow over some other network device.
2955 The traffic that you want to slow down can then be routed through
2956 these virtual devices. See
2957 <file:Documentation/networking/shaper.txt> for more information.
2958
3b6a792f
JS
2959 An alternative to this traffic shaper are traffic schedulers which
2960 you'll get if you say Y to "QoS and/or fair queuing" in
2961 "Networking options".
1da177e4 2962
1da177e4
LT
2963 To compile this driver as a module, choose M here: the module
2964 will be called shaper. If unsure, say N.
2965
2966config NETCONSOLE
2967 tristate "Network console logging support (EXPERIMENTAL)"
5e43db77 2968 depends on EXPERIMENTAL
1da177e4
LT
2969 ---help---
2970 If you want to log kernel messages over the network, enable this.
2971 See <file:Documentation/networking/netconsole.txt> for details.
2972
54208991
RD
2973config NETPOLL
2974 def_bool NETCONSOLE
2975
54208991
RD
2976config NETPOLL_TRAP
2977 bool "Netpoll traffic trapping"
2978 default n
2979 depends on NETPOLL
2980
2981config NET_POLL_CONTROLLER
2982 def_bool NETPOLL
2983
d1c0a65f 2984endif # NETDEVICES