blob: cfa97f3fbebd20cfdc32aff930e393c072a9f4c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2#
3# Network device configuration
4#
5
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07006menuconfig NETDEVICES
Paolo 'Blaisorblade' Giarrussoce2d2ae2006-01-18 17:42:59 -08007 default y if UML
Jan Engelhardte0009822007-07-21 19:11:35 -07008 depends on NET
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 bool "Network device support"
10 ---help---
11 You can say N here if you don't intend to connect your Linux box to
12 any other computer at all.
13
14 You'll have to say Y if your computer contains a network card that
15 you want to use under Linux. If you are going to run SLIP or PPP over
16 telephone line or null modem cable you need say Y here. Connecting
17 two machines with parallel ports using PLIP needs this, as well as
18 AX.25/KISS for sending Internet traffic over amateur radio links.
19
20 See also "The Linux Network Administrator's Guide" by Olaf Kirch and
21 Terry Dawson. Available at <http://www.tldp.org/guides.html>.
22
23 If unsure, say Y.
24
Randy Dunlap1618cb02006-09-25 23:11:21 -070025# All the following symbols are dependent on NETDEVICES - do not repeat
26# that for each of the symbols.
27if NETDEVICES
Randy Dunlapcbcd2a42005-07-27 13:04:35 -070028
Peter P Waskiewicz Jrf25f4e42007-07-06 13:36:20 -070029config NETDEVICES_MULTIQUEUE
30 bool "Netdevice multiple hardware queue support"
31 ---help---
32 Say Y here if you want to allow the network stack to use multiple
33 hardware TX queues on an ethernet device.
34
35 Most people will say N here.
36
Jamal Hadi Salim253af422006-01-08 22:34:25 -080037config IFB
38 tristate "Intermediate Functional Block support"
39 depends on NET_CLS_ACT
40 ---help---
Matt LaPlante3cb2fcc2006-11-30 05:22:59 +010041 This is an intermediate driver that allows sharing of
Jamal Hadi Salim253af422006-01-08 22:34:25 -080042 resources.
43 To compile this driver as a module, choose M here: the module
44 will be called ifb. If you want to use more than one ifb
45 device at a time, you need to compile this driver as a module.
46 Instead of 'ifb', the devices will then be called 'ifb0',
47 'ifb1' etc.
48 Look at the iproute2 documentation directory for usage etc
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050config DUMMY
51 tristate "Dummy net driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 ---help---
53 This is essentially a bit-bucket device (i.e. traffic you send to
54 this device is consigned into oblivion) with a configurable IP
55 address. It is most commonly used in order to make your currently
56 inactive SLIP address seem like a real address for local programs.
57 If you use SLIP or PPP, you might want to say Y here. Since this
58 thing often comes in handy, the default is Y. It won't enlarge your
59 kernel either. What a deal. Read about it in the Network
60 Administrator's Guide, available from
61 <http://www.tldp.org/docs.html#guide>.
62
63 To compile this driver as a module, choose M here: the module
64 will be called dummy. If you want to use more than one dummy
65 device at a time, you need to compile this driver as a module.
66 Instead of 'dummy', the devices will then be called 'dummy0',
67 'dummy1' etc.
68
69config BONDING
70 tristate "Bonding driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 depends on INET
72 ---help---
73 Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
74 Channels together. This is called 'Etherchannel' by Cisco,
75 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
76
77 The driver supports multiple bonding modes to allow for both high
Jon Mason47c51432006-02-12 11:53:04 -060078 performance and high availability operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 Refer to <file:Documentation/networking/bonding.txt> for more
81 information.
82
83 To compile this driver as a module, choose M here: the module
84 will be called bonding.
85
Patrick McHardyb863ceb2007-07-14 18:55:06 -070086config MACVLAN
87 tristate "MAC-VLAN support (EXPERIMENTAL)"
88 depends on EXPERIMENTAL
89 ---help---
90 This allows one to create virtual interfaces that map packets to
91 or from specific MAC addresses to a particular interface.
92
93 To compile this driver as a module, choose M here: the module
94 will be called macvlan.
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096config EQUALIZER
97 tristate "EQL (serial line load balancing) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 ---help---
99 If you have two serial connections to some other computer (this
100 usually requires two modems and two telephone lines) and you use
101 SLIP (the protocol for sending Internet traffic over telephone
102 lines) or PPP (a better SLIP) on them, you can make them behave like
103 one double speed connection using this driver. Naturally, this has
104 to be supported at the other end as well, either with a similar EQL
105 Linux driver or with a Livingston Portmaster 2e.
106
107 Say Y if you want this and read
108 <file:Documentation/networking/eql.txt>. You may also want to read
109 section 6.2 of the NET-3-HOWTO, available from
110 <http://www.tldp.org/docs.html#howto>.
111
112 To compile this driver as a module, choose M here: the module
113 will be called eql. If unsure, say N.
114
115config TUN
116 tristate "Universal TUN/TAP device driver support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 select CRC32
118 ---help---
119 TUN/TAP provides packet reception and transmission for user space
120 programs. It can be viewed as a simple Point-to-Point or Ethernet
121 device, which instead of receiving packets from a physical media,
122 receives them from user space program and instead of sending packets
123 via physical media writes them to the user space program.
124
125 When a program opens /dev/net/tun, driver creates and registers
126 corresponding net device tunX or tapX. After a program closed above
127 devices, driver will automatically delete tunXX or tapXX device and
128 all routes corresponding to it.
129
130 Please read <file:Documentation/networking/tuntap.txt> for more
131 information.
132
133 To compile this driver as a module, choose M here: the module
134 will be called tun.
135
136 If you don't know what to use this for, you don't need it.
137
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700138config VETH
139 tristate "Virtual ethernet device"
140 ---help---
141 The device is an ethernet tunnel. Devices are created in pairs. When
142 one end receives the packet it appears on its pair and vice versa.
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144config NET_SB1000
145 tristate "General Instruments Surfboard 1000"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -0700146 depends on PNP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 ---help---
148 This is a driver for the General Instrument (also known as
149 NextLevel) SURFboard 1000 internal
150 cable modem. This is an ISA card which is used by a number of cable
151 TV companies to provide cable modem access. It's a one-way
152 downstream-only cable modem, meaning that your upstream net link is
153 provided by your regular phone modem.
154
155 At present this driver only compiles as a module, so say M here if
156 you have this card. The module will be called sb1000. Then read
157 <file:Documentation/networking/README.sb1000> for information on how
158 to use this module, as it needs special ppp scripts for establishing
159 a connection. Further documentation and the necessary scripts can be
160 found at:
161
162 <http://www.jacksonville.net/~fventuri/>
163 <http://home.adelphia.net/~siglercm/sb1000.html>
164 <http://linuxpower.cx/~cable/>
165
166 If you don't have this card, of course say N.
167
Francois Romieu1202d6f2007-09-17 17:13:55 -0700168config IP1000
169 tristate "IP1000 Gigabit Ethernet support"
170 depends on PCI && EXPERIMENTAL
171 ---help---
172 This driver supports IP1000 gigabit Ethernet cards.
173
174 To compile this driver as a module, choose M here: the module
175 will be called ipg. This is recommended.
176
Adrian Bunkf65fd8f2006-01-05 22:45:41 -0800177source "drivers/net/arcnet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Andy Fleming00db8182005-07-30 19:31:23 -0400179source "drivers/net/phy/Kconfig"
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#
182# Ethernet
183#
184
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700185menuconfig NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 bool "Ethernet (10 or 100Mbit)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700187 depends on !UML
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 ---help---
189 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
190 type of Local Area Network (LAN) in universities and companies.
191
192 Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
193 coaxial cable, linking computers in a chain), 10BASE-T or twisted
194 pair (10 Mbps over twisted pair cable, linking computers to central
195 hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
196 100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
197 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
198 cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
199 [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
200 Ethernet (1 Gbps over optical fiber or short copper links).
201
202 If your Linux machine will be connected to an Ethernet and you have
203 an Ethernet network interface card (NIC) installed in your computer,
204 say Y here and read the Ethernet-HOWTO, available from
205 <http://www.tldp.org/docs.html#howto>. You will then also have
206 to say Y to the driver for your particular NIC.
207
208 Note that the answer to this question won't directly affect the
209 kernel: saying N will just cause the configurator to skip all
210 the questions about Ethernet network cards. If unsure, say N.
211
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700212if NET_ETHERNET
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214config MII
215 tristate "Generic Media Independent Interface device support"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 help
217 Most ethernet controllers have MII transceiver either as an external
218 or internal device. It is safe to say Y or M here even if your
219 ethernet card lack MII.
220
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100221config MACB
222 tristate "Atmel MACB support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700223 depends on AVR32 || ARCH_AT91SAM9260 || ARCH_AT91SAM9263
frederic RODO6c36a702007-07-12 19:07:24 +0200224 select PHYLIB
Haavard Skinnemoen89e57852006-11-09 14:51:17 +0100225 help
226 The Atmel MACB ethernet interface is found on many AT32 and AT91
227 parts. Say Y to include support for the MACB chip.
228
229 To compile this driver as a module, choose M here: the module
230 will be called macb.
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232source "drivers/net/arm/Kconfig"
233
Ben Dooks825a2ff2007-07-03 16:53:09 +0100234config AX88796
235 tristate "ASIX AX88796 NE2000 clone support"
Jeff Garzikdef47c52007-07-10 14:06:48 -0400236 depends on ARM || MIPS
Ben Dooks825a2ff2007-07-03 16:53:09 +0100237 select CRC32
238 select MII
239 help
240 AX88796 driver, using platform bus to provide
241 chip detection and resources
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243config MACE
244 tristate "MACE (Power Mac ethernet) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700245 depends on PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 select CRC32
247 help
248 Power Macintoshes and clones with Ethernet built-in on the
249 motherboard will usually use a MACE (Medium Access Control for
250 Ethernet) interface. Say Y to include support for the MACE chip.
251
252 To compile this driver as a module, choose M here: the module
253 will be called mace.
254
255config MACE_AAUI_PORT
256 bool "Use AAUI port instead of TP by default"
257 depends on MACE
258 help
259 Some Apple machines (notably the Apple Network Server) which use the
260 MACE ethernet chip have an Apple AUI port (small 15-pin connector),
261 instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
262 Y here if you have such a machine. If unsure, say N.
263 The driver will default to AAUI on ANS anyway, and if you use it as
264 a module, you can provide the port_aaui=0|1 to force the driver.
265
266config BMAC
267 tristate "BMAC (G3 ethernet) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700268 depends on PPC_PMAC && PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 select CRC32
270 help
271 Say Y for support of BMAC Ethernet interfaces. These are used on G3
272 computers.
273
274 To compile this driver as a module, choose M here: the module
275 will be called bmac.
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277config ARIADNE
278 tristate "Ariadne support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700279 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 help
281 If you have a Village Tronic Ariadne Ethernet adapter, say Y.
282 Otherwise, say N.
283
284 To compile this driver as a module, choose M here: the module
285 will be called ariadne.
286
287config A2065
288 tristate "A2065 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700289 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 select CRC32
291 help
292 If you have a Commodore A2065 Ethernet adapter, say Y. Otherwise,
293 say N.
294
295 To compile this driver as a module, choose M here: the module
296 will be called a2065.
297
298config HYDRA
299 tristate "Hydra support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700300 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 select CRC32
302 help
303 If you have a Hydra Ethernet adapter, say Y. Otherwise, say N.
304
305 To compile this driver as a module, choose M here: the module
306 will be called hydra.
307
308config ZORRO8390
309 tristate "Zorro NS8390-based Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700310 depends on ZORRO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 select CRC32
312 help
313 This driver is for Zorro Ethernet cards using an NS8390-compatible
314 chipset, like the Village Tronic Ariadne II and the Individual
315 Computers X-Surf Ethernet cards. If you have such a card, say Y.
316 Otherwise, say N.
317
318 To compile this driver as a module, choose M here: the module
319 will be called zorro8390.
320
321config APNE
322 tristate "PCMCIA NE2000 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700323 depends on AMIGA_PCMCIA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 select CRC32
325 help
326 If you have a PCMCIA NE2000 compatible adapter, say Y. Otherwise,
327 say N.
328
329 To compile this driver as a module, choose M here: the module
330 will be called apne.
331
332config APOLLO_ELPLUS
333 tristate "Apollo 3c505 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700334 depends on APOLLO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 help
336 Say Y or M here if your Apollo has a 3Com 3c505 ISA Ethernet card.
337 If you don't have one made for Apollos, you can use one from a PC,
338 except that your Apollo won't be able to boot from it (because the
339 code in the ROM will be for a PC).
340
341config MAC8390
342 bool "Macintosh NS 8390 based ethernet cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700343 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 select CRC32
345 help
346 If you want to include a driver to support Nubus or LC-PDS
347 Ethernet cards using an NS8390 chipset or its equivalent, say Y
348 and read the Ethernet-HOWTO, available from
349 <http://www.tldp.org/docs.html#howto>.
350
351config MAC89x0
352 tristate "Macintosh CS89x0 based ethernet cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700353 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 ---help---
355 Support for CS89x0 chipset based Ethernet cards. If you have a
356 Nubus or LC-PDS network (Ethernet) card of this type, say Y and
357 read the Ethernet-HOWTO, available from
358 <http://www.tldp.org/docs.html#howto>.
359
360 To compile this driver as a module, choose M here and read
361 <file:Documentation/networking/net-modules.txt>. This module will
362 be called mac89x0.
363
364config MACSONIC
365 tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700366 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ---help---
368 Support for NatSemi SONIC based Ethernet devices. This includes
369 the onboard Ethernet in many Quadras as well as some LC-PDS,
370 a few Nubus and all known Comm Slot Ethernet cards. If you have
371 one of these say Y and read the Ethernet-HOWTO, available from
372 <http://www.tldp.org/docs.html#howto>.
373
374 To compile this driver as a module, choose M here and read
375 <file:Documentation/networking/net-modules.txt>. This module will
376 be called macsonic.
377
378config MACMACE
Finn Thain8b6aaab2007-05-01 22:33:01 +0200379 bool "Macintosh (AV) onboard MACE ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700380 depends on MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 select CRC32
382 help
383 Support for the onboard AMD 79C940 MACE Ethernet controller used in
384 the 660AV and 840AV Macintosh. If you have one of these Macintoshes
385 say Y and read the Ethernet-HOWTO, available from
386 <http://www.tldp.org/docs.html#howto>.
387
388config MVME147_NET
389 tristate "MVME147 (Lance) Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700390 depends on MVME147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 select CRC32
392 help
393 Support for the on-board Ethernet interface on the Motorola MVME147
394 single-board computer. Say Y here to include the
395 driver for this chip in your kernel.
396 To compile this driver as a module, choose M here.
397
398config MVME16x_NET
399 tristate "MVME16x Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700400 depends on MVME16x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 help
402 This is the driver for the Ethernet interface on the Motorola
403 MVME162, 166, 167, 172 and 177 boards. Say Y here to include the
404 driver for this chip in your kernel.
405 To compile this driver as a module, choose M here.
406
407config BVME6000_NET
408 tristate "BVME6000 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700409 depends on BVME6000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 help
411 This is the driver for the Ethernet interface on BVME4000 and
412 BVME6000 VME boards. Say Y here to include the driver for this chip
413 in your kernel.
414 To compile this driver as a module, choose M here.
415
416config ATARILANCE
417 tristate "Atari Lance support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700418 depends on ATARI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 help
420 Say Y to include support for several Atari Ethernet adapters based
421 on the AMD Lance chipset: RieblCard (with or without battery), or
422 PAMCard VME (also the version by Rhotron, with different addresses).
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424config SUN3LANCE
425 tristate "Sun3/Sun3x on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700426 depends on SUN3 || SUN3X
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 help
428 Most Sun3 and Sun3x motherboards (including the 3/50, 3/60 and 3/80)
429 featured an AMD Lance 10Mbit Ethernet controller on board; say Y
430 here to compile in the Linux driver for this and enable Ethernet.
431 General Linux information on the Sun 3 and 3x series (now
432 discontinued) is at
433 <http://www.angelfire.com/ca2/tech68k/sun3.html>.
434
435 If you're not building a kernel for a Sun 3, say N.
436
437config SUN3_82586
Al Viro9a482202005-08-25 06:24:56 +0100438 bool "Sun3 on-board Intel 82586 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700439 depends on SUN3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 help
441 This driver enables support for the on-board Intel 82586 based
442 Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
443 that this driver does not support 82586-based adapters on additional
444 VME boards.
445
446config HPLANCE
447 bool "HP on-board LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700448 depends on DIO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 select CRC32
450 help
451 If you want to use the builtin "LANCE" Ethernet controller on an
452 HP300 machine, say Y here.
453
454config LASI_82596
455 tristate "Lasi ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700456 depends on GSC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 help
Matthew Wilcox6de187e2006-11-18 10:05:16 -0700458 Say Y here to support the builtin Intel 82596 ethernet controller
459 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Thomas Bogendoerferf2ec8032007-06-28 00:49:06 +0200461config SNI_82596
462 tristate "SNI RM ethernet"
463 depends on NET_ETHERNET && SNI_RM
464 help
465 Say Y here to support the on-board Intel 82596 ethernet controller
466 built into SNI RM machines.
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468config MIPS_JAZZ_SONIC
469 tristate "MIPS JAZZ onboard SONIC Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700470 depends on MACH_JAZZ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 help
472 This is the driver for the onboard card of MIPS Magnum 4000,
473 Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475config MIPS_AU1X00_ENET
476 bool "MIPS AU1000 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700477 depends on SOC_AU1X00
Herbert Valerio Riedel0638dec2006-06-01 09:41:04 +0200478 select PHYLIB
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 select CRC32
480 help
481 If you have an Alchemy Semi AU1X00 based system
482 say Y. Otherwise, say N.
483
484config NET_SB1250_MAC
485 tristate "SB1250 Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700486 depends on SIBYTE_SB1xxx_SOC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488config SGI_IOC3_ETH
489 bool "SGI IOC3 Ethernet"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700490 depends on PCI && SGI_IP27
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 select CRC32
492 select MII
493 help
494 If you have a network (Ethernet) card of this type, say Y and read
495 the Ethernet-HOWTO, available from
496 <http://www.tldp.org/docs.html#howto>.
497
Ralf Baechledcbf8472005-10-10 14:51:27 +0100498config MIPS_SIM_NET
Ralf Baechle1e2b9802007-03-18 23:21:22 +0000499 tristate "MIPS simulator Network device"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700500 depends on MIPS_SIM
Ralf Baechledcbf8472005-10-10 14:51:27 +0100501 help
502 The MIPSNET device is a simple Ethernet network device which is
503 emulated by the MIPS Simulator.
504 If you are not using a MIPSsim or are unsure, say N.
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506config SGI_O2MACE_ETH
507 tristate "SGI O2 MACE Fast Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700508 depends on SGI_IP32=y
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510config STNIC
511 tristate "National DP83902AV support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700512 depends on SUPERH
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 select CRC32
514 help
515 Support for cards based on the National Semiconductor DP83902AV
516 ST-NIC Serial Network Interface Controller for Twisted Pair. This
517 is a 10Mbit/sec Ethernet controller. Product overview and specs at
518 <http://www.national.com/pf/DP/DP83902A.html>.
519
520 If unsure, say N.
521
522config SUNLANCE
523 tristate "Sun LANCE support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700524 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 select CRC32
526 help
527 This driver supports the "le" interface present on all 32-bit Sparc
528 systems, on some older Ultra systems and as an Sbus option. These
529 cards are based on the AMD Lance chipset, which is better known
530 via the NE2100 cards.
531
532 To compile this driver as a module, choose M here: the module
533 will be called sunlance.
534
535config HAPPYMEAL
536 tristate "Sun Happy Meal 10/100baseT support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700537 depends on SBUS || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 select CRC32
539 help
540 This driver supports the "hme" interface present on most Ultra
541 systems and as an option on older Sbus systems. This driver supports
542 both PCI and Sbus devices. This driver also supports the "qfe" quad
543 100baseT device available in both PCI and Sbus configurations.
544
545 To compile this driver as a module, choose M here: the module
546 will be called sunhme.
547
548config SUNBMAC
549 tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700550 depends on SBUS && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 select CRC32
552 help
553 This driver supports the "be" interface available as an Sbus option.
554 This is Sun's older 100baseT Ethernet device.
555
556 To compile this driver as a module, choose M here: the module
557 will be called sunbmac.
558
559config SUNQE
560 tristate "Sun QuadEthernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700561 depends on SBUS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 select CRC32
563 help
564 This driver supports the "qe" 10baseT Ethernet device, available as
565 an Sbus option. Note that this is not the same as Quad FastEthernet
566 "qfe" which is supported by the Happy Meal driver instead.
567
568 To compile this driver as a module, choose M here: the module
569 will be called sunqe.
570
571config SUNGEM
572 tristate "Sun GEM support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700573 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 select CRC32
575 help
576 Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
577 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
578
David S. Miller1f26dac2005-09-27 15:24:13 -0700579config CASSINI
580 tristate "Sun Cassini support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700581 depends on PCI
David S. Miller1f26dac2005-09-27 15:24:13 -0700582 select CRC32
583 help
584 Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
585 <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
586
David S. Miller4c521e42007-07-09 22:23:51 -0700587config SUNVNET
588 tristate "Sun Virtual Network support"
589 depends on SUN_LDOMS
590 help
591 Support for virtual network devices under Sun Logical Domains.
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593config NET_VENDOR_3COM
594 bool "3COM cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700595 depends on ISA || EISA || MCA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 help
597 If you have a network (Ethernet) card belonging to this class, say Y
598 and read the Ethernet-HOWTO, available from
599 <http://www.tldp.org/docs.html#howto>.
600
601 Note that the answer to this question doesn't directly affect the
602 kernel: saying N will just cause the configurator to skip all
603 the questions about 3COM cards. If you say Y, you will be asked for
604 your specific card in the following questions.
605
606config EL1
607 tristate "3c501 \"EtherLink\" support"
608 depends on NET_VENDOR_3COM && ISA
609 ---help---
610 If you have a network (Ethernet) card of this type, say Y and read
611 the Ethernet-HOWTO, available from
612 <http://www.tldp.org/docs.html#howto>. Also, consider buying a
613 new card, since the 3c501 is slow, broken, and obsolete: you will
614 have problems. Some people suggest to ping ("man ping") a nearby
615 machine every minute ("man cron") when using this card.
616
617 To compile this driver as a module, choose M here and read
618 <file:Documentation/networking/net-modules.txt>. The module
619 will be called 3c501.
620
621config EL2
622 tristate "3c503 \"EtherLink II\" support"
623 depends on NET_VENDOR_3COM && ISA
624 select CRC32
625 help
626 If you have a network (Ethernet) card of this type, say Y and read
627 the Ethernet-HOWTO, available from
628 <http://www.tldp.org/docs.html#howto>.
629
630 To compile this driver as a module, choose M here and read
631 <file:Documentation/networking/net-modules.txt>. The module
632 will be called 3c503.
633
634config ELPLUS
635 tristate "3c505 \"EtherLink Plus\" support"
Al Viroa5532602005-05-04 05:39:42 +0100636 depends on NET_VENDOR_3COM && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 ---help---
638 Information about this network (Ethernet) card can be found in
639 <file:Documentation/networking/3c505.txt>. If you have a card of
640 this type, say Y and read the Ethernet-HOWTO, available from
641 <http://www.tldp.org/docs.html#howto>.
642
643 To compile this driver as a module, choose M here and read
644 <file:Documentation/networking/net-modules.txt>. The module
645 will be called 3c505.
646
647config EL16
648 tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
649 depends on NET_VENDOR_3COM && ISA && EXPERIMENTAL
650 help
651 If you have a network (Ethernet) card of this type, say Y and read
652 the Ethernet-HOWTO, available from
653 <http://www.tldp.org/docs.html#howto>.
654
655 To compile this driver as a module, choose M here and read
656 <file:Documentation/networking/net-modules.txt>. The module
657 will be called 3c507.
658
659config EL3
660 tristate "3c509/3c529 (MCA)/3c579 \"EtherLink III\" support"
661 depends on NET_VENDOR_3COM && (ISA || EISA || MCA)
662 ---help---
663 If you have a network (Ethernet) card belonging to the 3Com
664 EtherLinkIII series, say Y and read the Ethernet-HOWTO, available
665 from <http://www.tldp.org/docs.html#howto>.
666
667 If your card is not working you may need to use the DOS
668 setup disk to disable Plug & Play mode, and to select the default
669 media type.
670
671 To compile this driver as a module, choose M here and read
672 <file:Documentation/networking/net-modules.txt>. The module
673 will be called 3c509.
674
675config 3C515
676 tristate "3c515 ISA \"Fast EtherLink\""
Al Viroa5532602005-05-04 05:39:42 +0100677 depends on NET_VENDOR_3COM && (ISA || EISA) && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 help
679 If you have a 3Com ISA EtherLink XL "Corkscrew" 3c515 Fast Ethernet
680 network card, say Y and read the Ethernet-HOWTO, available from
681 <http://www.tldp.org/docs.html#howto>.
682
683 To compile this driver as a module, choose M here and read
684 <file:Documentation/networking/net-modules.txt>. The module
685 will be called 3c515.
686
687config ELMC
688 tristate "3c523 \"EtherLink/MC\" support"
689 depends on NET_VENDOR_3COM && MCA_LEGACY
690 help
691 If you have a network (Ethernet) card of this type, say Y and read
692 the Ethernet-HOWTO, available from
693 <http://www.tldp.org/docs.html#howto>.
694
695 To compile this driver as a module, choose M here and read
696 <file:Documentation/networking/net-modules.txt>. The module
697 will be called 3c523.
698
699config ELMC_II
700 tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
701 depends on NET_VENDOR_3COM && MCA && MCA_LEGACY
702 help
703 If you have a network (Ethernet) card of this type, say Y and read
704 the Ethernet-HOWTO, available from
705 <http://www.tldp.org/docs.html#howto>.
706
707 To compile this driver as a module, choose M here and read
708 <file:Documentation/networking/net-modules.txt>. The module
709 will be called 3c527.
710
711config VORTEX
712 tristate "3c590/3c900 series (592/595/597) \"Vortex/Boomerang\" support"
713 depends on NET_VENDOR_3COM && (PCI || EISA)
714 select MII
715 ---help---
Jon Mason47c51432006-02-12 11:53:04 -0600716 This option enables driver support for a large number of 10Mbps and
717 10/100Mbps EISA, PCI and PCMCIA 3Com network cards:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 "Vortex" (Fast EtherLink 3c590/3c592/3c595/3c597) EISA and PCI
720 "Boomerang" (EtherLink XL 3c900 or 3c905) PCI
721 "Cyclone" (3c540/3c900/3c905/3c980/3c575/3c656) PCI and Cardbus
722 "Tornado" (3c905) PCI
723 "Hurricane" (3c555/3cSOHO) PCI
724
725 If you have such a card, say Y and read the Ethernet-HOWTO,
726 available from <http://www.tldp.org/docs.html#howto>. More
727 specific information is in
728 <file:Documentation/networking/vortex.txt> and in the comments at
729 the beginning of <file:drivers/net/3c59x.c>.
730
731 To compile this support as a module, choose M here and read
732 <file:Documentation/networking/net-modules.txt>.
733
734config TYPHOON
735 tristate "3cr990 series \"Typhoon\" support"
736 depends on NET_VENDOR_3COM && PCI
737 select CRC32
738 ---help---
739 This option enables driver support for the 3cr990 series of cards:
740
741 3C990-TX, 3CR990-TX-95, 3CR990-TX-97, 3CR990-FX-95, 3CR990-FX-97,
742 3CR990SVR, 3CR990SVR95, 3CR990SVR97, 3CR990-FX-95 Server,
743 3CR990-FX-97 Server, 3C990B-TX-M, 3C990BSVR
744
745 If you have a network (Ethernet) card of this type, say Y and read
746 the Ethernet-HOWTO, available from
747 <http://www.tldp.org/docs.html#howto>.
748
749 To compile this driver as a module, choose M here and read
750 <file:Documentation/networking/net-modules.txt>. The module
751 will be called typhoon.
752
753config LANCE
754 tristate "AMD LANCE and PCnet (AT1500 and NE2100) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700755 depends on ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 help
757 If you have a network (Ethernet) card of this type, say Y and read
758 the Ethernet-HOWTO, available from
759 <http://www.tldp.org/docs.html#howto>. Some LinkSys cards are
760 of this type.
761
762 To compile this driver as a module, choose M here: the module
763 will be called lance. This is recommended.
764
765config NET_VENDOR_SMC
766 bool "Western Digital/SMC cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700767 depends on ISA || MCA || EISA || MAC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 help
769 If you have a network (Ethernet) card belonging to this class, say Y
770 and read the Ethernet-HOWTO, available from
771 <http://www.tldp.org/docs.html#howto>.
772
773 Note that the answer to this question doesn't directly affect the
774 kernel: saying N will just cause the configurator to skip all
775 the questions about Western Digital cards. If you say Y, you will be
776 asked for your specific card in the following questions.
777
778config WD80x3
779 tristate "WD80*3 support"
780 depends on NET_VENDOR_SMC && ISA
781 select CRC32
782 help
783 If you have a network (Ethernet) card of this type, say Y and read
784 the Ethernet-HOWTO, available from
785 <http://www.tldp.org/docs.html#howto>.
786
787 To compile this driver as a module, choose M here and read
788 <file:Documentation/networking/net-modules.txt>. The module
789 will be called wd.
790
791config ULTRAMCA
792 tristate "SMC Ultra MCA support"
793 depends on NET_VENDOR_SMC && MCA
794 select CRC32
795 help
796 If you have a network (Ethernet) card of this type and are running
797 an MCA based system (PS/2), say Y and read the Ethernet-HOWTO,
798 available from <http://www.tldp.org/docs.html#howto>.
799
800 To compile this driver as a module, choose M here and read
801 <file:Documentation/networking/net-modules.txt>. The module
802 will be called smc-mca.
803
804config ULTRA
805 tristate "SMC Ultra support"
806 depends on NET_VENDOR_SMC && ISA
807 select CRC32
808 ---help---
809 If you have a network (Ethernet) card of this type, say Y and read
810 the Ethernet-HOWTO, available from
811 <http://www.tldp.org/docs.html#howto>.
812
813 Important: There have been many reports that, with some motherboards
814 mixing an SMC Ultra and an Adaptec AHA154x SCSI card (or compatible,
815 such as some BusLogic models) causes corruption problems with many
816 operating systems. The Linux smc-ultra driver has a work-around for
817 this but keep it in mind if you have such a SCSI card and have
818 problems.
819
820 To compile this driver as a module, choose M here and read
821 <file:Documentation/networking/net-modules.txt>. The module
822 will be called smc-ultra.
823
824config ULTRA32
825 tristate "SMC Ultra32 EISA support"
826 depends on NET_VENDOR_SMC && EISA
827 select CRC32
828 help
829 If you have a network (Ethernet) card of this type, say Y and read
830 the Ethernet-HOWTO, available from
831 <http://www.tldp.org/docs.html#howto>.
832
833 To compile this driver as a module, choose M here and read
834 <file:Documentation/networking/net-modules.txt>. The module
835 will be called smc-ultra32.
836
Bryan Wue190d6b2007-07-17 14:43:44 +0800837config BFIN_MAC
838 tristate "Blackfin 536/537 on-chip mac support"
839 depends on NET_ETHERNET && (BF537 || BF536) && (!BF537_PORT_H)
840 select CRC32
Bryan Wueeb70af2007-09-19 23:37:41 +0800841 select MII
842 select PHYLIB
Bryan Wue190d6b2007-07-17 14:43:44 +0800843 select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE
844 help
845 This is the driver for blackfin on-chip mac device. Say Y if you want it
846 compiled into the kernel. This driver is also available as a module
847 ( = code which can be inserted in and removed from the running kernel
848 whenever you want). The module will be called bfin_mac.
849
850config BFIN_MAC_USE_L1
851 bool "Use L1 memory for rx/tx packets"
852 depends on BFIN_MAC && BF537
853 default y
854 help
855 To get maximum network performace, you should use L1 memory as rx/tx buffers.
856 Say N here if you want to reserve L1 memory for other uses.
857
858config BFIN_TX_DESC_NUM
859 int "Number of transmit buffer packets"
860 depends on BFIN_MAC
861 range 6 10 if BFIN_MAC_USE_L1
862 range 10 100
863 default "10"
864 help
865 Set the number of buffer packets used in driver.
866
867config BFIN_RX_DESC_NUM
868 int "Number of receive buffer packets"
869 depends on BFIN_MAC
870 range 20 100 if BFIN_MAC_USE_L1
871 range 20 800
872 default "20"
873 help
874 Set the number of buffer packets used in driver.
875
876config BFIN_MAC_RMII
877 bool "RMII PHY Interface (EXPERIMENTAL)"
878 depends on BFIN_MAC && EXPERIMENTAL
879 default n
880 help
881 Use Reduced PHY MII Interface
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883config SMC9194
884 tristate "SMC 9194 support"
885 depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
886 select CRC32
887 ---help---
888 This is support for the SMC9xxx based Ethernet cards. Choose this
889 option if you have a DELL laptop with the docking station, or
890 another SMC9192/9194 based chipset. Say Y if you want it compiled
891 into the kernel, and read the file
892 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
893 available from <http://www.tldp.org/docs.html#howto>.
894
895 To compile this driver as a module, choose M here and read
896 <file:Documentation/networking/net-modules.txt>. The module
897 will be called smc9194.
898
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700899config SMC91X
900 tristate "SMC 91C9x/91C1xxx support"
901 select CRC32
902 select MII
903 depends on ARM || REDWOOD_5 || REDWOOD_6 || M32R || SUPERH || SOC_AU1X00 || BFIN
904 help
905 This is a driver for SMC's 91x series of Ethernet chipsets,
906 including the SMC91C94 and the SMC91C111. Say Y if you want it
907 compiled into the kernel, and read the file
908 <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
909 available from <http://www.linuxdoc.org/docs.html#howto>.
910
911 This driver is also available as a module ( = code which can be
912 inserted in and removed from the running kernel whenever you want).
913 The module will be called smc91x. If you want to compile it as a
914 module, say M here and read <file:Documentation/kbuild/modules.txt>
915 as well as <file:Documentation/networking/net-modules.txt>.
916
Sascha Hauer92aa6742006-06-22 07:11:13 +0200917config NET_NETX
918 tristate "NetX Ethernet support"
919 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700920 depends on ARCH_NETX
Sascha Hauer92aa6742006-06-22 07:11:13 +0200921 help
922 This is support for the Hilscher netX builtin Ethernet ports
923
924 To compile this driver as a module, choose M here and read
925 <file:Documentation/networking/net-modules.txt>. The module
926 will be called netx-eth.
927
Sascha Hauera1365272005-05-05 15:14:15 -0700928config DM9000
929 tristate "DM9000 support"
Alex Landauf40d24d2007-07-12 12:11:48 +0800930 depends on ARM || BLACKFIN || MIPS
Sascha Hauera1365272005-05-05 15:14:15 -0700931 select CRC32
932 select MII
933 ---help---
934 Support for DM9000 chipset.
935
936 To compile this driver as a module, choose M here and read
937 <file:Documentation/networking/net-modules.txt>. The module will be
938 called dm9000.
939
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700940config SMC911X
941 tristate "SMSC LAN911[5678] support"
942 select CRC32
943 select MII
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700944 depends on ARCH_PXA
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700945 help
946 This is a driver for SMSC's LAN911x series of Ethernet chipsets
947 including the new LAN9115, LAN9116, LAN9117, and LAN9118.
948 Say Y if you want it compiled into the kernel,
949 and read the Ethernet-HOWTO, available from
950 <http://www.linuxdoc.org/docs.html#howto>.
951
952 This driver is also available as a module. The module will be
953 called smc911x. If you want to compile it as a module, say M
Alexander E. Patrakov39f5fb32007-03-16 18:28:43 +0500954 here and read <file:Documentation/kbuild/modules.txt>
Dustin McIntire0a0c72c2006-04-19 20:24:51 -0700955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956config NET_VENDOR_RACAL
957 bool "Racal-Interlan (Micom) NI cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -0700958 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 help
960 If you have a network (Ethernet) card belonging to this class, such
961 as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
962 available from <http://www.tldp.org/docs.html#howto>.
963
964 Note that the answer to this question doesn't directly affect the
965 kernel: saying N will just cause the configurator to skip all
966 the questions about NI cards. If you say Y, you will be asked for
967 your specific card in the following questions.
968
969config NI5010
970 tristate "NI5010 support (EXPERIMENTAL)"
971 depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
972 ---help---
973 If you have a network (Ethernet) card of this type, say Y and read
974 the Ethernet-HOWTO, available from
975 <http://www.tldp.org/docs.html#howto>. Note that this is still
976 experimental code.
977
978 To compile this driver as a module, choose M here and read
979 <file:Documentation/networking/net-modules.txt>. The module
980 will be called ni5010.
981
982config NI52
983 tristate "NI5210 support"
984 depends on NET_VENDOR_RACAL && ISA
985 help
986 If you have a network (Ethernet) card of this type, say Y and read
987 the Ethernet-HOWTO, available from
988 <http://www.tldp.org/docs.html#howto>.
989
990 To compile this driver as a module, choose M here and read
991 <file:Documentation/networking/net-modules.txt>. The module
992 will be called ni52.
993
994config NI65
995 tristate "NI6510 support"
Al Viroa5532602005-05-04 05:39:42 +0100996 depends on NET_VENDOR_RACAL && ISA && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 help
998 If you have a network (Ethernet) card of this type, say Y and read
999 the Ethernet-HOWTO, available from
1000 <http://www.tldp.org/docs.html#howto>.
1001
1002 To compile this driver as a module, choose M here and read
1003 <file:Documentation/networking/net-modules.txt>. The module
1004 will be called ni65.
1005
1006source "drivers/net/tulip/Kconfig"
1007
1008config AT1700
1009 tristate "AT1700/1720 support (EXPERIMENTAL)"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001010 depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 select CRC32
1012 ---help---
1013 If you have a network (Ethernet) card of this type, say Y and read
1014 the Ethernet-HOWTO, available from
1015 <http://www.tldp.org/docs.html#howto>.
1016
1017 To compile this driver as a module, choose M here and read
1018 <file:Documentation/networking/net-modules.txt>. The module
1019 will be called at1700.
1020
1021config DEPCA
1022 tristate "DEPCA, DE10x, DE200, DE201, DE202, DE422 support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001023 depends on ISA || EISA || MCA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 select CRC32
1025 ---help---
1026 If you have a network (Ethernet) card of this type, say Y and read
1027 the Ethernet-HOWTO, available from
1028 <http://www.tldp.org/docs.html#howto> as well as
1029 <file:drivers/net/depca.c>.
1030
1031 To compile this driver as a module, choose M here and read
1032 <file:Documentation/networking/net-modules.txt>. The module
1033 will be called depca.
1034
1035config HP100
1036 tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001037 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 help
1039 If you have a network (Ethernet) card of this type, say Y and read
1040 the Ethernet-HOWTO, available from
1041 <http://www.tldp.org/docs.html#howto>.
1042
1043 To compile this driver as a module, choose M here and read
1044 <file:Documentation/networking/net-modules.txt>. The module
1045 will be called hp100.
1046
1047config NET_ISA
1048 bool "Other ISA cards"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001049 depends on ISA
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 ---help---
1051 If your network (Ethernet) card hasn't been mentioned yet and its
1052 bus system (that's the way the cards talks to the other components
1053 of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
1054 Make sure you know the name of your card. Read the Ethernet-HOWTO,
1055 available from <http://www.tldp.org/docs.html#howto>.
1056
1057 If unsure, say Y.
1058
1059 Note that the answer to this question doesn't directly affect the
1060 kernel: saying N will just cause the configurator to skip all
1061 the remaining ISA network card questions. If you say Y, you will be
1062 asked for your specific card in the following questions.
1063
1064config E2100
1065 tristate "Cabletron E21xx support"
1066 depends on NET_ISA
1067 select CRC32
1068 help
1069 If you have a network (Ethernet) card of this type, say Y and read
1070 the Ethernet-HOWTO, available from
1071 <http://www.tldp.org/docs.html#howto>.
1072
1073 To compile this driver as a module, choose M here and read
1074 <file:Documentation/networking/net-modules.txt>. The module
1075 will be called e2100.
1076
1077config EWRK3
1078 tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
1079 depends on NET_ISA
1080 select CRC32
1081 ---help---
1082 This driver supports the DE203, DE204 and DE205 network (Ethernet)
1083 cards. If this is for you, say Y and read
1084 <file:Documentation/networking/ewrk3.txt> in the kernel source as
1085 well as the Ethernet-HOWTO, available from
1086 <http://www.tldp.org/docs.html#howto>.
1087
1088 To compile this driver as a module, choose M here and read
1089 <file:Documentation/networking/net-modules.txt>. The module
1090 will be called ewrk3.
1091
1092config EEXPRESS
1093 tristate "EtherExpress 16 support"
1094 depends on NET_ISA
1095 ---help---
1096 If you have an EtherExpress16 network (Ethernet) card, say Y and
1097 read the Ethernet-HOWTO, available from
1098 <http://www.tldp.org/docs.html#howto>. Note that the Intel
1099 EtherExpress16 card used to be regarded as a very poor choice
1100 because the driver was very unreliable. We now have a new driver
1101 that should do better.
1102
1103 To compile this driver as a module, choose M here and read
1104 <file:Documentation/networking/net-modules.txt>. The module
1105 will be called eexpress.
1106
1107config EEXPRESS_PRO
1108 tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
1109 depends on NET_ISA
1110 ---help---
1111 If you have a network (Ethernet) card of this type, say Y. This
Jon Mason47c51432006-02-12 11:53:04 -06001112 driver supports Intel i82595{FX,TX} based boards. Note however
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 that the EtherExpress PRO/100 Ethernet card has its own separate
1114 driver. Please read the Ethernet-HOWTO, available from
1115 <http://www.tldp.org/docs.html#howto>.
1116
1117 To compile this driver as a module, choose M here and read
1118 <file:Documentation/networking/net-modules.txt>. The module
1119 will be called eepro.
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121config HPLAN_PLUS
1122 tristate "HP PCLAN+ (27247B and 27252A) support"
1123 depends on NET_ISA
1124 select CRC32
1125 help
1126 If you have a network (Ethernet) card of this type, say Y and read
1127 the Ethernet-HOWTO, available from
1128 <http://www.tldp.org/docs.html#howto>.
1129
1130 To compile this driver as a module, choose M here and read
1131 <file:Documentation/networking/net-modules.txt>. The module
1132 will be called hp-plus.
1133
1134config HPLAN
1135 tristate "HP PCLAN (27245 and other 27xxx series) support"
1136 depends on NET_ISA
1137 select CRC32
1138 help
1139 If you have a network (Ethernet) card of this type, say Y and read
1140 the Ethernet-HOWTO, available from
1141 <http://www.tldp.org/docs.html#howto>.
1142
1143 To compile this driver as a module, choose M here and read
1144 <file:Documentation/networking/net-modules.txt>. The module
1145 will be called hp.
1146
1147config LP486E
1148 tristate "LP486E on board Ethernet"
1149 depends on NET_ISA
1150 help
1151 Say Y here to support the 82596-based on-board Ethernet controller
1152 for the Panther motherboard, which is one of the two shipped in the
1153 Intel Professional Workstation.
1154
1155config ETH16I
1156 tristate "ICL EtherTeam 16i/32 support"
1157 depends on NET_ISA
1158 help
1159 If you have a network (Ethernet) card of this type, say Y and read
1160 the Ethernet-HOWTO, available from
1161 <http://www.tldp.org/docs.html#howto>.
1162
1163 To compile this driver as a module, choose M here and read
1164 <file:Documentation/networking/net-modules.txt>. The module
1165 will be called eth16i.
1166
1167config NE2000
1168 tristate "NE2000/NE1000 support"
Atsushi Nemoto57e386c2007-05-01 00:27:58 +09001169 depends on NET_ISA || (Q40 && m) || M32R || TOSHIBA_RBTX4927 || TOSHIBA_RBTX4938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 select CRC32
1171 ---help---
1172 If you have a network (Ethernet) card of this type, say Y and read
1173 the Ethernet-HOWTO, available from
1174 <http://www.tldp.org/docs.html#howto>. Many Ethernet cards
1175 without a specific driver are compatible with NE2000.
1176
1177 If you have a PCI NE2000 card however, say N here and Y to "PCI
Jesper Juhl28beaf62006-03-08 00:06:31 -08001178 NE2000 and clone support" under "EISA, VLB, PCI and on board
1179 controllers" below. If you have a NE2000 card and are running on
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 an MCA system (a bus system used on some IBM PS/2 computers and
1181 laptops), say N here and Y to "NE/2 (ne2000 MCA version) support",
1182 below.
1183
1184 To compile this driver as a module, choose M here and read
1185 <file:Documentation/networking/net-modules.txt>. The module
1186 will be called ne.
1187
1188config ZNET
1189 tristate "Zenith Z-Note support (EXPERIMENTAL)"
Al Viroa5532602005-05-04 05:39:42 +01001190 depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 help
1192 The Zenith Z-Note notebook computer has a built-in network
1193 (Ethernet) card, and this is the Linux driver for it. Note that the
1194 IBM Thinkpad 300 is compatible with the Z-Note and is also supported
1195 by this driver. Read the Ethernet-HOWTO, available from
1196 <http://www.tldp.org/docs.html#howto>.
1197
1198config SEEQ8005
1199 tristate "SEEQ8005 support (EXPERIMENTAL)"
1200 depends on NET_ISA && EXPERIMENTAL
1201 help
1202 This is a driver for the SEEQ 8005 network (Ethernet) card. If this
1203 is for you, read the Ethernet-HOWTO, available from
1204 <http://www.tldp.org/docs.html#howto>.
1205
1206 To compile this driver as a module, choose M here and read
1207 <file:Documentation/networking/net-modules.txt>. The module
1208 will be called seeq8005.
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210config NE2_MCA
1211 tristate "NE/2 (ne2000 MCA version) support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001212 depends on MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 select CRC32
1214 help
1215 If you have a network (Ethernet) card of this type, say Y and read
1216 the Ethernet-HOWTO, available from
1217 <http://www.tldp.org/docs.html#howto>.
1218
1219 To compile this driver as a module, choose M here and read
1220 <file:Documentation/networking/net-modules.txt>. The module
1221 will be called ne2.
1222
1223config IBMLANA
1224 tristate "IBM LAN Adapter/A support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001225 depends on MCA && MCA_LEGACY
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 ---help---
1227 This is a Micro Channel Ethernet adapter. You need to set
1228 CONFIG_MCA to use this driver. It is both available as an in-kernel
1229 driver and as a module.
1230
1231 To compile this driver as a module, choose M here and read
1232 <file:Documentation/networking/net-modules.txt>. The only
1233 currently supported card is the IBM LAN Adapter/A for Ethernet. It
1234 will both support 16K and 32K memory windows, however a 32K window
1235 gives a better security against packet losses. Usage of multiple
1236 boards with this driver should be possible, but has not been tested
1237 up to now due to lack of hardware.
1238
1239config IBMVETH
1240 tristate "IBM LAN Virtual Ethernet support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001241 depends on PPC_PSERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 ---help---
1243 This driver supports virtual ethernet adapters on newer IBM iSeries
1244 and pSeries systems.
1245
1246 To compile this driver as a module, choose M here and read
1247 <file:Documentation/networking/net-modules.txt>. The module will
1248 be called ibmveth.
1249
David Gibson1d3bb992007-08-23 13:56:01 +10001250source "drivers/net/ibm_emac/Kconfig"
1251source "drivers/net/ibm_newemac/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253config NET_PCI
1254 bool "EISA, VLB, PCI and on board controllers"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001255 depends on ISA || EISA || PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 help
1257 This is another class of network cards which attach directly to the
1258 bus. If you have one of those, say Y and read the Ethernet-HOWTO,
1259 available from <http://www.tldp.org/docs.html#howto>.
1260
1261 Note that the answer to this question doesn't directly affect the
1262 kernel: saying N will just cause the configurator to skip all
1263 the questions about this class of network cards. If you say Y, you
1264 will be asked for your specific card in the following questions. If
1265 you are unsure, say Y.
1266
1267config PCNET32
1268 tristate "AMD PCnet32 PCI support"
1269 depends on NET_PCI && PCI
1270 select CRC32
1271 select MII
1272 help
1273 If you have a PCnet32 or PCnetPCI based network (Ethernet) card,
1274 answer Y here and read the Ethernet-HOWTO, available from
1275 <http://www.tldp.org/docs.html#howto>.
1276
1277 To compile this driver as a module, choose M here and read
1278 <file:Documentation/networking/net-modules.txt>. The module
1279 will be called pcnet32.
1280
Don Fry7de745e2006-09-13 10:16:53 -07001281config PCNET32_NAPI
pcnet32@verizon.net659dd832007-02-16 10:09:57 -06001282 bool "Use RX polling (NAPI)"
1283 depends on PCNET32
Don Fry7de745e2006-09-13 10:16:53 -07001284 help
1285 NAPI is a new driver API designed to reduce CPU and interrupt load
1286 when the driver is receiving lots of packets from the card. It is
1287 still somewhat experimental and thus not yet enabled by default.
1288
1289 If your estimated Rx load is 10kpps or more, or if the card will be
1290 deployed on potentially unfriendly networks (e.g. in a firewall),
1291 then say Y here.
1292
1293 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1294 information.
1295
1296 If in doubt, say N.
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298config AMD8111_ETH
1299 tristate "AMD 8111 (new PCI lance) support"
1300 depends on NET_PCI && PCI
1301 select CRC32
1302 select MII
1303 help
1304 If you have an AMD 8111-based PCI lance ethernet card,
1305 answer Y here and read the Ethernet-HOWTO, available from
1306 <http://www.tldp.org/docs.html#howto>.
1307
1308 To compile this driver as a module, choose M here and read
1309 <file:Documentation/networking/net-modules.txt>. The module
1310 will be called amd8111e.
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312config AMD8111E_NAPI
1313 bool "Enable NAPI support"
1314 depends on AMD8111_ETH
1315 help
1316 NAPI is a new driver API designed to reduce CPU and interrupt load
1317 when the driver is receiving lots of packets from the card. It is
1318 still somewhat experimental and thus not yet enabled by default.
1319
1320 If your estimated Rx load is 10kpps or more, or if the card will be
1321 deployed on potentially unfriendly networks (e.g. in a firewall),
1322 then say Y here.
1323
1324 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1325 information.
1326
1327 If in doubt, say N.
1328
1329config ADAPTEC_STARFIRE
1330 tristate "Adaptec Starfire/DuraLAN support"
1331 depends on NET_PCI && PCI
1332 select CRC32
1333 select MII
1334 help
1335 Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
1336 adapter. The DuraLAN chip is used on the 64 bit PCI boards from
1337 Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
1338 driver.
1339
1340 To compile this driver as a module, choose M here: the module
1341 will be called starfire. This is recommended.
1342
1343config ADAPTEC_STARFIRE_NAPI
1344 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
1345 depends on ADAPTEC_STARFIRE && EXPERIMENTAL
1346 help
1347 NAPI is a new driver API designed to reduce CPU and interrupt load
1348 when the driver is receiving lots of packets from the card. It is
1349 still somewhat experimental and thus not yet enabled by default.
1350
1351 If your estimated Rx load is 10kpps or more, or if the card will be
1352 deployed on potentially unfriendly networks (e.g. in a firewall),
1353 then say Y here.
1354
1355 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1356 information.
1357
1358 If in doubt, say N.
1359
1360config AC3200
1361 tristate "Ansel Communications EISA 3200 support (EXPERIMENTAL)"
1362 depends on NET_PCI && (ISA || EISA) && EXPERIMENTAL
1363 select CRC32
1364 help
1365 If you have a network (Ethernet) card of this type, say Y and read
1366 the Ethernet-HOWTO, available from
1367 <http://www.tldp.org/docs.html#howto>.
1368
1369 To compile this driver as a module, choose M here and read
1370 <file:Documentation/networking/net-modules.txt>. The module
1371 will be called ac3200.
1372
1373config APRICOT
1374 tristate "Apricot Xen-II on board Ethernet"
1375 depends on NET_PCI && ISA
1376 help
1377 If you have a network (Ethernet) controller of this type, say Y and
1378 read the Ethernet-HOWTO, available from
1379 <http://www.tldp.org/docs.html#howto>.
1380
1381 To compile this driver as a module, choose M here and read
1382 <file:Documentation/networking/net-modules.txt>. The module will be
1383 called apricot.
1384
1385config B44
Michael Buesch753f4922007-09-19 14:20:30 -07001386 tristate "Broadcom 440x/47xx ethernet support"
1387 depends on SSB_POSSIBLE
1388 select SSB
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 select MII
1390 help
Michael Buesch753f4922007-09-19 14:20:30 -07001391 If you have a network (Ethernet) controller of this type, say Y
1392 or M and read the Ethernet-HOWTO, available from
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 <http://www.tldp.org/docs.html#howto>.
1394
1395 To compile this driver as a module, choose M here and read
1396 <file:Documentation/networking/net-modules.txt>. The module will be
1397 called b44.
1398
Michael Buesch753f4922007-09-19 14:20:30 -07001399# Auto-select SSB PCI-HOST support, if possible
1400config B44_PCI_AUTOSELECT
1401 bool
1402 depends on B44 && SSB_PCIHOST_POSSIBLE
1403 select SSB_PCIHOST
1404 default y
1405
1406# Auto-select SSB PCICORE driver, if possible
1407config B44_PCICORE_AUTOSELECT
1408 bool
1409 depends on B44 && SSB_DRIVER_PCICORE_POSSIBLE
1410 select SSB_DRIVER_PCICORE
1411 default y
1412
1413config B44_PCI
1414 bool
1415 depends on B44_PCI_AUTOSELECT && B44_PCICORE_AUTOSELECT
1416 default y
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418config FORCEDETH
Adrian Bunk82770082006-03-08 00:06:30 -08001419 tristate "nForce Ethernet support"
1420 depends on NET_PCI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 help
1422 If you have a network (Ethernet) controller of this type, say Y and
1423 read the Ethernet-HOWTO, available from
1424 <http://www.tldp.org/docs.html#howto>.
1425
1426 To compile this driver as a module, choose M here and read
1427 <file:Documentation/networking/net-modules.txt>. The module will be
1428 called forcedeth.
1429
Stephen Hemmingere27cdba2006-07-31 20:37:19 -07001430config FORCEDETH_NAPI
1431 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
1432 depends on FORCEDETH && EXPERIMENTAL
1433 help
1434 NAPI is a new driver API designed to reduce CPU and interrupt load
1435 when the driver is receiving lots of packets from the card. It is
1436 still somewhat experimental and thus not yet enabled by default.
1437
1438 If your estimated Rx load is 10kpps or more, or if the card will be
1439 deployed on potentially unfriendly networks (e.g. in a firewall),
1440 then say Y here.
1441
1442 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1443 information.
1444
1445 If in doubt, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447config CS89x0
1448 tristate "CS89x0 support"
Deepak Saxena9c878962006-01-14 13:21:18 -08001449 depends on NET_PCI && (ISA || MACH_IXDP2351 || ARCH_IXDP2X01 || ARCH_PNX010X)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 ---help---
1451 Support for CS89x0 chipset based Ethernet cards. If you have a
1452 network (Ethernet) card of this type, say Y and read the
1453 Ethernet-HOWTO, available from
1454 <http://www.tldp.org/docs.html#howto> as well as
1455 <file:Documentation/networking/cs89x0.txt>.
1456
1457 To compile this driver as a module, choose M here and read
1458 <file:Documentation/networking/net-modules.txt>. The module will be
Jean Delvarefd85d762006-01-11 12:17:36 -08001459 called cs89x0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461config TC35815
1462 tristate "TOSHIBA TC35815 Ethernet support"
Atsushi Nemotoeea221ce2007-03-03 23:54:59 +09001463 depends on NET_PCI && PCI && MIPS
1464 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466config DGRS
1467 tristate "Digi Intl. RightSwitch SE-X support"
1468 depends on NET_PCI && (PCI || EISA)
1469 ---help---
1470 This is support for the Digi International RightSwitch series of
1471 PCI/EISA Ethernet switch cards. These include the SE-4 and the SE-6
1472 models. If you have a network card of this type, say Y and read the
1473 Ethernet-HOWTO, available from
1474 <http://www.tldp.org/docs.html#howto>. More specific
1475 information is contained in <file:Documentation/networking/dgrs.txt>.
1476
1477 To compile this driver as a module, choose M here and read
1478 <file:Documentation/networking/net-modules.txt>. The module
1479 will be called dgrs.
1480
1481config EEPRO100
1482 tristate "EtherExpressPro/100 support (eepro100, original Becker driver)"
1483 depends on NET_PCI && PCI
1484 select MII
1485 help
1486 If you have an Intel EtherExpress PRO/100 PCI network (Ethernet)
1487 card, say Y and read the Ethernet-HOWTO, available from
1488 <http://www.tldp.org/docs.html#howto>.
1489
1490 To compile this driver as a module, choose M here and read
1491 <file:Documentation/networking/net-modules.txt>. The module
1492 will be called eepro100.
1493
1494
1495config E100
1496 tristate "Intel(R) PRO/100+ support"
1497 depends on NET_PCI && PCI
1498 select MII
1499 ---help---
1500 This driver supports Intel(R) PRO/100 family of adapters.
1501 To verify that your adapter is supported, find the board ID number
1502 on the adapter. Look for a label that has a barcode and a number
1503 in the format 123456-001 (six digits hyphen three digits).
1504
1505 Use the above information and the Adapter & Driver ID Guide at:
1506
1507 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1508
1509 to identify the adapter.
1510
1511 For the latest Intel PRO/100 network driver for Linux, see:
1512
1513 <http://appsr.intel.com/scripts-df/support_intel.asp>
1514
1515 More specific information on configuring the driver is in
1516 <file:Documentation/networking/e100.txt>.
1517
1518 To compile this driver as a module, choose M here and read
1519 <file:Documentation/networking/net-modules.txt>. The module
1520 will be called e100.
1521
1522config LNE390
1523 tristate "Mylex EISA LNE390A/B support (EXPERIMENTAL)"
1524 depends on NET_PCI && EISA && EXPERIMENTAL
1525 select CRC32
1526 help
1527 If you have a network (Ethernet) card of this type, say Y and read
1528 the Ethernet-HOWTO, available from
1529 <http://www.tldp.org/docs.html#howto>.
1530
1531 To compile this driver as a module, choose M here and read
1532 <file:Documentation/networking/net-modules.txt>. The module
1533 will be called lne390.
1534
1535config FEALNX
1536 tristate "Myson MTD-8xx PCI Ethernet support"
1537 depends on NET_PCI && PCI
1538 select CRC32
1539 select MII
1540 help
1541 Say Y here to support the Mysom MTD-800 family of PCI-based Ethernet
1542 cards. Specifications and data at
1543 <http://www.myson.com.hk/mtd/datasheet/>.
1544
1545config NATSEMI
1546 tristate "National Semiconductor DP8381x series PCI Ethernet support"
1547 depends on NET_PCI && PCI
1548 select CRC32
1549 help
1550 This driver is for the National Semiconductor DP83810 series,
1551 which is used in cards from PureData, NetGear, Linksys
1552 and others, including the 83815 chip.
1553 More specific information and updates are available from
1554 <http://www.scyld.com/network/natsemi.html>.
1555
1556config NE2K_PCI
1557 tristate "PCI NE2000 and clones support (see help)"
1558 depends on NET_PCI && PCI
1559 select CRC32
1560 ---help---
1561 This driver is for NE2000 compatible PCI cards. It will not work
1562 with ISA NE2000 cards (they have their own driver, "NE2000/NE1000
1563 support" below). If you have a PCI NE2000 network (Ethernet) card,
1564 say Y and read the Ethernet-HOWTO, available from
1565 <http://www.tldp.org/docs.html#howto>.
1566
1567 This driver also works for the following NE2000 clone cards:
1568 RealTek RTL-8029 Winbond 89C940 Compex RL2000 KTI ET32P2
1569 NetVin NV5000SC Via 86C926 SureCom NE34 Winbond
1570 Holtek HT80232 Holtek HT80229
1571
1572 To compile this driver as a module, choose M here and read
1573 <file:Documentation/networking/net-modules.txt>. The module
1574 will be called ne2k-pci.
1575
1576config NE3210
1577 tristate "Novell/Eagle/Microdyne NE3210 EISA support (EXPERIMENTAL)"
1578 depends on NET_PCI && EISA && EXPERIMENTAL
1579 select CRC32
1580 ---help---
1581 If you have a network (Ethernet) card of this type, say Y and read
1582 the Ethernet-HOWTO, available from
1583 <http://www.tldp.org/docs.html#howto>. Note that this driver
1584 will NOT WORK for NE3200 cards as they are completely different.
1585
1586 To compile this driver as a module, choose M here and read
1587 <file:Documentation/networking/net-modules.txt>. The module
1588 will be called ne3210.
1589
1590config ES3210
1591 tristate "Racal-Interlan EISA ES3210 support (EXPERIMENTAL)"
1592 depends on NET_PCI && EISA && EXPERIMENTAL
1593 select CRC32
1594 help
1595 If you have a network (Ethernet) card of this type, say Y and read
1596 the Ethernet-HOWTO, available from
1597 <http://www.tldp.org/docs.html#howto>.
1598
1599 To compile this driver as a module, choose M here and read
1600 <file:Documentation/networking/net-modules.txt>. The module
1601 will be called es3210.
1602
1603config 8139CP
1604 tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
1605 depends on NET_PCI && PCI && EXPERIMENTAL
1606 select CRC32
1607 select MII
1608 help
1609 This is a driver for the Fast Ethernet PCI network cards based on
1610 the RTL8139C+ chips. If you have one of those, say Y and read
1611 the Ethernet-HOWTO, available from
1612 <http://www.tldp.org/docs.html#howto>.
1613
1614 To compile this driver as a module, choose M here: the module
1615 will be called 8139cp. This is recommended.
1616
1617config 8139TOO
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001618 tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 depends on NET_PCI && PCI
1620 select CRC32
1621 select MII
1622 ---help---
1623 This is a driver for the Fast Ethernet PCI network cards based on
Adrian Bunkf04e3f02005-05-16 21:13:03 +02001624 the RTL 8129/8130/8139 chips. If you have one of those, say Y and
1625 read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 To compile this driver as a module, choose M here: the module
1628 will be called 8139too. This is recommended.
1629
1630config 8139TOO_PIO
1631 bool "Use PIO instead of MMIO"
1632 default y
1633 depends on 8139TOO
1634 help
1635 This instructs the driver to use programmed I/O ports (PIO) instead
1636 of PCI shared memory (MMIO). This can possibly solve some problems
1637 in case your mainboard has memory consistency issues. If unsure,
1638 say N.
1639
1640config 8139TOO_TUNE_TWISTER
1641 bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
1642 depends on 8139TOO
1643 help
1644 This implements a function which might come in handy in case you
1645 are using low quality on long cabling. It is required for RealTek
1646 RTL-8139 revision K boards, and totally unused otherwise. It tries
1647 to match the transceiver to the cable characteristics. This is
1648 experimental since hardly documented by the manufacturer.
1649 If unsure, say Y.
1650
1651config 8139TOO_8129
1652 bool "Support for older RTL-8129/8130 boards"
1653 depends on 8139TOO
1654 help
1655 This enables support for the older and uncommon RTL-8129 and
1656 RTL-8130 chips, which support MII via an external transceiver,
1657 instead of an internal one. Disabling this option will save some
1658 memory by making the code size smaller. If unsure, say Y.
1659
1660config 8139_OLD_RX_RESET
1661 bool "Use older RX-reset method"
1662 depends on 8139TOO
1663 help
1664 The 8139too driver was recently updated to contain a more rapid
1665 reset sequence, in the face of severe receive errors. This "new"
1666 RX-reset method should be adequate for all boards. But if you
1667 experience problems, you can enable this option to restore the
1668 old RX-reset behavior. If unsure, say N.
1669
1670config SIS900
1671 tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
1672 depends on NET_PCI && PCI
1673 select CRC32
Adrian Bunk6da0f682005-04-30 13:52:49 +02001674 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 ---help---
1676 This is a driver for the Fast Ethernet PCI network cards based on
1677 the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
Adrian Bunkc3cf5602006-03-04 17:07:57 +01001678 SiS 630 and SiS 540 chipsets.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680 This driver also supports AMD 79C901 HomePNA so that you can use
1681 your phone line as a network cable.
1682
1683 To compile this driver as a module, choose M here: the module
1684 will be called sis900. This is recommended.
1685
1686config EPIC100
1687 tristate "SMC EtherPower II"
1688 depends on NET_PCI && PCI
1689 select CRC32
1690 select MII
1691 help
1692 This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
1693 which is based on the SMC83c17x (EPIC/100).
1694 More specific information and updates are available from
1695 <http://www.scyld.com/network/epic100.html>.
1696
1697config SUNDANCE
1698 tristate "Sundance Alta support"
1699 depends on NET_PCI && PCI
1700 select CRC32
1701 select MII
1702 help
1703 This driver is for the Sundance "Alta" chip.
1704 More specific information and updates are available from
1705 <http://www.scyld.com/network/sundance.html>.
1706
1707config SUNDANCE_MMIO
1708 bool "Use MMIO instead of PIO"
1709 depends on SUNDANCE
1710 help
1711 Enable memory-mapped I/O for interaction with Sundance NIC registers.
1712 Do NOT enable this by default, PIO (enabled when MMIO is disabled)
1713 is known to solve bugs on certain chips.
1714
1715 If unsure, say N.
1716
1717config TLAN
1718 tristate "TI ThunderLAN support"
1719 depends on NET_PCI && (PCI || EISA) && !64BIT
1720 ---help---
1721 If you have a PCI Ethernet network card based on the ThunderLAN chip
1722 which is supported by this driver, say Y and read the
1723 Ethernet-HOWTO, available from
1724 <http://www.tldp.org/docs.html#howto>.
1725
1726 Devices currently supported by this driver are Compaq Netelligent,
1727 Compaq NetFlex and Olicom cards. Please read the file
1728 <file:Documentation/networking/tlan.txt> for more details.
1729
1730 To compile this driver as a module, choose M here and read
1731 <file:Documentation/networking/net-modules.txt>. The module
1732 will be called tlan.
1733
1734 Please email feedback to <torben.mathiasen@compaq.com>.
1735
1736config VIA_RHINE
1737 tristate "VIA Rhine support"
1738 depends on NET_PCI && PCI
1739 select CRC32
1740 select MII
1741 help
1742 If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
1743 Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
1744 Ethernet functions can also be found integrated on South Bridges
1745 (e.g. VT8235).
1746
1747 To compile this driver as a module, choose M here. The module
1748 will be called via-rhine.
1749
1750config VIA_RHINE_MMIO
1751 bool "Use MMIO instead of PIO"
1752 depends on VIA_RHINE
1753 help
1754 This instructs the driver to use PCI shared memory (MMIO) instead of
1755 programmed I/O ports (PIO). Enabling this gives an improvement in
1756 processing time in parts of the driver.
1757
1758 If unsure, say Y.
1759
Roger Luethi633949a2006-08-14 23:00:17 -07001760config VIA_RHINE_NAPI
1761 bool "Use Rx Polling (NAPI)"
1762 depends on VIA_RHINE
1763 help
1764 NAPI is a new driver API designed to reduce CPU and interrupt load
1765 when the driver is receiving lots of packets from the card.
1766
1767 If your estimated Rx load is 10kpps or more, or if the card will be
1768 deployed on potentially unfriendly networks (e.g. in a firewall),
1769 then say Y here.
1770
1771 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
1772 information.
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774config LAN_SAA9730
Ralf Baechlef2b67c72006-11-29 17:10:38 +00001775 bool "Philips SAA9730 Ethernet support"
1776 depends on NET_PCI && PCI && MIPS_ATLAS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 help
1778 The SAA9730 is a combined multimedia and peripheral controller used
1779 in thin clients, Internet access terminals, and diskless
1780 workstations.
1781 See <http://www.semiconductors.philips.com/pip/SAA9730_flyer_1>.
1782
Cesar Eduardo Barrosbf345702006-12-19 13:08:47 -08001783config SC92031
1784 tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
1785 depends on NET_PCI && PCI && EXPERIMENTAL
1786 select CRC32
1787 ---help---
1788 This is a driver for the Fast Ethernet PCI network cards based on
1789 the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
1790 have one of these, say Y here.
1791
1792 To compile this driver as a module, choose M here: the module
1793 will be called sc92031. This is recommended.
1794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795config NET_POCKET
1796 bool "Pocket and portable adapters"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001797 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 ---help---
1799 Cute little network (Ethernet) devices which attach to the parallel
1800 port ("pocket adapters"), commonly used with laptops. If you have
1801 one of those, say Y and read the Ethernet-HOWTO, available from
1802 <http://www.tldp.org/docs.html#howto>.
1803
1804 If you want to plug a network (or some other) card into the PCMCIA
1805 (or PC-card) slot of your laptop instead (PCMCIA is the standard for
1806 credit card size extension cards used by all modern laptops), you
1807 need the pcmcia-cs package (location contained in the file
1808 <file:Documentation/Changes>) and you can say N here.
1809
1810 Laptop users should read the Linux Laptop home page at
1811 <http://www.linux-on-laptops.com/> or
1812 Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
1813
1814 Note that the answer to this question doesn't directly affect the
1815 kernel: saying N will just cause the configurator to skip all
1816 the questions about this class of network devices. If you say Y, you
1817 will be asked for your specific device in the following questions.
1818
1819config ATP
1820 tristate "AT-LAN-TEC/RealTek pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001821 depends on NET_POCKET && PARPORT && X86
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 select CRC32
1823 ---help---
1824 This is a network (Ethernet) device which attaches to your parallel
1825 port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
1826 available from <http://www.tldp.org/docs.html#howto>, if you
1827 want to use this. If you intend to use this driver, you should have
1828 said N to the "Parallel printer support", because the two drivers
1829 don't like each other.
1830
1831 To compile this driver as a module, choose M here: the module
1832 will be called atp.
1833
1834config DE600
1835 tristate "D-Link DE600 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001836 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ---help---
1838 This is a network (Ethernet) device which attaches to your parallel
1839 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1840 Ethernet-HOWTO, available from
1841 <http://www.tldp.org/docs.html#howto>, if you want to use
1842 this. It is possible to have several devices share a single parallel
1843 port and it is safe to compile the corresponding drivers into the
1844 kernel.
1845
1846 To compile this driver as a module, choose M here: the module
1847 will be called de600.
1848
1849config DE620
1850 tristate "D-Link DE620 pocket adapter support"
Grant Coady32fa2bf2005-09-10 00:14:05 +10001851 depends on NET_POCKET && PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 ---help---
1853 This is a network (Ethernet) device which attaches to your parallel
1854 port. Read <file:Documentation/networking/DLINK.txt> as well as the
1855 Ethernet-HOWTO, available from
1856 <http://www.tldp.org/docs.html#howto>, if you want to use
1857 this. It is possible to have several devices share a single parallel
1858 port and it is safe to compile the corresponding drivers into the
1859 kernel.
1860
1861 To compile this driver as a module, choose M here: the module
1862 will be called de620.
1863
1864config SGISEEQ
1865 tristate "SGI Seeq ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001866 depends on SGI_IP22
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 help
1868 Say Y here if you have an Seeq based Ethernet network card. This is
1869 used in many Silicon Graphics machines.
1870
1871config DECLANCE
1872 tristate "DEC LANCE ethernet controller support"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001873 depends on MACH_DECSTATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 select CRC32
1875 help
1876 This driver is for the series of Ethernet controllers produced by
1877 DEC (now Compaq) based on the AMD Lance chipset, including the
1878 DEPCA series. (This chipset is better known via the NE2100 cards.)
1879
1880config 68360_ENET
1881 bool "Motorola 68360 ethernet controller"
1882 depends on M68360
1883 help
1884 Say Y here if you want to use the built-in ethernet controller of
1885 the Motorola 68360 processor.
1886
1887config FEC
Greg Ungerer2af69212005-09-12 11:18:10 +10001888 bool "FEC ethernet controller (of ColdFire CPUs)"
Greg Ungerer892b6252006-01-10 16:58:16 +10001889 depends on M523x || M527x || M5272 || M528x || M520x
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 help
1891 Say Y here if you want to use the built-in 10/100 Fast ethernet
Greg Ungerer2af69212005-09-12 11:18:10 +10001892 controller on some Motorola ColdFire processors.
1893
1894config FEC2
1895 bool "Second FEC ethernet controller (on some ColdFire CPUs)"
1896 depends on FEC
1897 help
1898 Say Y here if you want to use the second built-in 10/100 Fast
1899 ethernet controller on some Motorola ColdFire processors.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901config NE_H8300
1902 tristate "NE2000 compatible support for H8/300"
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001903 depends on H8300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 help
1905 Say Y here if you want to use the NE2000 compatible
1906 controller on the Renesas H8/300 processor.
1907
1908source "drivers/net/fec_8xx/Kconfig"
Pantelis Antoniou48257c42005-10-28 16:25:58 -04001909source "drivers/net/fs_enet/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07001911endif # NET_ETHERNET
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913#
1914# Gigabit Ethernet
1915#
1916
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001917menuconfig NETDEV_1000
1918 bool "Ethernet (1000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07001919 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001920 default y
Jan Engelhardt06bfb7e2007-08-18 12:56:21 +02001921 ---help---
1922 Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
1923 type of Local Area Network (LAN) in universities and companies.
1924
1925 Say Y here to get to see options for Gigabit Ethernet drivers.
1926 This option alone does not add any kernel code.
1927 Note that drivers supporting both 100 and 1000 MBit may be listed
1928 under "Ethernet (10 or 100MBit)" instead.
1929
1930 If you say N, all options in this submenu will be skipped and disabled.
Jan Engelhardtf30486d2007-05-10 22:52:56 -07001931
1932if NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934config ACENIC
1935 tristate "Alteon AceNIC/3Com 3C985/NetGear GA620 Gigabit support"
1936 depends on PCI
1937 ---help---
1938 Say Y here if you have an Alteon AceNIC, 3Com 3C985(B), NetGear
1939 GA620, SGI Gigabit or Farallon PN9000-SX PCI Gigabit Ethernet
1940 adapter. The driver allows for using the Jumbo Frame option (9000
1941 bytes/frame) however it requires that your switches can handle this
1942 as well. To enable Jumbo Frames, add `mtu 9000' to your ifconfig
1943 line.
1944
1945 To compile this driver as a module, choose M here: the
1946 module will be called acenic.
1947
1948config ACENIC_OMIT_TIGON_I
1949 bool "Omit support for old Tigon I based AceNICs"
1950 depends on ACENIC
1951 help
1952 Say Y here if you only have Tigon II based AceNICs and want to leave
1953 out support for the older Tigon I based cards which are no longer
1954 being sold (ie. the original Alteon AceNIC and 3Com 3C985 (non B
1955 version)). This will reduce the size of the driver object by
1956 app. 100KB. If you are not sure whether your card is a Tigon I or a
1957 Tigon II, say N here.
1958
1959 The safe and default value for this is N.
1960
1961config DL2K
Komurodf950822007-08-13 09:45:41 +09001962 tristate "DL2000/TC902x-based Gigabit Ethernet support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 depends on PCI
1964 select CRC32
1965 help
Komurodf950822007-08-13 09:45:41 +09001966 This driver supports DL2000/TC902x-based Gigabit ethernet cards,
1967 which includes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 D-Link DGE-550T Gigabit Ethernet Adapter.
1969 D-Link DL2000-based Gigabit Ethernet Adapter.
Komurodf950822007-08-13 09:45:41 +09001970 Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 To compile this driver as a module, choose M here: the
1973 module will be called dl2k.
1974
1975config E1000
1976 tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
1977 depends on PCI
1978 ---help---
1979 This driver supports Intel(R) PRO/1000 gigabit ethernet family of
1980 adapters. For more information on how to identify your adapter, go
1981 to the Adapter & Driver ID Guide at:
1982
1983 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
1984
1985 For general information and support, go to the Intel support
1986 website at:
1987
1988 <http://support.intel.com>
1989
1990 More specific information on configuring the driver is in
1991 <file:Documentation/networking/e1000.txt>.
1992
1993 To compile this driver as a module, choose M here and read
1994 <file:Documentation/networking/net-modules.txt>. The module
1995 will be called e1000.
1996
1997config E1000_NAPI
1998 bool "Use Rx Polling (NAPI)"
1999 depends on E1000
2000 help
2001 NAPI is a new driver API designed to reduce CPU and interrupt load
2002 when the driver is receiving lots of packets from the card. It is
2003 still somewhat experimental and thus not yet enabled by default.
2004
2005 If your estimated Rx load is 10kpps or more, or if the card will be
2006 deployed on potentially unfriendly networks (e.g. in a firewall),
2007 then say Y here.
2008
2009 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2010 information.
2011
2012 If in doubt, say N.
2013
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002014config E1000_DISABLE_PACKET_SPLIT
2015 bool "Disable Packet Split for PCI express adapters"
2016 depends on E1000
2017 help
2018 Say Y here if you want to use the legacy receive path for PCI express
James Ring9e6b4872006-03-22 00:51:11 +01002019 hardware.
Jesse Brandeburg35ec56b2006-01-18 13:01:30 -08002020
2021 If in doubt, say N.
2022
Auke Kokbc7f75f2007-09-17 12:30:59 -07002023config E1000E
2024 tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
2025 depends on PCI
2026 ---help---
2027 This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
2028 ethernet family of adapters. For PCI or PCI-X e1000 adapters,
2029 use the regular e1000 driver For more information on how to
2030 identify your adapter, go to the Adapter & Driver ID Guide at:
2031
2032 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2033
2034 For general information and support, go to the Intel support
2035 website at:
2036
2037 <http://support.intel.com>
2038
2039 More specific information on configuring the driver is in
2040 <file:Documentation/networking/e1000e.txt>.
2041
2042 To compile this driver as a module, choose M here and read
2043 <file:Documentation/networking/net-modules.txt>. The module
2044 will be called e1000e.
2045
Lennert Buytenhek15d014d2005-11-11 18:23:13 +01002046source "drivers/net/ixp2000/Kconfig"
2047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048config MYRI_SBUS
2049 tristate "MyriCOM Gigabit Ethernet support"
2050 depends on SBUS
2051 help
2052 This driver supports MyriCOM Sbus gigabit Ethernet cards.
2053
2054 To compile this driver as a module, choose M here: the module
2055 will be called myri_sbus. This is recommended.
2056
2057config NS83820
Jon Mason47c51432006-02-12 11:53:04 -06002058 tristate "National Semiconductor DP83820 support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 depends on PCI
2060 help
2061 This is a driver for the National Semiconductor DP83820 series
2062 of gigabit ethernet MACs. Cards using this chipset include
2063 the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
2064 SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
2065 zero copy.
2066
2067config HAMACHI
2068 tristate "Packet Engines Hamachi GNIC-II support"
2069 depends on PCI
2070 select MII
2071 help
2072 If you have a Gigabit Ethernet card of this type, say Y and read
2073 the Ethernet-HOWTO, available from
2074 <http://www.tldp.org/docs.html#howto>.
2075
2076 To compile this driver as a module, choose M here and read
2077 <file:Documentation/networking/net-modules.txt>. The module will be
2078 called hamachi.
2079
2080config YELLOWFIN
2081 tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
2082 depends on PCI && EXPERIMENTAL
2083 select CRC32
2084 ---help---
2085 Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
2086 adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
2087 used by the Beowulf Linux cluster project. See
2088 <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
2089 information about this driver in particular and Beowulf in general.
2090
2091 To compile this driver as a module, choose M here: the module
2092 will be called yellowfin. This is recommended.
2093
2094config R8169
2095 tristate "Realtek 8169 gigabit ethernet support"
2096 depends on PCI
2097 select CRC32
2098 ---help---
2099 Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
2100
2101 To compile this driver as a module, choose M here: the module
2102 will be called r8169. This is recommended.
2103
2104config R8169_NAPI
2105 bool "Use Rx and Tx Polling (NAPI) (EXPERIMENTAL)"
2106 depends on R8169 && EXPERIMENTAL
2107 help
2108 NAPI is a new driver API designed to reduce CPU and interrupt load
2109 when the driver is receiving lots of packets from the card. It is
2110 still somewhat experimental and thus not yet enabled by default.
2111
2112 If your estimated Rx load is 10kpps or more, or if the card will be
2113 deployed on potentially unfriendly networks (e.g. in a firewall),
2114 then say Y here.
2115
2116 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2117 information.
2118
2119 If in doubt, say N.
2120
2121config R8169_VLAN
2122 bool "VLAN support"
2123 depends on R8169 && VLAN_8021Q
2124 ---help---
2125 Say Y here for the r8169 driver to support the functions required
2126 by the kernel 802.1Q code.
2127
2128 If in doubt, say Y.
2129
Francois Romieu890e8d02005-07-30 13:08:43 +02002130config SIS190
Francois Romieue7976372005-09-03 00:57:51 +02002131 tristate "SiS190/SiS191 gigabit ethernet support"
Adrian Bunke9985d52005-08-09 02:41:00 +02002132 depends on PCI
2133 select CRC32
2134 select MII
2135 ---help---
Francois Romieue7976372005-09-03 00:57:51 +02002136 Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
2137 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
2138 appear in lan on motherboard designs which are based on SiS 965
2139 and SiS 966 south bridge.
Francois Romieu890e8d02005-07-30 13:08:43 +02002140
Adrian Bunke9985d52005-08-09 02:41:00 +02002141 To compile this driver as a module, choose M here: the module
2142 will be called sis190. This is recommended.
Francois Romieu890e8d02005-07-30 13:08:43 +02002143
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002144config SKGE
Stephen Hemminger7a160c72006-02-13 15:48:08 -08002145 tristate "New SysKonnect GigaEthernet support"
2146 depends on PCI
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002147 select CRC32
2148 ---help---
2149 This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2150 and related Gigabit Ethernet adapters. It is a new smaller driver
Stephen Hemminger46a60f22005-09-09 12:54:56 -07002151 with better performance and more complete ethtool support.
Stephen Hemmingerbaef58b2005-05-12 20:14:36 -04002152
2153 It does not support the link failover and network management
Stephen Hemminger5ad887f2007-09-15 19:35:14 -04002154 features that "portable" vendor supplied sk98lin driver does.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002155
Daniel Drakec6f0d752006-01-21 19:35:34 +00002156 This driver supports adapters based on the original Yukon chipset:
2157 Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
2158 Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
2159
2160 It does not support the newer Yukon2 chipset: a separate driver,
2161 sky2, is provided for Yukon2-based adapters.
2162
2163 To compile this driver as a module, choose M here: the module
2164 will be called skge. This is recommended.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002165
2166config SKY2
Stephen Hemminger8a3e3bf2007-07-09 15:33:38 -07002167 tristate "SysKonnect Yukon2 support"
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002168 depends on PCI
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002169 select CRC32
2170 ---help---
Matt LaPlantecab00892006-10-03 22:36:44 +02002171 This driver supports Gigabit Ethernet adapters based on the
Daniel Drakec6f0d752006-01-21 19:35:34 +00002172 Marvell Yukon 2 chipset:
2173 Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
2174 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
2175
Stephen Hemmingerf479b322006-10-27 10:22:10 -07002176 There is companion driver for the older Marvell Yukon and
2177 Genesis based adapters: skge.
Stephen Hemmingercd28ab62005-08-16 16:36:49 -07002178
2179 To compile this driver as a module, choose M here: the module
2180 will be called sky2. This is recommended.
2181
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002182config SKY2_DEBUG
2183 bool "Debugging interface"
2184 depends on SKY2 && DEBUG_FS
2185 help
2186 This option adds the ability to dump driver state for debugging.
2187 The file debugfs/sky2/ethX displays the state of the internal
2188 transmit and receive rings.
Daniel Drakec6f0d752006-01-21 19:35:34 +00002189
Stephen Hemminger3cf26752007-07-09 15:33:35 -07002190 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Stephen Hemminger5ad887f2007-09-15 19:35:14 -04002192config SK98LIN
2193 tristate "Marvell Yukon Chipset / SysKonnect SK-98xx Support (DEPRECATED)"
2194 depends on PCI
2195 ---help---
2196 Say Y here if you have a Marvell Yukon or SysKonnect SK-98xx/SK-95xx
2197 compliant Gigabit Ethernet Adapter.
2198
2199 This driver supports the original Yukon chipset. This driver is
2200 deprecated and will be removed from the kernel in the near future,
2201 it has been replaced by the skge driver. skge is cleaner and
2202 seems to work better.
2203
2204 This driver does not support the newer Yukon2 chipset. A separate
2205 driver, sky2, is provided to support Yukon2-based adapters.
2206
2207 The following adapters are supported by this driver:
2208 - 3Com 3C940 Gigabit LOM Ethernet Adapter
2209 - 3Com 3C941 Gigabit LOM Ethernet Adapter
2210 - Allied Telesyn AT-2970LX Gigabit Ethernet Adapter
2211 - Allied Telesyn AT-2970LX/2SC Gigabit Ethernet Adapter
2212 - Allied Telesyn AT-2970SX Gigabit Ethernet Adapter
2213 - Allied Telesyn AT-2970SX/2SC Gigabit Ethernet Adapter
2214 - Allied Telesyn AT-2970TX Gigabit Ethernet Adapter
2215 - Allied Telesyn AT-2970TX/2TX Gigabit Ethernet Adapter
2216 - Allied Telesyn AT-2971SX Gigabit Ethernet Adapter
2217 - Allied Telesyn AT-2971T Gigabit Ethernet Adapter
2218 - Belkin Gigabit Desktop Card 10/100/1000Base-T Adapter, Copper RJ-45
2219 - EG1032 v2 Instant Gigabit Network Adapter
2220 - EG1064 v2 Instant Gigabit Network Adapter
2221 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Abit)
2222 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Albatron)
2223 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Asus)
2224 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (ECS)
2225 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Epox)
2226 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Foxconn)
2227 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Gigabyte)
2228 - Marvell 88E8001 Gigabit LOM Ethernet Adapter (Iwill)
2229 - Marvell 88E8050 Gigabit LOM Ethernet Adapter (Intel)
2230 - Marvell RDK-8001 Adapter
2231 - Marvell RDK-8002 Adapter
2232 - Marvell RDK-8003 Adapter
2233 - Marvell RDK-8004 Adapter
2234 - Marvell RDK-8006 Adapter
2235 - Marvell RDK-8007 Adapter
2236 - Marvell RDK-8008 Adapter
2237 - Marvell RDK-8009 Adapter
2238 - Marvell RDK-8010 Adapter
2239 - Marvell RDK-8011 Adapter
2240 - Marvell RDK-8012 Adapter
2241 - Marvell RDK-8052 Adapter
2242 - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (32 bit)
2243 - Marvell Yukon Gigabit Ethernet 10/100/1000Base-T Adapter (64 bit)
2244 - N-Way PCI-Bus Giga-Card 1000/100/10Mbps(L)
2245 - SK-9521 10/100/1000Base-T Adapter
2246 - SK-9521 V2.0 10/100/1000Base-T Adapter
2247 - SK-9821 Gigabit Ethernet Server Adapter (SK-NET GE-T)
2248 - SK-9821 V2.0 Gigabit Ethernet 10/100/1000Base-T Adapter
2249 - SK-9822 Gigabit Ethernet Server Adapter (SK-NET GE-T dual link)
2250 - SK-9841 Gigabit Ethernet Server Adapter (SK-NET GE-LX)
2251 - SK-9841 V2.0 Gigabit Ethernet 1000Base-LX Adapter
2252 - SK-9842 Gigabit Ethernet Server Adapter (SK-NET GE-LX dual link)
2253 - SK-9843 Gigabit Ethernet Server Adapter (SK-NET GE-SX)
2254 - SK-9843 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2255 - SK-9844 Gigabit Ethernet Server Adapter (SK-NET GE-SX dual link)
2256 - SK-9851 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2257 - SK-9861 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition)
2258 - SK-9861 V2.0 Gigabit Ethernet 1000Base-SX Adapter
2259 - SK-9862 Gigabit Ethernet Server Adapter (SK-NET GE-SX Volition dual link)
2260 - SK-9871 Gigabit Ethernet Server Adapter (SK-NET GE-ZX)
2261 - SK-9871 V2.0 Gigabit Ethernet 1000Base-ZX Adapter
2262 - SK-9872 Gigabit Ethernet Server Adapter (SK-NET GE-ZX dual link)
2263 - SMC EZ Card 1000 (SMC9452TXV.2)
2264
2265 The adapters support Jumbo Frames.
2266 The dual link adapters support link-failover and dual port features.
2267 Both Marvell Yukon and SysKonnect SK-98xx/SK-95xx adapters support
2268 the scatter-gather functionality with sendfile(). Please refer to
2269 <file:Documentation/networking/sk98lin.txt> for more information about
2270 optional driver parameters.
2271 Questions concerning this driver may be addressed to:
2272 <linux@syskonnect.de>
2273
2274 If you want to compile this driver as a module ( = code which can be
2275 inserted in and removed from the running kernel whenever you want),
2276 say M here and read <file:Documentation/kbuild/modules.txt>. The module will
2277 be called sk98lin. This is recommended.
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279config VIA_VELOCITY
2280 tristate "VIA Velocity support"
Yoichi Yuasa73815532007-05-24 16:12:27 +09002281 depends on PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 select CRC32
2283 select CRC_CCITT
2284 select MII
2285 help
2286 If you have a VIA "Velocity" based network card say Y here.
2287
2288 To compile this driver as a module, choose M here. The module
2289 will be called via-velocity.
2290
2291config TIGON3
2292 tristate "Broadcom Tigon3 support"
2293 depends on PCI
2294 help
2295 This driver supports Broadcom Tigon3 based gigabit Ethernet cards.
2296
2297 To compile this driver as a module, choose M here: the module
2298 will be called tg3. This is recommended.
2299
Michael Chanb6016b72005-05-26 13:03:09 -07002300config BNX2
2301 tristate "Broadcom NetXtremeII support"
2302 depends on PCI
Michael Chanfba9fe92006-06-12 22:21:25 -07002303 select CRC32
2304 select ZLIB_INFLATE
Michael Chanb6016b72005-05-26 13:03:09 -07002305 help
2306 This driver supports Broadcom NetXtremeII gigabit Ethernet cards.
2307
2308 To compile this driver as a module, choose M here: the module
2309 will be called bnx2. This is recommended.
2310
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002311config SPIDER_NET
2312 tristate "Spider Gigabit Ethernet driver"
Kou Ishizaki3342cf0e2007-02-20 16:36:14 -06002313 depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
Christoph Hellwig9b158792006-03-15 11:30:44 +01002314 select FW_LOADER
Jens Osterkampaaec0fa2005-09-05 15:19:29 -07002315 help
2316 This driver supports the Gigabit Ethernet chips present on the
2317 Cell Processor-Based Blades from IBM.
2318
Zang Roy-r619115e123b82006-11-08 19:49:13 -08002319config TSI108_ETH
2320 tristate "Tundra TSI108 gigabit Ethernet support"
2321 depends on TSI108_BRIDGE
2322 help
2323 This driver supports Tundra TSI108 gigabit Ethernet ports.
2324 To compile this driver as a module, choose M here: the module
2325 will be called tsi108_eth.
2326
Masakazu Mokuno02c18892007-07-05 20:11:16 +09002327config GELIC_NET
2328 tristate "PS3 Gigabit Ethernet driver"
2329 depends on PPC_PS3
2330 help
2331 This driver supports the network device on the PS3 game
2332 console. This driver has built-in support for Ethernet.
2333
2334 To compile this driver as a module, choose M here: the
2335 module will be called ps3_gelic.
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337config GIANFAR
2338 tristate "Gianfar Ethernet"
Jon Loeligeref82a3062006-06-17 17:52:55 -05002339 depends on 85xx || 83xx || PPC_86xx
Andy Flemingbb40dcb2005-09-23 22:54:21 -04002340 select PHYLIB
Dave Jiangbf41a7c2007-04-12 10:57:06 -07002341 select CRC32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 help
Jon Loeligeref82a3062006-06-17 17:52:55 -05002343 This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
2344 and MPC86xx family of chips, and the FEC on the 8540.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346config GFAR_NAPI
2347 bool "NAPI Support"
2348 depends on GIANFAR
2349
Li Yangce973b12006-08-14 23:00:11 -07002350config UCC_GETH
Timur Tabi7d776cb2007-03-12 15:40:27 -05002351 tristate "Freescale QE Gigabit Ethernet"
2352 depends on QUICC_ENGINE
Jan Altenberg296baae2007-06-01 00:46:29 -07002353 select PHYLIB
Li Yangce973b12006-08-14 23:00:11 -07002354 help
Timur Tabi7d776cb2007-03-12 15:40:27 -05002355 This driver supports the Gigabit Ethernet mode of the QUICC Engine,
2356 which is available on some Freescale SOCs.
Li Yangce973b12006-08-14 23:00:11 -07002357
2358config UGETH_NAPI
2359 bool "NAPI Support"
2360 depends on UCC_GETH
2361
2362config UGETH_MAGIC_PACKET
2363 bool "Magic Packet detection support"
2364 depends on UCC_GETH
2365
2366config UGETH_FILTERING
2367 bool "Mac address filtering support"
2368 depends on UCC_GETH
2369
Michael Reissd5b90492007-04-13 01:26:19 -05002370config UGETH_TX_ON_DEMAND
2371 bool "Transmit on Demand support"
Li Yangce973b12006-08-14 23:00:11 -07002372 depends on UCC_GETH
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374config MV643XX_ETH
2375 tristate "MV-643XX Ethernet support"
Ralf Baechle688b3d72007-07-09 16:29:16 +01002376 depends on MV64360 || MV64X60 || (PPC_MULTIPLATFORM && PPC32)
Dale Farnsworthcd6478c2006-03-03 10:01:08 -07002377 select MII
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 help
2379 This driver supports the gigabit Ethernet on the Marvell MV643XX
2380 chipset which is used in the Momenco Ocelot C and Jaguar ATX and
2381 Pegasos II, amongst other PPC and MIPS boards.
2382
Ron Mercer5a4faa872006-07-25 00:40:21 -07002383config QLA3XXX
2384 tristate "QLogic QLA3XXX Network Driver Support"
2385 depends on PCI
2386 help
2387 This driver supports QLogic ISP3XXX gigabit Ethernet cards.
2388
2389 To compile this driver as a module, choose M here: the module
2390 will be called qla3xxx.
2391
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002392config ATL1
2393 tristate "Attansic L1 Gigabit Ethernet support (EXPERIMENTAL)"
Jay Cliburna1ca14b2007-02-14 20:12:13 -06002394 depends on PCI && EXPERIMENTAL
Jay Cliburnf3cc28c2007-02-08 10:42:37 -05002395 select CRC32
2396 select MII
2397 help
2398 This driver supports the Attansic L1 gigabit ethernet adapter.
2399
2400 To compile this driver as a module, choose M here. The module
2401 will be called atl1.
2402
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002403endif # NETDEV_1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
2405#
2406# 10 Gigabit Ethernet
2407#
2408
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002409menuconfig NETDEV_10000
2410 bool "Ethernet (10000 Mbit)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002411 depends on !UML
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002412 default y
Jan Engelhardt06bfb7e2007-08-18 12:56:21 +02002413 ---help---
2414 Say Y here to get to see options for 10 Gigabit Ethernet drivers.
2415 This option alone does not add any kernel code.
2416
2417 If you say N, all options in this submenu will be skipped and disabled.
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002418
2419if NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002421config CHELSIO_T1
2422 tristate "Chelsio 10Gb Ethernet support"
2423 depends on PCI
Stephen Hemminger57834ca2006-12-01 16:36:19 -08002424 select CRC32
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002425 help
Stephen Hemmingerf1d3d382006-12-01 16:36:16 -08002426 This driver supports Chelsio gigabit and 10-gigabit
2427 Ethernet cards. More information about adapter features and
2428 performance tuning is in <file:Documentation/networking/cxgb.txt>.
Christoph Lameter8199d3a2005-03-30 13:34:31 -08002429
2430 For general information about Chelsio and our products, visit
2431 our website at <http://www.chelsio.com>.
2432
2433 For customer support, please visit our customer support page at
2434 <http://www.chelsio.com/support.htm>.
2435
2436 Please send feedback to <linux-bugs@chelsio.com>.
2437
2438 To compile this driver as a module, choose M here: the module
2439 will be called cxgb.
2440
Stephen Hemminger352c4172006-12-01 16:36:17 -08002441config CHELSIO_T1_1G
2442 bool "Chelsio gigabit Ethernet support"
2443 depends on CHELSIO_T1
2444 help
2445 Enables support for Chelsio's gigabit Ethernet PCI cards. If you
2446 are using only 10G cards say 'N' here.
2447
Stephen Hemminger7fe26a62006-12-08 11:08:33 -08002448config CHELSIO_T1_NAPI
2449 bool "Use Rx Polling (NAPI)"
2450 depends on CHELSIO_T1
2451 default y
2452 help
2453 NAPI is a driver API designed to reduce CPU and interrupt load
2454 when the driver is receiving lots of packets from the card.
2455
Divy Le Ray4d22de32007-01-18 22:04:14 -05002456config CHELSIO_T3
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002457 tristate "Chelsio Communications T3 10Gb Ethernet support"
2458 depends on PCI
Divy Le Ray2e283962007-03-18 13:10:06 -07002459 select FW_LOADER
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002460 help
2461 This driver supports Chelsio T3-based gigabit and 10Gb Ethernet
2462 adapters.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002463
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002464 For general information about Chelsio and our products, visit
2465 our website at <http://www.chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002466
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002467 For customer support, please visit our customer support page at
2468 <http://www.chelsio.com/support.htm>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002469
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002470 Please send feedback to <linux-bugs@chelsio.com>.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002471
Divy Le Ray194c1fb2007-03-21 19:21:00 -07002472 To compile this driver as a module, choose M here: the module
2473 will be called cxgb3.
Divy Le Ray4d22de32007-01-18 22:04:14 -05002474
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002475config EHEA
2476 tristate "eHEA Ethernet support"
2477 depends on IBMEBUS
Jan-Bernd Themannd4dc4ec2007-09-25 16:16:34 -07002478 select INET_LRO
Jan-Bernd Themann7a291082006-09-13 17:44:31 +02002479 ---help---
2480 This driver supports the IBM pSeries eHEA ethernet adapter.
2481
2482 To compile the driver as a module, choose M here. The module
2483 will be called ehea.
2484
Auke Kok9a799d72007-09-15 14:07:45 -07002485config IXGBE
2486 tristate "Intel(R) 10GbE PCI Express adapters support"
2487 depends on PCI
2488 ---help---
2489 This driver supports Intel(R) 10GbE PCI Express family of
2490 adapters. For more information on how to identify your adapter, go
2491 to the Adapter & Driver ID Guide at:
2492
2493 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2494
2495 For general information and support, go to the Intel support
2496 website at:
2497
2498 <http://support.intel.com>
2499
2500 More specific information on configuring the driver is in
2501 <file:Documentation/networking/ixgbe.txt>.
2502
2503 To compile this driver as a module, choose M here and read
2504 <file:Documentation/networking/net-modules.txt>. The module
2505 will be called ixgbe.
2506
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507config IXGB
2508 tristate "Intel(R) PRO/10GbE support"
2509 depends on PCI
2510 ---help---
Auke Kok9a799d72007-09-15 14:07:45 -07002511 This driver supports Intel(R) PRO/10GbE family of adapters for
2512 PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
2513 instead. For more information on how to identify your adapter, go
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 to the Adapter & Driver ID Guide at:
2515
2516 <http://support.intel.com/support/network/adapter/pro100/21397.htm>
2517
2518 For general information and support, go to the Intel support
2519 website at:
2520
2521 <http://support.intel.com>
2522
2523 More specific information on configuring the driver is in
2524 <file:Documentation/networking/ixgb.txt>.
2525
2526 To compile this driver as a module, choose M here and read
2527 <file:Documentation/networking/net-modules.txt>. The module
2528 will be called ixgb.
2529
2530config IXGB_NAPI
2531 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2532 depends on IXGB && EXPERIMENTAL
2533 help
2534 NAPI is a new driver API designed to reduce CPU and interrupt load
2535 when the driver is receiving lots of packets from the card. It is
2536 still somewhat experimental and thus not yet enabled by default.
2537
2538 If your estimated Rx load is 10kpps or more, or if the card will be
2539 deployed on potentially unfriendly networks (e.g. in a firewall),
2540 then say Y here.
2541
2542 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2543 information.
2544
2545 If in doubt, say N.
2546
2547config S2IO
2548 tristate "S2IO 10Gbe XFrame NIC"
2549 depends on PCI
2550 ---help---
2551 This driver supports the 10Gbe XFrame NIC of S2IO.
Akinobu Mita9eb343a2005-10-21 19:06:42 +09002552 More specific information on configuring the driver is in
2553 <file:Documentation/networking/s2io.txt>.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554
2555config S2IO_NAPI
2556 bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
2557 depends on S2IO && EXPERIMENTAL
2558 help
2559 NAPI is a new driver API designed to reduce CPU and interrupt load
2560 when the driver is receiving lots of packets from the card. It is
2561 still somewhat experimental and thus not yet enabled by default.
2562
2563 If your estimated Rx load is 10kpps or more, or if the card will be
2564 deployed on potentially unfriendly networks (e.g. in a firewall),
2565 then say Y here.
2566
2567 See <file:Documentation/networking/NAPI_HOWTO.txt> for more
2568 information.
2569
2570 If in doubt, say N.
2571
Brice Goglin0da34b62006-05-23 06:10:15 -04002572config MYRI10GE
2573 tristate "Myricom Myri-10G Ethernet support"
2574 depends on PCI
2575 select FW_LOADER
2576 select CRC32
Andrew Gallatin1e6e9342007-09-17 11:37:42 -07002577 select INET_LRO
Brice Goglin0da34b62006-05-23 06:10:15 -04002578 ---help---
2579 This driver supports Myricom Myri-10G Dual Protocol interface in
2580 Ethernet mode. If the eeprom on your board is not recent enough,
2581 you will need a newer firmware image.
2582 You may get this image or more information, at:
2583
Brice Goglind2794902006-09-05 21:58:50 -04002584 <http://www.myri.com/scs/download-Myri10GE.html>
Brice Goglin0da34b62006-05-23 06:10:15 -04002585
2586 To compile this driver as a module, choose M here and read
2587 <file:Documentation/networking/net-modules.txt>. The module
2588 will be called myri10ge.
2589
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002590config NETXEN_NIC
2591 tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
Randy Dunlap5ac36612006-11-16 21:39:11 -08002592 depends on PCI
Amit S. Kale3d396eb2006-10-21 15:33:03 -04002593 help
2594 This enables the support for NetXen's Gigabit Ethernet card.
2595
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002596config PASEMI_MAC
2597 tristate "PA Semi 1/10Gbit MAC"
2598 depends on PPC64 && PCI
Olof Johanssonbb6e9592007-05-08 00:47:54 -05002599 select PHYLIB
Olof Johanssonf5cd7872007-01-31 21:43:54 -06002600 help
2601 This driver supports the on-chip 1/10Gbit Ethernet controller on
2602 PA Semi's PWRficient line of chips.
2603
Roland Dreier225c7b12007-05-08 18:00:38 -07002604config MLX4_CORE
2605 tristate
2606 depends on PCI
2607 default n
2608
2609config MLX4_DEBUG
2610 bool "Verbose debugging output" if (MLX4_CORE && EMBEDDED)
Paul Mundtf550d942007-05-10 12:50:28 +09002611 depends on MLX4_CORE
Roland Dreier225c7b12007-05-08 18:00:38 -07002612 default y
2613 ---help---
2614 This option causes debugging code to be compiled into the
2615 mlx4_core driver. The output can be turned on via the
2616 debug_level module parameter (which can also be set after
2617 the driver is loaded through sysfs).
2618
Andy Gospodarek1a348cc2007-09-17 18:50:36 -07002619config TEHUTI
2620 tristate "Tehuti Networks 10G Ethernet"
2621 depends on PCI
2622 help
2623 Tehuti Networks 10G Ethernet NIC
2624
Jan Engelhardtf30486d2007-05-10 22:52:56 -07002625endif # NETDEV_10000
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627source "drivers/net/tokenring/Kconfig"
2628
2629source "drivers/net/wireless/Kconfig"
2630
Jeff Garzik5b2fc492007-05-09 21:31:55 -04002631source "drivers/net/usb/Kconfig"
2632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633source "drivers/net/pcmcia/Kconfig"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635source "drivers/net/wan/Kconfig"
2636
2637source "drivers/atm/Kconfig"
2638
2639source "drivers/s390/net/Kconfig"
2640
Jeremy Fitzhardinge0d160212007-07-17 18:37:06 -07002641config XEN_NETDEV_FRONTEND
2642 tristate "Xen network device frontend driver"
2643 depends on XEN
2644 default y
2645 help
2646 The network device frontend driver allows the kernel to
2647 access network devices exported exported by a virtual
2648 machine containing a physical network device driver. The
2649 frontend driver is intended for unprivileged guest domains;
2650 if you are compiling a kernel for a Xen guest, you almost
2651 certainly want to enable this.
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653config ISERIES_VETH
2654 tristate "iSeries Virtual Ethernet driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002655 depends on PPC_ISERIES
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
Matt Porterf89efd52005-09-09 12:10:10 -07002657config RIONET
2658 tristate "RapidIO Ethernet over messaging driver support"
Randy Dunlapa81c52a2006-11-01 21:18:58 -08002659 depends on RAPIDIO
Matt Porterf89efd52005-09-09 12:10:10 -07002660
2661config RIONET_TX_SIZE
2662 int "Number of outbound queue entries"
2663 depends on RIONET
2664 default "128"
2665
2666config RIONET_RX_SIZE
2667 int "Number of inbound queue entries"
2668 depends on RIONET
2669 default "128"
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671config FDDI
2672 bool "FDDI driver support"
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002673 depends on (PCI || EISA || TC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 help
2675 Fiber Distributed Data Interface is a high speed local area network
2676 design; essentially a replacement for high speed Ethernet. FDDI can
2677 run over copper or fiber. If you are connected to such a network and
2678 want a driver for the FDDI card in your computer, say Y here (and
2679 then also Y to the driver for your FDDI card, below). Most people
2680 will say N.
2681
2682config DEFXX
Maciej W. Rozyckie89a2cf2007-02-05 16:28:27 -08002683 tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
2684 depends on FDDI && (PCI || EISA || TC)
2685 ---help---
2686 This is support for the DIGITAL series of TURBOchannel (DEFTA),
2687 EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
2688 to a local FDDI network.
2689
2690 To compile this driver as a module, choose M here: the module
2691 will be called defxx. If unsure, say N.
2692
2693config DEFXX_MMIO
2694 bool
2695 prompt "Use MMIO instead of PIO" if PCI || EISA
2696 depends on DEFXX
2697 default n if PCI || EISA
2698 default y
2699 ---help---
2700 This instructs the driver to use EISA or PCI memory-mapped I/O
2701 (MMIO) as appropriate instead of programmed I/O ports (PIO).
2702 Enabling this gives an improvement in processing time in parts
2703 of the driver, but it may cause problems with EISA (DEFEA)
2704 adapters. TURBOchannel does not have the concept of I/O ports,
2705 so MMIO is always used for these (DEFTA) adapters.
2706
2707 If unsure, say N.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
2709config SKFP
2710 tristate "SysKonnect FDDI PCI support"
2711 depends on FDDI && PCI
Akinobu Mitabc63eb92006-12-19 13:09:08 -08002712 select BITREVERSE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 ---help---
2714 Say Y here if you have a SysKonnect FDDI PCI adapter.
2715 The following adapters are supported by this driver:
2716 - SK-5521 (SK-NET FDDI-UP)
2717 - SK-5522 (SK-NET FDDI-UP DAS)
2718 - SK-5541 (SK-NET FDDI-FP)
2719 - SK-5543 (SK-NET FDDI-LP)
2720 - SK-5544 (SK-NET FDDI-LP DAS)
2721 - SK-5821 (SK-NET FDDI-UP64)
2722 - SK-5822 (SK-NET FDDI-UP64 DAS)
2723 - SK-5841 (SK-NET FDDI-FP64)
2724 - SK-5843 (SK-NET FDDI-LP64)
2725 - SK-5844 (SK-NET FDDI-LP64 DAS)
2726 - Netelligent 100 FDDI DAS Fibre SC
2727 - Netelligent 100 FDDI SAS Fibre SC
2728 - Netelligent 100 FDDI DAS UTP
2729 - Netelligent 100 FDDI SAS UTP
2730 - Netelligent 100 FDDI SAS Fibre MIC
2731
2732 Read <file:Documentation/networking/skfp.txt> for information about
2733 the driver.
2734
2735 Questions concerning this driver can be addressed to:
2736 <linux@syskonnect.de>
2737
2738 To compile this driver as a module, choose M here: the module
2739 will be called skfp. This is recommended.
2740
2741config HIPPI
2742 bool "HIPPI driver support (EXPERIMENTAL)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002743 depends on EXPERIMENTAL && INET && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 help
2745 HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
2746 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
2747 can run over copper (25m) or fiber (300m on multi-mode or 10km on
2748 single-mode). HIPPI networks are commonly used for clusters and to
2749 connect to super computers. If you are connected to a HIPPI network
2750 and have a HIPPI network card in your computer that you want to use
2751 under Linux, say Y here (you must also remember to enable the driver
2752 for your HIPPI card below). Most people will say N here.
2753
2754config ROADRUNNER
2755 tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
2756 depends on HIPPI && PCI
2757 help
2758 Say Y here if this is your PCI HIPPI network card.
2759
2760 To compile this driver as a module, choose M here: the module
2761 will be called rrunner. If unsure, say N.
2762
2763config ROADRUNNER_LARGE_RINGS
2764 bool "Use large TX/RX rings (EXPERIMENTAL)"
2765 depends on ROADRUNNER
2766 help
2767 If you say Y here, the RoadRunner driver will preallocate up to 2 MB
2768 of additional memory to allow for fastest operation, both for
2769 transmitting and receiving. This memory cannot be used by any other
2770 kernel code or by user space programs. Say Y here only if you have
2771 the memory.
2772
2773config PLIP
2774 tristate "PLIP (parallel port) support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07002775 depends on PARPORT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 ---help---
2777 PLIP (Parallel Line Internet Protocol) is used to create a
2778 reasonably fast mini network consisting of two (or, rarely, more)
2779 local machines. A PLIP link from a Linux box is a popular means to
2780 install a Linux distribution on a machine which doesn't have a
2781 CD-ROM drive (a minimal system has to be transferred with floppies
2782 first). The kernels on both machines need to have this PLIP option
2783 enabled for this to work.
2784
2785 The PLIP driver has two modes, mode 0 and mode 1. The parallel
2786 ports (the connectors at the computers with 25 holes) are connected
2787 with "null printer" or "Turbo Laplink" cables which can transmit 4
2788 bits at a time (mode 0) or with special PLIP cables, to be used on
2789 bidirectional parallel ports only, which can transmit 8 bits at a
2790 time (mode 1); you can find the wiring of these cables in
2791 <file:Documentation/networking/PLIP.txt>. The cables can be up to
2792 15m long. Mode 0 works also if one of the machines runs DOS/Windows
2793 and has some PLIP software installed, e.g. the Crynwr PLIP packet
2794 driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
2795 and winsock or NCSA's telnet.
2796
2797 If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
2798 as the NET-3-HOWTO, both available from
2799 <http://www.tldp.org/docs.html#howto>. Note that the PLIP
2800 protocol has been changed and this PLIP driver won't work together
2801 with the PLIP support in Linux versions 1.0.x. This option enlarges
2802 your kernel by about 8 KB.
2803
2804 To compile this driver as a module, choose M here and read
2805 <file:Documentation/networking/net-modules.txt>. The module will be
2806 called plip. If unsure, say Y or M, in case you buy a laptop
2807 later.
2808
2809config PPP
2810 tristate "PPP (point-to-point protocol) support"
Ralf Baechleb6e37e52006-07-14 12:15:40 +01002811 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 ---help---
2813 PPP (Point to Point Protocol) is a newer and better SLIP. It serves
2814 the same purpose: sending Internet traffic over telephone (and other
2815 serial) lines. Ask your access provider if they support it, because
2816 otherwise you can't use it; most Internet access providers these
2817 days support PPP rather than SLIP.
2818
2819 To use PPP, you need an additional program called pppd as described
2820 in the PPP-HOWTO, available at
2821 <http://www.tldp.org/docs.html#howto>. Make sure that you have
2822 the version of pppd recommended in <file:Documentation/Changes>.
2823 The PPP option enlarges your kernel by about 16 KB.
2824
2825 There are actually two versions of PPP: the traditional PPP for
2826 asynchronous lines, such as regular analog phone lines, and
2827 synchronous PPP which can be used over digital ISDN lines for
2828 example. If you want to use PPP over phone lines or other
2829 asynchronous serial lines, you need to say Y (or M) here and also to
2830 the next option, "PPP support for async serial ports". For PPP over
2831 synchronous lines, you should say Y (or M) here and to "Support
2832 synchronous PPP", below.
2833
2834 If you said Y to "Version information on all symbols" above, then
2835 you cannot compile the PPP driver into the kernel; you can then only
2836 compile it as a module. To compile this driver as a module, choose M
2837 here and read <file:Documentation/networking/net-modules.txt>.
2838 The module will be called ppp_generic.
2839
2840config PPP_MULTILINK
2841 bool "PPP multilink support (EXPERIMENTAL)"
2842 depends on PPP && EXPERIMENTAL
2843 help
2844 PPP multilink is a protocol (defined in RFC 1990) which allows you
2845 to combine several (logical or physical) lines into one logical PPP
2846 connection, so that you can utilize your full bandwidth.
2847
2848 This has to be supported at the other end as well and you need a
2849 version of the pppd daemon which understands the multilink protocol.
2850
2851 If unsure, say N.
2852
2853config PPP_FILTER
2854 bool "PPP filtering"
2855 depends on PPP
2856 help
2857 Say Y here if you want to be able to filter the packets passing over
2858 PPP interfaces. This allows you to control which packets count as
2859 activity (i.e. which packets will reset the idle timer or bring up
Jon Mason47c51432006-02-12 11:53:04 -06002860 a demand-dialed link) and which packets are to be dropped entirely.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 You need to say Y here if you wish to use the pass-filter and
2862 active-filter options to pppd.
2863
2864 If unsure, say N.
2865
2866config PPP_ASYNC
2867 tristate "PPP support for async serial ports"
2868 depends on PPP
2869 select CRC_CCITT
2870 ---help---
2871 Say Y (or M) here if you want to be able to use PPP over standard
2872 asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
2873 a modem (not a synchronous or ISDN modem) to contact your ISP, you
2874 need this option.
2875
2876 To compile this driver as a module, choose M here.
2877
2878 If unsure, say Y.
2879
2880config PPP_SYNC_TTY
2881 tristate "PPP support for sync tty ports"
2882 depends on PPP
2883 help
2884 Say Y (or M) here if you want to be able to use PPP over synchronous
2885 (HDLC) tty devices, such as the SyncLink adapter. These devices
2886 are often used for high-speed leased lines like T1/E1.
2887
2888 To compile this driver as a module, choose M here.
2889
2890config PPP_DEFLATE
2891 tristate "PPP Deflate compression"
2892 depends on PPP
2893 select ZLIB_INFLATE
2894 select ZLIB_DEFLATE
2895 ---help---
2896 Support for the Deflate compression method for PPP, which uses the
2897 Deflate algorithm (the same algorithm that gzip uses) to compress
2898 each PPP packet before it is sent over the wire. The machine at the
2899 other end of the PPP link (usually your ISP) has to support the
2900 Deflate compression method as well for this to be useful. Even if
2901 they don't support it, it is safe to say Y here.
2902
2903 To compile this driver as a module, choose M here.
2904
2905config PPP_BSDCOMP
2906 tristate "PPP BSD-Compress compression"
2907 depends on PPP
2908 ---help---
2909 Support for the BSD-Compress compression method for PPP, which uses
2910 the LZW compression method to compress each PPP packet before it is
2911 sent over the wire. The machine at the other end of the PPP link
2912 (usually your ISP) has to support the BSD-Compress compression
2913 method as well for this to be useful. Even if they don't support it,
2914 it is safe to say Y here.
2915
2916 The PPP Deflate compression method ("PPP Deflate compression",
2917 above) is preferable to BSD-Compress, because it compresses better
2918 and is patent-free.
2919
2920 Note that the BSD compression code will always be compiled as a
2921 module; it is called bsd_comp and will show up in the directory
2922 modules once you have said "make modules". If unsure, say N.
2923
Matt Domschb3f9b922005-11-08 09:40:47 -08002924config PPP_MPPE
2925 tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
2926 depends on PPP && EXPERIMENTAL
2927 select CRYPTO
2928 select CRYPTO_SHA1
2929 select CRYPTO_ARC4
Patrick McHardybcbaecb2006-10-25 16:49:36 +10002930 select CRYPTO_ECB
Matt Domschb3f9b922005-11-08 09:40:47 -08002931 ---help---
2932 Support for the MPPE Encryption protocol, as employed by the
2933 Microsoft Point-to-Point Tunneling Protocol.
2934
2935 See http://pptpclient.sourceforge.net/ for information on
2936 configuring PPTP clients and servers to utilize this method.
2937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938config PPPOE
2939 tristate "PPP over Ethernet (EXPERIMENTAL)"
2940 depends on EXPERIMENTAL && PPP
2941 help
2942 Support for PPP over Ethernet.
2943
2944 This driver requires the latest version of pppd from the CVS
2945 repository at cvs.samba.org. Alternatively, see the
2946 RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
2947 which contains instruction on how to use this driver (under
2948 the heading "Kernel mode PPPoE").
2949
2950config PPPOATM
2951 tristate "PPP over ATM"
2952 depends on ATM && PPP
2953 help
2954 Support PPP (Point to Point Protocol) encapsulated in ATM frames.
2955 This implementation does not yet comply with section 8 of RFC2364,
2956 which can lead to bad results if the ATM peer loses state and
2957 changes its encapsulation unilaterally.
2958
James Chapman3557baa2007-06-27 15:49:24 -07002959config PPPOL2TP
2960 tristate "PPP over L2TP (EXPERIMENTAL)"
James Chapman143cf352007-07-30 18:51:48 -07002961 depends on EXPERIMENTAL && PPP && INET
James Chapman3557baa2007-06-27 15:49:24 -07002962 help
2963 Support for PPP-over-L2TP socket family. L2TP is a protocol
2964 used by ISPs and enterprises to tunnel PPP traffic over UDP
2965 tunnels. L2TP is replacing PPTP for VPN uses.
2966
2967 This kernel component handles only L2TP data packets: a
2968 userland daemon handles L2TP the control protocol (tunnel
2969 and session setup). One such daemon is OpenL2TP
2970 (http://openl2tp.sourceforge.net/).
2971
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972config SLIP
2973 tristate "SLIP (serial line) support"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 ---help---
2975 Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
2976 connect to your Internet service provider or to connect to some
2977 other local Unix box or if you want to configure your Linux box as a
2978 Slip/CSlip server for other people to dial in. SLIP (Serial Line
2979 Internet Protocol) is a protocol used to send Internet traffic over
2980 serial connections such as telephone lines or null modem cables;
2981 nowadays, the protocol PPP is more commonly used for this same
2982 purpose.
2983
2984 Normally, your access provider has to support SLIP in order for you
2985 to be able to use it, but there is now a SLIP emulator called SLiRP
2986 around (available from
2987 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
2988 allows you to use SLIP over a regular dial up shell connection. If
2989 you plan to use SLiRP, make sure to say Y to CSLIP, below. The
2990 NET-3-HOWTO, available from
2991 <http://www.tldp.org/docs.html#howto>, explains how to
2992 configure SLIP. Note that you don't need this option if you just
2993 want to run term (term is a program which gives you almost full
2994 Internet connectivity if you have a regular dial up shell account on
2995 some Internet connected Unix computer. Read
2996 <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
2997 support will enlarge your kernel by about 4 KB. If unsure, say N.
2998
2999 To compile this driver as a module, choose M here and read
3000 <file:Documentation/networking/net-modules.txt>. The module will be
3001 called slip.
3002
3003config SLIP_COMPRESSED
3004 bool "CSLIP compressed headers"
3005 depends on SLIP
Ralf Baechleb6e37e52006-07-14 12:15:40 +01003006 select SLHC
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 ---help---
3008 This protocol is faster than SLIP because it uses compression on the
3009 TCP/IP headers (not on the data itself), but it has to be supported
3010 on both ends. Ask your access provider if you are not sure and
3011 answer Y, just in case. You will still be able to use plain SLIP. If
3012 you plan to use SLiRP, the SLIP emulator (available from
3013 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
3014 allows you to use SLIP over a regular dial up shell connection, you
3015 definitely want to say Y here. The NET-3-HOWTO, available from
3016 <http://www.tldp.org/docs.html#howto>, explains how to configure
3017 CSLIP. This won't enlarge your kernel.
3018
Ralf Baechleb6e37e52006-07-14 12:15:40 +01003019config SLHC
3020 tristate
3021 help
3022 This option enables Van Jacobsen serial line header compression
3023 routines.
3024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025config SLIP_SMART
3026 bool "Keepalive and linefill"
3027 depends on SLIP
3028 help
3029 Adds additional capabilities to the SLIP driver to support the
3030 RELCOM line fill and keepalive monitoring. Ideal on poor quality
3031 analogue lines.
3032
3033config SLIP_MODE_SLIP6
3034 bool "Six bit SLIP encapsulation"
3035 depends on SLIP
3036 help
3037 Just occasionally you may need to run IP over hostile serial
3038 networks that don't pass all control characters or are only seven
3039 bit. Saying Y here adds an extra mode you can use with SLIP:
3040 "slip6". In this mode, SLIP will only send normal ASCII symbols over
3041 the serial device. Naturally, this has to be supported at the other
3042 end of the link as well. It's good enough, for example, to run IP
3043 over the async ports of a Camtec JNT Pad. If unsure, say N.
3044
3045config NET_FC
3046 bool "Fibre Channel driver support"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07003047 depends on SCSI && PCI
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 help
3049 Fibre Channel is a high speed serial protocol mainly used to connect
3050 large storage devices to the computer; it is compatible with and
3051 intended to replace SCSI.
3052
3053 If you intend to use Fibre Channel, you need to have a Fibre channel
3054 adaptor card in your computer; say Y here and to the driver for your
3055 adaptor below. You also should have said Y to "SCSI support" and
3056 "SCSI generic support".
3057
3058config SHAPER
Jiri Slaby3b6a7922006-11-06 14:34:48 -08003059 tristate "Traffic Shaper (OBSOLETE)"
Randy Dunlapcbcd2a42005-07-27 13:04:35 -07003060 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 ---help---
3062 The traffic shaper is a virtual network device that allows you to
3063 limit the rate of outgoing data flow over some other network device.
3064 The traffic that you want to slow down can then be routed through
3065 these virtual devices. See
3066 <file:Documentation/networking/shaper.txt> for more information.
3067
Jiri Slaby3b6a7922006-11-06 14:34:48 -08003068 An alternative to this traffic shaper are traffic schedulers which
3069 you'll get if you say Y to "QoS and/or fair queuing" in
3070 "Networking options".
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 To compile this driver as a module, choose M here: the module
3073 will be called shaper. If unsure, say N.
3074
3075config NETCONSOLE
3076 tristate "Network console logging support (EXPERIMENTAL)"
Matt Mackall5e43db72005-07-27 15:24:42 -07003077 depends on EXPERIMENTAL
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 ---help---
3079 If you want to log kernel messages over the network, enable this.
3080 See <file:Documentation/networking/netconsole.txt> for details.
3081
Satyam Sharma0bcc1812007-08-10 15:35:05 -07003082config NETCONSOLE_DYNAMIC
3083 bool "Dynamic reconfiguration of logging targets (EXPERIMENTAL)"
3084 depends on NETCONSOLE && SYSFS && EXPERIMENTAL
3085 select CONFIGFS_FS
3086 help
3087 This option enables the ability to dynamically reconfigure target
3088 parameters (interface, IP addresses, port numbers, MAC addresses)
3089 at runtime through a userspace interface exported using configfs.
3090 See <file:Documentation/networking/netconsole.txt> for details.
3091
Randy Dunlap54208992005-07-18 13:45:12 -07003092config NETPOLL
3093 def_bool NETCONSOLE
3094
Randy Dunlap54208992005-07-18 13:45:12 -07003095config NETPOLL_TRAP
3096 bool "Netpoll traffic trapping"
3097 default n
3098 depends on NETPOLL
3099
3100config NET_POLL_CONTROLLER
3101 def_bool NETPOLL
3102
Jan Engelhardtd1c0a652007-06-13 12:48:53 -07003103endif # NETDEVICES