seeq: Move the SEEQ drivers
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / Kconfig
blob696464cb0a93542f727fb28e771428985ac75aca
2 # Network device configuration
5 config HAVE_NET_MACB
6         bool
8 menuconfig NETDEVICES
9         default y if UML
10         depends on NET
11         bool "Network device support"
12         ---help---
13           You can say N here if you don't intend to connect your Linux box to
14           any other computer at all.
16           You'll have to say Y if your computer contains a network card that
17           you want to use under Linux. If you are going to run SLIP or PPP over
18           telephone line or null modem cable you need say Y here. Connecting
19           two machines with parallel ports using PLIP needs this, as well as
20           AX.25/KISS for sending Internet traffic over amateur radio links.
22           See also "The Linux Network Administrator's Guide" by Olaf Kirch and
23           Terry Dawson. Available at <http://www.tldp.org/guides.html>.
25           If unsure, say Y.
27 # All the following symbols are dependent on NETDEVICES - do not repeat
28 # that for each of the symbols.
29 if NETDEVICES
31 config IFB
32         tristate "Intermediate Functional Block support"
33         depends on NET_CLS_ACT
34         ---help---
35           This is an intermediate driver that allows sharing of
36           resources.
37           To compile this driver as a module, choose M here: the module
38           will be called ifb.  If you want to use more than one ifb
39           device at a time, you need to compile this driver as a module.
40           Instead of 'ifb', the devices will then be called 'ifb0',
41           'ifb1' etc.
42           Look at the iproute2 documentation directory for usage etc
44 config DUMMY
45         tristate "Dummy net driver support"
46         ---help---
47           This is essentially a bit-bucket device (i.e. traffic you send to
48           this device is consigned into oblivion) with a configurable IP
49           address. It is most commonly used in order to make your currently
50           inactive SLIP address seem like a real address for local programs.
51           If you use SLIP or PPP, you might want to say Y here. Since this
52           thing often comes in handy, the default is Y. It won't enlarge your
53           kernel either. What a deal. Read about it in the Network
54           Administrator's Guide, available from
55           <http://www.tldp.org/docs.html#guide>.
57           To compile this driver as a module, choose M here: the module
58           will be called dummy.  If you want to use more than one dummy
59           device at a time, you need to compile this driver as a module.
60           Instead of 'dummy', the devices will then be called 'dummy0',
61           'dummy1' etc.
63 config BONDING
64         tristate "Bonding driver support"
65         depends on INET
66         depends on IPV6 || IPV6=n
67         ---help---
68           Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
69           Channels together. This is called 'Etherchannel' by Cisco,
70           'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
72           The driver supports multiple bonding modes to allow for both high
73           performance and high availability operation.
75           Refer to <file:Documentation/networking/bonding.txt> for more
76           information.
78           To compile this driver as a module, choose M here: the module
79           will be called bonding.
81 config MACVLAN
82         tristate "MAC-VLAN support (EXPERIMENTAL)"
83         depends on EXPERIMENTAL
84         ---help---
85           This allows one to create virtual interfaces that map packets to
86           or from specific MAC addresses to a particular interface.
88           Macvlan devices can be added using the "ip" command from the
89           iproute2 package starting with the iproute2-2.6.23 release:
91           "ip link add link <real dev> [ address MAC ] [ NAME ] type macvlan"
93           To compile this driver as a module, choose M here: the module
94           will be called macvlan.
96 config MACVTAP
97         tristate "MAC-VLAN based tap driver (EXPERIMENTAL)"
98         depends on MACVLAN
99         help
100           This adds a specialized tap character device driver that is based
101           on the MAC-VLAN network interface, called macvtap. A macvtap device
102           can be added in the same way as a macvlan device, using 'type
103           macvlan', and then be accessed through the tap user space interface.
105           To compile this driver as a module, choose M here: the module
106           will be called macvtap.
108 config EQUALIZER
109         tristate "EQL (serial line load balancing) support"
110         ---help---
111           If you have two serial connections to some other computer (this
112           usually requires two modems and two telephone lines) and you use
113           SLIP (the protocol for sending Internet traffic over telephone
114           lines) or PPP (a better SLIP) on them, you can make them behave like
115           one double speed connection using this driver.  Naturally, this has
116           to be supported at the other end as well, either with a similar EQL
117           Linux driver or with a Livingston Portmaster 2e.
119           Say Y if you want this and read
120           <file:Documentation/networking/eql.txt>.  You may also want to read
121           section 6.2 of the NET-3-HOWTO, available from
122           <http://www.tldp.org/docs.html#howto>.
124           To compile this driver as a module, choose M here: the module
125           will be called eql.  If unsure, say N.
127 config TUN
128         tristate "Universal TUN/TAP device driver support"
129         select CRC32
130         ---help---
131           TUN/TAP provides packet reception and transmission for user space
132           programs.  It can be viewed as a simple Point-to-Point or Ethernet
133           device, which instead of receiving packets from a physical media,
134           receives them from user space program and instead of sending packets
135           via physical media writes them to the user space program.
137           When a program opens /dev/net/tun, driver creates and registers
138           corresponding net device tunX or tapX.  After a program closed above
139           devices, driver will automatically delete tunXX or tapXX device and
140           all routes corresponding to it.
142           Please read <file:Documentation/networking/tuntap.txt> for more
143           information.
145           To compile this driver as a module, choose M here: the module
146           will be called tun.
148           If you don't know what to use this for, you don't need it.
150 config VETH
151         tristate "Virtual ethernet pair device"
152         ---help---
153           This device is a local ethernet tunnel. Devices are created in pairs.
154           When one end receives the packet it appears on its pair and vice
155           versa.
157 config NET_SB1000
158         tristate "General Instruments Surfboard 1000"
159         depends on PNP
160         ---help---
161           This is a driver for the General Instrument (also known as
162           NextLevel) SURFboard 1000 internal
163           cable modem. This is an ISA card which is used by a number of cable
164           TV companies to provide cable modem access. It's a one-way
165           downstream-only cable modem, meaning that your upstream net link is
166           provided by your regular phone modem.
168           At present this driver only compiles as a module, so say M here if
169           you have this card. The module will be called sb1000. Then read
170           <file:Documentation/networking/README.sb1000> for information on how
171           to use this module, as it needs special ppp scripts for establishing
172           a connection. Further documentation and the necessary scripts can be
173           found at:
175           <http://www.jacksonville.net/~fventuri/>
176           <http://home.adelphia.net/~siglercm/sb1000.html>
177           <http://linuxpower.cx/~cable/>
179           If you don't have this card, of course say N.
181 source "drivers/net/arcnet/Kconfig"
183 config MII
184         tristate "Generic Media Independent Interface device support"
185         help
186           Most ethernet controllers have MII transceiver either as an external
187           or internal device.  It is safe to say Y or M here even if your
188           ethernet card lacks MII.
190 source "drivers/net/phy/Kconfig"
193 #       Ethernet
196 source "drivers/net/ethernet/Kconfig"
198 menuconfig NET_ETHERNET
199         bool "Ethernet (10 or 100Mbit)"
200         depends on !UML
201         ---help---
202           Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
203           type of Local Area Network (LAN) in universities and companies.
205           Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
206           coaxial cable, linking computers in a chain), 10BASE-T or twisted
207           pair (10 Mbps over twisted pair cable, linking computers to central
208           hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
209           100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
210           100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
211           cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
212           [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
213           Ethernet (1 Gbps over optical fiber or short copper links).
215           If your Linux machine will be connected to an Ethernet and you have
216           an Ethernet network interface card (NIC) installed in your computer,
217           say Y here and read the Ethernet-HOWTO, available from
218           <http://www.tldp.org/docs.html#howto>. You will then also have
219           to say Y to the driver for your particular NIC.
221           Note that the answer to this question won't directly affect the
222           kernel: saying N will just cause the configurator to skip all
223           the questions about Ethernet network cards. If unsure, say N.
225 if NET_ETHERNET
227 config MACB
228         tristate "Atmel MACB support"
229         depends on HAVE_NET_MACB
230         select PHYLIB
231         help
232           The Atmel MACB ethernet interface is found on many AT32 and AT91
233           parts. Say Y to include support for the MACB chip.
235           To compile this driver as a module, choose M here: the module
236           will be called macb.
238 source "drivers/net/arm/Kconfig"
240 config KORINA
241         tristate "Korina (IDT RC32434) Ethernet support"
242         depends on NET_ETHERNET && MIKROTIK_RB532
243         help
244           If you have a Mikrotik RouterBoard 500 or IDT RC32434
245           based system say Y. Otherwise say N.
247 config MIPS_SIM_NET
248         tristate "MIPS simulator Network device"
249         depends on MIPS_SIM
250         help
251           The MIPSNET device is a simple Ethernet network device which is
252           emulated by the MIPS Simulator.
253           If you are not using a MIPSsim or are unsure, say N.
255 config SH_ETH
256         tristate "Renesas SuperH Ethernet support"
257         depends on SUPERH && \
258                 (CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || \
259                  CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7619 || \
260                  CPU_SUBTYPE_SH7724 || CPU_SUBTYPE_SH7757)
261         select CRC32
262         select MII
263         select MDIO_BITBANG
264         select PHYLIB
265         help
266           Renesas SuperH Ethernet device driver.
267           This driver supporting CPUs are:
268                 - SH7710, SH7712, SH7763, SH7619, SH7724, and SH7757.
270 config BFIN_MAC
271         tristate "Blackfin on-chip MAC support"
272         depends on NET_ETHERNET && (BF516 || BF518 || BF526 || BF527 || BF536 || BF537)
273         select CRC32
274         select MII
275         select PHYLIB
276         select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE
277         help
278           This is the driver for Blackfin on-chip mac device. Say Y if you want it
279           compiled into the kernel. This driver is also available as a module
280           ( = code which can be inserted in and removed from the running kernel
281           whenever you want). The module will be called bfin_mac.
283 config BFIN_MAC_USE_L1
284         bool "Use L1 memory for rx/tx packets"
285         depends on BFIN_MAC && (BF527 || BF537)
286         default y
287         help
288           To get maximum network performance, you should use L1 memory as rx/tx buffers.
289           Say N here if you want to reserve L1 memory for other uses.
291 config BFIN_TX_DESC_NUM
292         int "Number of transmit buffer packets"
293         depends on BFIN_MAC
294         range 6 10 if BFIN_MAC_USE_L1
295         range 10 100
296         default "10"
297         help
298           Set the number of buffer packets used in driver.
300 config BFIN_RX_DESC_NUM
301         int "Number of receive buffer packets"
302         depends on BFIN_MAC
303         range 20 100 if BFIN_MAC_USE_L1
304         range 20 800
305         default "20"
306         help
307           Set the number of buffer packets used in driver.
309 config BFIN_MAC_USE_HWSTAMP
310         bool "Use IEEE 1588 hwstamp"
311         depends on BFIN_MAC && BF518
312         default y
313         help
314           To support the IEEE 1588 Precision Time Protocol (PTP), select y here
316 config PXA168_ETH
317         tristate "Marvell pxa168 ethernet support"
318         depends on CPU_PXA168
319         select PHYLIB
320         help
321           This driver supports the pxa168 Ethernet ports.
323           To compile this driver as a module, choose M here. The module
324           will be called pxa168_eth.
326 config NET_NETX
327         tristate "NetX Ethernet support"
328         select MII
329         depends on ARCH_NETX
330         help
331           This is support for the Hilscher netX builtin Ethernet ports
333           To compile this driver as a module, choose M here. The module
334           will be called netx-eth.
336 config TI_DAVINCI_EMAC
337         tristate "TI DaVinci EMAC Support"
338         depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
339         select TI_DAVINCI_MDIO
340         select TI_DAVINCI_CPDMA
341         select PHYLIB
342         help
343           This driver supports TI's DaVinci Ethernet .
345           To compile this driver as a module, choose M here: the module
346           will be called davinci_emac_driver.  This is recommended.
348 config TI_DAVINCI_MDIO
349         tristate "TI DaVinci MDIO Support"
350         depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
351         select PHYLIB
352         help
353           This driver supports TI's DaVinci MDIO module.
355           To compile this driver as a module, choose M here: the module
356           will be called davinci_mdio.  This is recommended.
358 config TI_DAVINCI_CPDMA
359         tristate "TI DaVinci CPDMA Support"
360         depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
361         help
362           This driver supports TI's DaVinci CPDMA dma engine.
364           To compile this driver as a module, choose M here: the module
365           will be called davinci_cpdma.  This is recommended.
367 config DM9000
368         tristate "DM9000 support"
369         depends on ARM || BLACKFIN || MIPS
370         select CRC32
371         select MII
372         ---help---
373           Support for DM9000 chipset.
375           To compile this driver as a module, choose M here.  The module
376           will be called dm9000.
378 config DM9000_DEBUGLEVEL
379         int "DM9000 maximum debug level"
380         depends on DM9000
381         default 4
382         help
383           The maximum level of debugging code compiled into the DM9000
384           driver.
386 config DM9000_FORCE_SIMPLE_PHY_POLL
387         bool "Force simple NSR based PHY polling"
388         depends on DM9000
389         ---help---
390           This configuration forces the DM9000 to use the NSR's LinkStatus
391           bit to determine if the link is up or down instead of the more
392           costly MII PHY reads. Note, this will not work if the chip is
393           operating with an external PHY.
395 config ENC28J60
396         tristate "ENC28J60 support"
397         depends on EXPERIMENTAL && SPI && NET_ETHERNET
398         select CRC32
399         ---help---
400           Support for the Microchip EN28J60 ethernet chip.
402           To compile this driver as a module, choose M here. The module will be
403           called enc28j60.
405 config ENC28J60_WRITEVERIFY
406         bool "Enable write verify"
407         depends on ENC28J60
408         ---help---
409           Enable the verify after the buffer write useful for debugging purpose.
410           If unsure, say N.
412 config ETHOC
413         tristate "OpenCores 10/100 Mbps Ethernet MAC support"
414         depends on NET_ETHERNET && HAS_IOMEM && HAS_DMA
415         select MII
416         select PHYLIB
417         select CRC32
418         select BITREVERSE
419         help
420           Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC.
422 config GRETH
423         tristate "Aeroflex Gaisler GRETH Ethernet MAC support"
424         depends on SPARC
425         select PHYLIB
426         select CRC32
427         help
428           Say Y here if you want to use the Aeroflex Gaisler GRETH Ethernet MAC.
430 config DNET
431         tristate "Dave ethernet support (DNET)"
432         depends on NET_ETHERNET && HAS_IOMEM
433         select PHYLIB
434         help
435           The Dave ethernet interface (DNET) is found on Qong Board FPGA.
436           Say Y to include support for the DNET chip.
438           To compile this driver as a module, choose M here: the module
439           will be called dnet.
441 config AT1700
442         tristate "AT1700/1720 support (EXPERIMENTAL)"
443         depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
444         select CRC32
445         ---help---
446           If you have a network (Ethernet) card of this type, say Y and read
447           the Ethernet-HOWTO, available from
448           <http://www.tldp.org/docs.html#howto>.
450           To compile this driver as a module, choose M here. The module
451           will be called at1700.
453 config HP100
454         tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
455         depends on ISA || EISA || PCI
456         help
457           If you have a network (Ethernet) card of this type, say Y and read
458           the Ethernet-HOWTO, available from
459           <http://www.tldp.org/docs.html#howto>.
461           To compile this driver as a module, choose M here. The module
462           will be called hp100.
464 config NET_ISA
465         bool "Other ISA cards"
466         depends on ISA
467         ---help---
468           If your network (Ethernet) card hasn't been mentioned yet and its
469           bus system (that's the way the cards talks to the other components
470           of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
471           Make sure you know the name of your card. Read the Ethernet-HOWTO,
472           available from <http://www.tldp.org/docs.html#howto>.
474           If unsure, say Y.
476           Note that the answer to this question doesn't directly affect the
477           kernel: saying N will just cause the configurator to skip all
478           the remaining ISA network card questions. If you say Y, you will be
479           asked for your specific card in the following questions.
481 config ETH16I
482         tristate "ICL EtherTeam 16i/32 support"
483         depends on NET_ISA
484         help
485           If you have a network (Ethernet) card of this type, say Y and read
486           the Ethernet-HOWTO, available from
487           <http://www.tldp.org/docs.html#howto>.
489           To compile this driver as a module, choose M here. The module
490           will be called eth16i.
492 config NET_PCI
493         bool "EISA, VLB, PCI and on board controllers"
494         depends on ISA || EISA || PCI
495         help
496           This is another class of network cards which attach directly to the
497           bus. If you have one of those, say Y and read the Ethernet-HOWTO,
498           available from <http://www.tldp.org/docs.html#howto>.
500           Note that the answer to this question doesn't directly affect the
501           kernel: saying N will just cause the configurator to skip all
502           the questions about this class of network cards. If you say Y, you
503           will be asked for your specific card in the following questions. If
504           you are unsure, say Y.
506 config ADAPTEC_STARFIRE
507         tristate "Adaptec Starfire/DuraLAN support"
508         depends on NET_PCI && PCI
509         select CRC32
510         select MII
511         help
512           Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
513           adapter. The DuraLAN chip is used on the 64 bit PCI boards from
514           Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
515           driver.
517           To compile this driver as a module, choose M here: the module
518           will be called starfire.  This is recommended.
520 config KSZ884X_PCI
521         tristate "Micrel KSZ8841/2 PCI"
522         depends on NET_PCI && PCI
523         select MII
524         select CRC32
525         help
526           This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
528           To compile this driver as a module, choose M here. The module
529           will be called ksz884x.
531 config FORCEDETH
532         tristate "nForce Ethernet support"
533         depends on NET_PCI && PCI
534         help
535           If you have a network (Ethernet) controller of this type, say Y and
536           read the Ethernet-HOWTO, available from
537           <http://www.tldp.org/docs.html#howto>.
539           To compile this driver as a module, choose M here. The module
540           will be called forcedeth.
542 config TC35815
543         tristate "TOSHIBA TC35815 Ethernet support"
544         depends on NET_PCI && PCI && MIPS
545         select PHYLIB
547 config FEALNX
548         tristate "Myson MTD-8xx PCI Ethernet support"
549         depends on NET_PCI && PCI
550         select CRC32
551         select MII
552         help
553           Say Y here to support the Myson MTD-800 family of PCI-based Ethernet 
554           cards. <http://www.myson.com.tw/>
556 config R6040
557         tristate "RDC R6040 Fast Ethernet Adapter support"
558         depends on NET_PCI && PCI
559         select CRC32
560         select MII
561         select PHYLIB
562         help
563           This is a driver for the R6040 Fast Ethernet MACs found in the
564           the RDC R-321x System-on-chips.
566           To compile this driver as a module, choose M here: the module
567           will be called r6040. This is recommended.
569 config SIS900
570         tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
571         depends on NET_PCI && PCI
572         select CRC32
573         select MII
574         ---help---
575           This is a driver for the Fast Ethernet PCI network cards based on
576           the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
577           SiS 630 and SiS 540 chipsets.
579           This driver also supports AMD 79C901 HomePNA so that you can use
580           your phone line as a network cable.
582           To compile this driver as a module, choose M here: the module
583           will be called sis900.  This is recommended.
585 config TLAN
586         tristate "TI ThunderLAN support"
587         depends on NET_PCI && (PCI || EISA)
588         ---help---
589           If you have a PCI Ethernet network card based on the ThunderLAN chip
590           which is supported by this driver, say Y and read the
591           Ethernet-HOWTO, available from
592           <http://www.tldp.org/docs.html#howto>.
594           Devices currently supported by this driver are Compaq Netelligent,
595           Compaq NetFlex and Olicom cards.  Please read the file
596           <file:Documentation/networking/tlan.txt> for more details.
598           To compile this driver as a module, choose M here. The module
599           will be called tlan.
601           Please email feedback to <torben.mathiasen@compaq.com>.
603 config KS8842
604         tristate "Micrel KSZ8841/42 with generic bus interface"
605         depends on HAS_IOMEM && DMA_ENGINE
606         help
607           This platform driver is for KSZ8841(1-port) / KS8842(2-port)
608           ethernet switch chip (managed, VLAN, QoS) from Micrel or
609           Timberdale(FPGA).
611 config KS8851
612         tristate "Micrel KS8851 SPI"
613         depends on SPI
614         select MII
615         select CRC32
616         help
617           SPI driver for Micrel KS8851 SPI attached network chip.
619 config KS8851_MLL
620         tristate "Micrel KS8851 MLL"
621         depends on HAS_IOMEM
622         select MII
623         help
624           This platform driver is for Micrel KS8851 Address/data bus
625           multiplexed network chip.
627 config VIA_RHINE
628         tristate "VIA Rhine support"
629         depends on NET_PCI && PCI
630         select CRC32
631         select MII
632         help
633           If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
634           Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
635           Ethernet functions can also be found integrated on South Bridges
636           (e.g. VT8235).
638           To compile this driver as a module, choose M here. The module
639           will be called via-rhine.
641 config VIA_RHINE_MMIO
642         bool "Use MMIO instead of PIO"
643         depends on VIA_RHINE
644         help
645           This instructs the driver to use PCI shared memory (MMIO) instead of
646           programmed I/O ports (PIO). Enabling this gives an improvement in
647           processing time in parts of the driver.
649           If unsure, say Y.
651 config CPMAC
652         tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)"
653         depends on NET_ETHERNET && EXPERIMENTAL && AR7
654         select PHYLIB
655         help
656           TI AR7 CPMAC Ethernet support
658 config NET_POCKET
659         bool "Pocket and portable adapters"
660         depends on PARPORT
661         ---help---
662           Cute little network (Ethernet) devices which attach to the parallel
663           port ("pocket adapters"), commonly used with laptops. If you have
664           one of those, say Y and read the Ethernet-HOWTO, available from
665           <http://www.tldp.org/docs.html#howto>.
667           If you want to plug a network (or some other) card into the PCMCIA
668           (or PC-card) slot of your laptop instead (PCMCIA is the standard for
669           credit card size extension cards used by all modern laptops), you
670           need the pcmcia-cs package (location contained in the file
671           <file:Documentation/Changes>) and you can say N here.
673           Laptop users should read the Linux Laptop home page at
674           <http://www.linux-on-laptops.com/> or
675           Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
677           Note that the answer to this question doesn't directly affect the
678           kernel: saying N will just cause the configurator to skip all
679           the questions about this class of network devices. If you say Y, you
680           will be asked for your specific device in the following questions.
682 config FEC
683         bool "FEC ethernet controller (of ColdFire and some i.MX CPUs)"
684         depends on M523x || M527x || M5272 || M528x || M520x || M532x || \
685                 IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC
686         default IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC if ARM
687         select PHYLIB
688         help
689           Say Y here if you want to use the built-in 10/100 Fast ethernet
690           controller on some Motorola ColdFire and Freescale i.MX processors.
692 config FEC_MPC52xx
693         tristate "MPC52xx FEC driver"
694         depends on PPC_MPC52xx && PPC_BESTCOMM
695         select CRC32
696         select PHYLIB
697         select PPC_BESTCOMM_FEC
698         ---help---
699           This option enables support for the MPC5200's on-chip
700           Fast Ethernet Controller
701           If compiled as module, it will be called fec_mpc52xx.
703 config FEC_MPC52xx_MDIO
704         bool "MPC52xx FEC MDIO bus driver"
705         depends on FEC_MPC52xx
706         default y
707         ---help---
708           The MPC5200's FEC can connect to the Ethernet either with
709           an external MII PHY chip or 10 Mbps 7-wire interface
710           (Motorola? industry standard).
711           If your board uses an external PHY connected to FEC, enable this.
712           If not sure, enable.
713           If compiled as module, it will be called fec_mpc52xx_phy.
715 config XILINX_EMACLITE
716         tristate "Xilinx 10/100 Ethernet Lite support"
717         depends on PPC32 || MICROBLAZE
718         select PHYLIB
719         help
720           This driver supports the 10/100 Ethernet Lite from Xilinx.
722 config LANTIQ_ETOP
723         tristate "Lantiq SoC ETOP driver"
724         depends on SOC_TYPE_XWAY
725         help
726           Support for the MII0 inside the Lantiq SoC
729 source "drivers/net/fs_enet/Kconfig"
731 source "drivers/net/octeon/Kconfig"
733 endif # NET_ETHERNET
736 #       Gigabit Ethernet
739 menuconfig NETDEV_1000
740         bool "Ethernet (1000 Mbit)"
741         depends on !UML
742         default y
743         ---help---
744           Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
745           type of Local Area Network (LAN) in universities and companies.
747           Say Y here to get to see options for Gigabit Ethernet drivers.
748           This option alone does not add any kernel code.
749           Note that drivers supporting both 100 and 1000 MBit may be listed
750           under "Ethernet (10 or 100MBit)" instead.
752           If you say N, all options in this submenu will be skipped and disabled.
754 if NETDEV_1000
756 config IP1000
757         tristate "IP1000 Gigabit Ethernet support"
758         depends on PCI && EXPERIMENTAL
759         select MII
760         ---help---
761           This driver supports IP1000 gigabit Ethernet cards.
763           To compile this driver as a module, choose M here: the module
764           will be called ipg.  This is recommended.
766 config HAMACHI
767         tristate "Packet Engines Hamachi GNIC-II support"
768         depends on PCI
769         select MII
770         help
771           If you have a Gigabit Ethernet card of this type, say Y and read
772           the Ethernet-HOWTO, available from
773           <http://www.tldp.org/docs.html#howto>.
775           To compile this driver as a module, choose M here. The module will be
776           called hamachi.
778 config YELLOWFIN
779         tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
780         depends on PCI && EXPERIMENTAL
781         select CRC32
782         ---help---
783           Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
784           adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
785           used by the Beowulf Linux cluster project.  See
786           <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
787           information about this driver in particular and Beowulf in general.
789           To compile this driver as a module, choose M here: the module
790           will be called yellowfin.  This is recommended.
792 config SIS190
793         tristate "SiS190/SiS191 gigabit ethernet support"
794         depends on PCI
795         select CRC32
796         select MII
797         ---help---
798           Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
799           a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
800           appear in lan on motherboard designs which are based on SiS 965
801           and SiS 966 south bridge.
803           To compile this driver as a module, choose M here: the module
804           will be called sis190.  This is recommended.
806 config SKGE
807         tristate "Marvell Yukon Gigabit Ethernet support"
808         depends on PCI
809         select CRC32
810         ---help---
811           This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
812           and related Gigabit Ethernet adapters. It is a new smaller driver
813           with better performance and more complete ethtool support.
815           It does not support the link failover and network management 
816           features that "portable" vendor supplied sk98lin driver does.
818           This driver supports adapters based on the original Yukon chipset:
819           Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
820           Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
822           It does not support the newer Yukon2 chipset: a separate driver,
823           sky2, is provided for these adapters.
825           To compile this driver as a module, choose M here: the module
826           will be called skge.  This is recommended.
828 config SKGE_DEBUG
829         bool "Debugging interface"
830         depends on SKGE && DEBUG_FS
831         help
832           This option adds the ability to dump driver state for debugging.
833           The file /sys/kernel/debug/skge/ethX displays the state of the internal
834           transmit and receive rings.
836           If unsure, say N.
838 config SKGE_GENESIS
839        bool "Support for older SysKonnect Genesis boards"
840        depends on SKGE
841        help
842          This enables support for the older and uncommon SysKonnect Genesis
843          chips, which support MII via an external transceiver, instead of
844          an internal one. Disabling this option will save some memory
845          by making code smaller. If unsure say Y.
847 config SKY2
848         tristate "Marvell Yukon 2 support"
849         depends on PCI
850         select CRC32
851         ---help---
852           This driver supports Gigabit Ethernet adapters based on the
853           Marvell Yukon 2 chipset:
854           Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
855           88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
857           There is companion driver for the older Marvell Yukon and
858           SysKonnect Genesis based adapters: skge.
860           To compile this driver as a module, choose M here: the module
861           will be called sky2.  This is recommended.
863 config SKY2_DEBUG
864         bool "Debugging interface"
865         depends on SKY2 && DEBUG_FS
866         help
867           This option adds the ability to dump driver state for debugging.
868           The file /sys/kernel/debug/sky2/ethX displays the state of the internal
869           transmit and receive rings.
871           If unsure, say N.
873 config VIA_VELOCITY
874         tristate "VIA Velocity support"
875         depends on PCI
876         select CRC32
877         select CRC_CCITT
878         select MII
879         help
880           If you have a VIA "Velocity" based network card say Y here.
882           To compile this driver as a module, choose M here. The module
883           will be called via-velocity.
885 config SPIDER_NET
886         tristate "Spider Gigabit Ethernet driver"
887         depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
888         select FW_LOADER
889         select SUNGEM_PHY
890         help
891           This driver supports the Gigabit Ethernet chips present on the
892           Cell Processor-Based Blades from IBM.
894 config TSI108_ETH
895         tristate "Tundra TSI108 gigabit Ethernet support"
896         depends on TSI108_BRIDGE
897         help
898           This driver supports Tundra TSI108 gigabit Ethernet ports.
899           To compile this driver as a module, choose M here: the module
900           will be called tsi108_eth.
902 config GELIC_NET
903         tristate "PS3 Gigabit Ethernet driver"
904         depends on PPC_PS3
905         select PS3_SYS_MANAGER
906         help
907           This driver supports the network device on the PS3 game
908           console.  This driver has built-in support for Ethernet.
910           To compile this driver as a module, choose M here: the
911           module will be called ps3_gelic.
913 config GELIC_WIRELESS
914         bool "PS3 Wireless support"
915         depends on WLAN
916         depends on GELIC_NET
917         select WIRELESS_EXT
918         help
919           This option adds the support for the wireless feature of PS3.
920           If you have the wireless-less model of PS3 or have no plan to
921           use wireless feature, disabling this option saves memory.  As
922           the driver automatically distinguishes the models, you can
923           safely enable this option even if you have a wireless-less model.
925 config FSL_PQ_MDIO
926         tristate "Freescale PQ MDIO"
927         depends on FSL_SOC
928         select PHYLIB
929         help
930           This driver supports the MDIO bus used by the gianfar and UCC drivers.
932 config GIANFAR
933         tristate "Gianfar Ethernet"
934         depends on FSL_SOC
935         select FSL_PQ_MDIO
936         select PHYLIB
937         select CRC32
938         help
939           This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
940           and MPC86xx family of chips, and the FEC on the 8540.
942 config UCC_GETH
943         tristate "Freescale QE Gigabit Ethernet"
944         depends on QUICC_ENGINE
945         select FSL_PQ_MDIO
946         select PHYLIB
947         help
948           This driver supports the Gigabit Ethernet mode of the QUICC Engine,
949           which is available on some Freescale SOCs.
951 config UGETH_TX_ON_DEMAND
952         bool "Transmit on Demand support"
953         depends on UCC_GETH
955 config MV643XX_ETH
956         tristate "Marvell Discovery (643XX) and Orion ethernet support"
957         depends on (MV64X60 || PPC32 || PLAT_ORION) && INET
958         select INET_LRO
959         select PHYLIB
960         help
961           This driver supports the gigabit ethernet MACs in the
962           Marvell Discovery PPC/MIPS chipset family (MV643XX) and
963           in the Marvell Orion ARM SoC family.
965           Some boards that use the Discovery chipset are the Momenco
966           Ocelot C and Jaguar ATX and Pegasos II.
968 config XILINX_LL_TEMAC
969         tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver"
970         depends on PPC || MICROBLAZE
971         select PHYLIB
972         help
973           This driver supports the Xilinx 10/100/1000 LocalLink TEMAC
974           core used in Xilinx Spartan and Virtex FPGAs
976 config JME
977         tristate "JMicron(R) PCI-Express Gigabit Ethernet support"
978         depends on PCI
979         select CRC32
980         select MII
981         ---help---
982           This driver supports the PCI-Express gigabit ethernet adapters
983           based on JMicron JMC250 chipset.
985           To compile this driver as a module, choose M here. The module
986           will be called jme.
988 config S6GMAC
989         tristate "S6105 GMAC ethernet support"
990         depends on XTENSA_VARIANT_S6000
991         select PHYLIB
992         help
993           This driver supports the on chip ethernet device on the
994           S6105 xtensa processor.
996           To compile this driver as a module, choose M here. The module
997           will be called s6gmac.
999 config PCH_GBE
1000         tristate "Intel EG20T PCH / OKI SEMICONDUCTOR ML7223 IOH GbE"
1001         depends on PCI
1002         select MII
1003         ---help---
1004           This is a gigabit ethernet driver for EG20T PCH.
1005           EG20T PCH is the platform controller hub that is used in Intel's
1006           general embedded platform.
1007           EG20T PCH has Gigabit Ethernet interface.
1008           Using this interface, it is able to access system devices connected
1009           to Gigabit Ethernet.
1010           This driver enables Gigabit Ethernet function.
1012           This driver also can be used for OKI SEMICONDUCTOR IOH(Input/
1013           Output Hub), ML7223.
1014           ML7223 IOH is for MP(Media Phone) use.
1015           ML7223 is companion chip for Intel Atom E6xx series.
1016           ML7223 is completely compatible for Intel EG20T PCH.
1018 endif # NETDEV_1000
1021 #       10 Gigabit Ethernet
1024 menuconfig NETDEV_10000
1025         bool "Ethernet (10000 Mbit)"
1026         depends on !UML
1027         default y
1028         ---help---
1029           Say Y here to get to see options for 10 Gigabit Ethernet drivers.
1030           This option alone does not add any kernel code.
1032           If you say N, all options in this submenu will be skipped and disabled.
1034 if NETDEV_10000
1036 config MDIO
1037         tristate
1039 config SUNGEM_PHY
1040         tristate
1042 endif # NETDEV_10000
1044 source "drivers/net/tokenring/Kconfig"
1046 source "drivers/net/wireless/Kconfig"
1048 source "drivers/net/wimax/Kconfig"
1050 source "drivers/net/usb/Kconfig"
1052 source "drivers/net/pcmcia/Kconfig"
1054 source "drivers/net/wan/Kconfig"
1056 source "drivers/atm/Kconfig"
1058 source "drivers/ieee802154/Kconfig"
1060 source "drivers/s390/net/Kconfig"
1062 source "drivers/net/caif/Kconfig"
1064 config TILE_NET
1065         tristate "Tilera GBE/XGBE network driver support"
1066         depends on TILE
1067         default y
1068         select CRC32
1069         help
1070           This is a standard Linux network device driver for the
1071           on-chip Tilera Gigabit Ethernet and XAUI interfaces.
1073           To compile this driver as a module, choose M here: the module
1074           will be called tile_net.
1076 config XEN_NETDEV_FRONTEND
1077         tristate "Xen network device frontend driver"
1078         depends on XEN
1079         select XEN_XENBUS_FRONTEND
1080         default y
1081         help
1082           This driver provides support for Xen paravirtual network
1083           devices exported by a Xen network driver domain (often
1084           domain 0).
1086           The corresponding Linux backend driver is enabled by the
1087           CONFIG_XEN_NETDEV_BACKEND option.
1089           If you are compiling a kernel for use as Xen guest, you
1090           should say Y here. To compile this driver as a module, chose
1091           M here: the module will be called xen-netfront.
1093 config XEN_NETDEV_BACKEND
1094         tristate "Xen backend network device"
1095         depends on XEN_BACKEND
1096         help
1097           This driver allows the kernel to act as a Xen network driver
1098           domain which exports paravirtual network devices to other
1099           Xen domains. These devices can be accessed by any operating
1100           system that implements a compatible front end.
1102           The corresponding Linux frontend driver is enabled by the
1103           CONFIG_XEN_NETDEV_FRONTEND configuration option.
1105           The backend driver presents a standard network device
1106           endpoint for each paravirtual network device to the driver
1107           domain network stack. These can then be bridged or routed
1108           etc in order to provide full network connectivity.
1110           If you are compiling a kernel to run in a Xen network driver
1111           domain (often this is domain 0) you should say Y here. To
1112           compile this driver as a module, chose M here: the module
1113           will be called xen-netback.
1115 config RIONET
1116         tristate "RapidIO Ethernet over messaging driver support"
1117         depends on RAPIDIO
1119 config RIONET_TX_SIZE
1120         int "Number of outbound queue entries"
1121         depends on RIONET
1122         default "128"
1124 config RIONET_RX_SIZE
1125         int "Number of inbound queue entries"
1126         depends on RIONET
1127         default "128"
1129 config FDDI
1130         tristate "FDDI driver support"
1131         depends on (PCI || EISA || TC)
1132         help
1133           Fiber Distributed Data Interface is a high speed local area network
1134           design; essentially a replacement for high speed Ethernet. FDDI can
1135           run over copper or fiber. If you are connected to such a network and
1136           want a driver for the FDDI card in your computer, say Y here (and
1137           then also Y to the driver for your FDDI card, below). Most people
1138           will say N.
1140 config DEFXX
1141         tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
1142         depends on FDDI && (PCI || EISA || TC)
1143         ---help---
1144           This is support for the DIGITAL series of TURBOchannel (DEFTA),
1145           EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
1146           to a local FDDI network.
1148           To compile this driver as a module, choose M here: the module
1149           will be called defxx.  If unsure, say N.
1151 config DEFXX_MMIO
1152         bool
1153         prompt "Use MMIO instead of PIO" if PCI || EISA
1154         depends on DEFXX
1155         default n if PCI || EISA
1156         default y
1157         ---help---
1158           This instructs the driver to use EISA or PCI memory-mapped I/O
1159           (MMIO) as appropriate instead of programmed I/O ports (PIO).
1160           Enabling this gives an improvement in processing time in parts
1161           of the driver, but it may cause problems with EISA (DEFEA)
1162           adapters.  TURBOchannel does not have the concept of I/O ports,
1163           so MMIO is always used for these (DEFTA) adapters.
1165           If unsure, say N.
1167 config SKFP
1168         tristate "SysKonnect FDDI PCI support"
1169         depends on FDDI && PCI
1170         select BITREVERSE
1171         ---help---
1172           Say Y here if you have a SysKonnect FDDI PCI adapter.
1173           The following adapters are supported by this driver:
1174           - SK-5521 (SK-NET FDDI-UP)
1175           - SK-5522 (SK-NET FDDI-UP DAS)
1176           - SK-5541 (SK-NET FDDI-FP)
1177           - SK-5543 (SK-NET FDDI-LP)
1178           - SK-5544 (SK-NET FDDI-LP DAS)
1179           - SK-5821 (SK-NET FDDI-UP64)
1180           - SK-5822 (SK-NET FDDI-UP64 DAS)
1181           - SK-5841 (SK-NET FDDI-FP64)
1182           - SK-5843 (SK-NET FDDI-LP64)
1183           - SK-5844 (SK-NET FDDI-LP64 DAS)
1184           - Netelligent 100 FDDI DAS Fibre SC
1185           - Netelligent 100 FDDI SAS Fibre SC
1186           - Netelligent 100 FDDI DAS UTP
1187           - Netelligent 100 FDDI SAS UTP
1188           - Netelligent 100 FDDI SAS Fibre MIC
1190           Read <file:Documentation/networking/skfp.txt> for information about
1191           the driver.
1193           Questions concerning this driver can be addressed to:
1194           <linux@syskonnect.de>
1196           To compile this driver as a module, choose M here: the module
1197           will be called skfp.  This is recommended.
1199 config HIPPI
1200         bool "HIPPI driver support (EXPERIMENTAL)"
1201         depends on EXPERIMENTAL && INET && PCI
1202         help
1203           HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
1204           1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
1205           can run over copper (25m) or fiber (300m on multi-mode or 10km on
1206           single-mode). HIPPI networks are commonly used for clusters and to
1207           connect to super computers. If you are connected to a HIPPI network
1208           and have a HIPPI network card in your computer that you want to use
1209           under Linux, say Y here (you must also remember to enable the driver
1210           for your HIPPI card below). Most people will say N here.
1212 config ROADRUNNER
1213         tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
1214         depends on HIPPI && PCI
1215         help
1216           Say Y here if this is your PCI HIPPI network card.
1218           To compile this driver as a module, choose M here: the module
1219           will be called rrunner.  If unsure, say N.
1221 config ROADRUNNER_LARGE_RINGS
1222         bool "Use large TX/RX rings (EXPERIMENTAL)"
1223         depends on ROADRUNNER
1224         help
1225           If you say Y here, the RoadRunner driver will preallocate up to 2 MB
1226           of additional memory to allow for fastest operation, both for
1227           transmitting and receiving. This memory cannot be used by any other
1228           kernel code or by user space programs. Say Y here only if you have
1229           the memory.
1231 config PLIP
1232         tristate "PLIP (parallel port) support"
1233         depends on PARPORT
1234         ---help---
1235           PLIP (Parallel Line Internet Protocol) is used to create a
1236           reasonably fast mini network consisting of two (or, rarely, more)
1237           local machines.  A PLIP link from a Linux box is a popular means to
1238           install a Linux distribution on a machine which doesn't have a
1239           CD-ROM drive (a minimal system has to be transferred with floppies
1240           first). The kernels on both machines need to have this PLIP option
1241           enabled for this to work.
1243           The PLIP driver has two modes, mode 0 and mode 1.  The parallel
1244           ports (the connectors at the computers with 25 holes) are connected
1245           with "null printer" or "Turbo Laplink" cables which can transmit 4
1246           bits at a time (mode 0) or with special PLIP cables, to be used on
1247           bidirectional parallel ports only, which can transmit 8 bits at a
1248           time (mode 1); you can find the wiring of these cables in
1249           <file:Documentation/networking/PLIP.txt>.  The cables can be up to
1250           15m long.  Mode 0 works also if one of the machines runs DOS/Windows
1251           and has some PLIP software installed, e.g. the Crynwr PLIP packet
1252           driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
1253           and winsock or NCSA's telnet.
1255           If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
1256           as the NET-3-HOWTO, both available from
1257           <http://www.tldp.org/docs.html#howto>.  Note that the PLIP
1258           protocol has been changed and this PLIP driver won't work together
1259           with the PLIP support in Linux versions 1.0.x.  This option enlarges
1260           your kernel by about 8 KB.
1262           To compile this driver as a module, choose M here. The module
1263           will be called plip. If unsure, say Y or M, in case you buy
1264           a laptop later.
1266 config PPP
1267         tristate "PPP (point-to-point protocol) support"
1268         select SLHC
1269         ---help---
1270           PPP (Point to Point Protocol) is a newer and better SLIP.  It serves
1271           the same purpose: sending Internet traffic over telephone (and other
1272           serial) lines.  Ask your access provider if they support it, because
1273           otherwise you can't use it; most Internet access providers these
1274           days support PPP rather than SLIP.
1276           To use PPP, you need an additional program called pppd as described
1277           in the PPP-HOWTO, available at
1278           <http://www.tldp.org/docs.html#howto>.  Make sure that you have
1279           the version of pppd recommended in <file:Documentation/Changes>.
1280           The PPP option enlarges your kernel by about 16 KB.
1282           There are actually two versions of PPP: the traditional PPP for
1283           asynchronous lines, such as regular analog phone lines, and
1284           synchronous PPP which can be used over digital ISDN lines for
1285           example.  If you want to use PPP over phone lines or other
1286           asynchronous serial lines, you need to say Y (or M) here and also to
1287           the next option, "PPP support for async serial ports".  For PPP over
1288           synchronous lines, you should say Y (or M) here and to "Support
1289           synchronous PPP", below.
1291           If you said Y to "Version information on all symbols" above, then
1292           you cannot compile the PPP driver into the kernel; you can then only
1293           compile it as a module. To compile this driver as a module, choose M
1294           here. The module will be called ppp_generic.
1296 config PPP_MULTILINK
1297         bool "PPP multilink support (EXPERIMENTAL)"
1298         depends on PPP && EXPERIMENTAL
1299         help
1300           PPP multilink is a protocol (defined in RFC 1990) which allows you
1301           to combine several (logical or physical) lines into one logical PPP
1302           connection, so that you can utilize your full bandwidth.
1304           This has to be supported at the other end as well and you need a
1305           version of the pppd daemon which understands the multilink protocol.
1307           If unsure, say N.
1309 config PPP_FILTER
1310         bool "PPP filtering"
1311         depends on PPP
1312         help
1313           Say Y here if you want to be able to filter the packets passing over
1314           PPP interfaces.  This allows you to control which packets count as
1315           activity (i.e. which packets will reset the idle timer or bring up
1316           a demand-dialed link) and which packets are to be dropped entirely.
1317           You need to say Y here if you wish to use the pass-filter and
1318           active-filter options to pppd.
1320           If unsure, say N.
1322 config PPP_ASYNC
1323         tristate "PPP support for async serial ports"
1324         depends on PPP
1325         select CRC_CCITT
1326         ---help---
1327           Say Y (or M) here if you want to be able to use PPP over standard
1328           asynchronous serial ports, such as COM1 or COM2 on a PC.  If you use
1329           a modem (not a synchronous or ISDN modem) to contact your ISP, you
1330           need this option.
1332           To compile this driver as a module, choose M here.
1334           If unsure, say Y.
1336 config PPP_SYNC_TTY
1337         tristate "PPP support for sync tty ports"
1338         depends on PPP
1339         help
1340           Say Y (or M) here if you want to be able to use PPP over synchronous
1341           (HDLC) tty devices, such as the SyncLink adapter. These devices
1342           are often used for high-speed leased lines like T1/E1.
1344           To compile this driver as a module, choose M here.
1346 config PPP_DEFLATE
1347         tristate "PPP Deflate compression"
1348         depends on PPP
1349         select ZLIB_INFLATE
1350         select ZLIB_DEFLATE
1351         ---help---
1352           Support for the Deflate compression method for PPP, which uses the
1353           Deflate algorithm (the same algorithm that gzip uses) to compress
1354           each PPP packet before it is sent over the wire.  The machine at the
1355           other end of the PPP link (usually your ISP) has to support the
1356           Deflate compression method as well for this to be useful.  Even if
1357           they don't support it, it is safe to say Y here.
1359           To compile this driver as a module, choose M here.
1361 config PPP_BSDCOMP
1362         tristate "PPP BSD-Compress compression"
1363         depends on PPP
1364         ---help---
1365           Support for the BSD-Compress compression method for PPP, which uses
1366           the LZW compression method to compress each PPP packet before it is
1367           sent over the wire. The machine at the other end of the PPP link
1368           (usually your ISP) has to support the BSD-Compress compression
1369           method as well for this to be useful. Even if they don't support it,
1370           it is safe to say Y here.
1372           The PPP Deflate compression method ("PPP Deflate compression",
1373           above) is preferable to BSD-Compress, because it compresses better
1374           and is patent-free.
1376           Note that the BSD compression code will always be compiled as a
1377           module; it is called bsd_comp and will show up in the directory
1378           modules once you have said "make modules". If unsure, say N.
1380 config PPP_MPPE
1381         tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
1382         depends on PPP && EXPERIMENTAL
1383         select CRYPTO
1384         select CRYPTO_SHA1
1385         select CRYPTO_ARC4
1386         select CRYPTO_ECB
1387         ---help---
1388           Support for the MPPE Encryption protocol, as employed by the
1389           Microsoft Point-to-Point Tunneling Protocol.
1391           See http://pptpclient.sourceforge.net/ for information on
1392           configuring PPTP clients and servers to utilize this method.
1394 config PPPOE
1395         tristate "PPP over Ethernet (EXPERIMENTAL)"
1396         depends on EXPERIMENTAL && PPP
1397         help
1398           Support for PPP over Ethernet.
1400           This driver requires the latest version of pppd from the CVS
1401           repository at cvs.samba.org.  Alternatively, see the 
1402           RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
1403           which contains instruction on how to use this driver (under 
1404           the heading "Kernel mode PPPoE").
1406 config PPTP
1407         tristate "PPP over IPv4 (PPTP) (EXPERIMENTAL)"
1408         depends on EXPERIMENTAL && PPP && NET_IPGRE_DEMUX
1409         help
1410           Support for PPP over IPv4.(Point-to-Point Tunneling Protocol)
1412           This driver requires pppd plugin to work in client mode or
1413           modified pptpd (poptop) to work in server mode.
1414           See http://accel-pptp.sourceforge.net/ for information how to
1415           utilize this module.
1417 config PPPOATM
1418         tristate "PPP over ATM"
1419         depends on ATM && PPP
1420         help
1421           Support PPP (Point to Point Protocol) encapsulated in ATM frames.
1422           This implementation does not yet comply with section 8 of RFC2364,
1423           which can lead to bad results if the ATM peer loses state and
1424           changes its encapsulation unilaterally.
1426 config PPPOL2TP
1427         tristate "PPP over L2TP (EXPERIMENTAL)"
1428         depends on EXPERIMENTAL && L2TP && PPP
1429         help
1430           Support for PPP-over-L2TP socket family. L2TP is a protocol
1431           used by ISPs and enterprises to tunnel PPP traffic over UDP
1432           tunnels. L2TP is replacing PPTP for VPN uses.
1434 config SLIP
1435         tristate "SLIP (serial line) support"
1436         ---help---
1437           Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
1438           connect to your Internet service provider or to connect to some
1439           other local Unix box or if you want to configure your Linux box as a
1440           Slip/CSlip server for other people to dial in. SLIP (Serial Line
1441           Internet Protocol) is a protocol used to send Internet traffic over
1442           serial connections such as telephone lines or null modem cables;
1443           nowadays, the protocol PPP is more commonly used for this same
1444           purpose.
1446           Normally, your access provider has to support SLIP in order for you
1447           to be able to use it, but there is now a SLIP emulator called SLiRP
1448           around (available from
1449           <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
1450           allows you to use SLIP over a regular dial up shell connection. If
1451           you plan to use SLiRP, make sure to say Y to CSLIP, below. The
1452           NET-3-HOWTO, available from
1453           <http://www.tldp.org/docs.html#howto>, explains how to
1454           configure SLIP. Note that you don't need this option if you just
1455           want to run term (term is a program which gives you almost full
1456           Internet connectivity if you have a regular dial up shell account on
1457           some Internet connected Unix computer. Read
1458           <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
1459           support will enlarge your kernel by about 4 KB. If unsure, say N.
1461           To compile this driver as a module, choose M here. The module
1462           will be called slip.
1464 config SLIP_COMPRESSED
1465         bool "CSLIP compressed headers"
1466         depends on SLIP
1467         select SLHC
1468         ---help---
1469           This protocol is faster than SLIP because it uses compression on the
1470           TCP/IP headers (not on the data itself), but it has to be supported
1471           on both ends. Ask your access provider if you are not sure and
1472           answer Y, just in case. You will still be able to use plain SLIP. If
1473           you plan to use SLiRP, the SLIP emulator (available from
1474           <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
1475           allows you to use SLIP over a regular dial up shell connection, you
1476           definitely want to say Y here. The NET-3-HOWTO, available from
1477           <http://www.tldp.org/docs.html#howto>, explains how to configure
1478           CSLIP. This won't enlarge your kernel.
1480 config SLHC
1481         tristate
1482         help
1483           This option enables Van Jacobsen serial line header compression
1484           routines.
1486 config SLIP_SMART
1487         bool "Keepalive and linefill"
1488         depends on SLIP
1489         help
1490           Adds additional capabilities to the SLIP driver to support the
1491           RELCOM line fill and keepalive monitoring. Ideal on poor quality
1492           analogue lines.
1494 config SLIP_MODE_SLIP6
1495         bool "Six bit SLIP encapsulation"
1496         depends on SLIP
1497         help
1498           Just occasionally you may need to run IP over hostile serial
1499           networks that don't pass all control characters or are only seven
1500           bit. Saying Y here adds an extra mode you can use with SLIP:
1501           "slip6". In this mode, SLIP will only send normal ASCII symbols over
1502           the serial device. Naturally, this has to be supported at the other
1503           end of the link as well. It's good enough, for example, to run IP
1504           over the async ports of a Camtec JNT Pad. If unsure, say N.
1506 config NET_FC
1507         bool "Fibre Channel driver support"
1508         depends on SCSI && PCI
1509         help
1510           Fibre Channel is a high speed serial protocol mainly used to connect
1511           large storage devices to the computer; it is compatible with and
1512           intended to replace SCSI.
1514           If you intend to use Fibre Channel, you need to have a Fibre channel
1515           adaptor card in your computer; say Y here and to the driver for your
1516           adaptor below. You also should have said Y to "SCSI support" and
1517           "SCSI generic support".
1519 config NETCONSOLE
1520         tristate "Network console logging support"
1521         ---help---
1522         If you want to log kernel messages over the network, enable this.
1523         See <file:Documentation/networking/netconsole.txt> for details.
1525 config NETCONSOLE_DYNAMIC
1526         bool "Dynamic reconfiguration of logging targets"
1527         depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \
1528                         !(NETCONSOLE=y && CONFIGFS_FS=m)
1529         help
1530           This option enables the ability to dynamically reconfigure target
1531           parameters (interface, IP addresses, port numbers, MAC addresses)
1532           at runtime through a userspace interface exported using configfs.
1533           See <file:Documentation/networking/netconsole.txt> for details.
1535 config NETPOLL
1536         def_bool NETCONSOLE
1538 config NETPOLL_TRAP
1539         bool "Netpoll traffic trapping"
1540         default n
1541         depends on NETPOLL
1543 config NET_POLL_CONTROLLER
1544         def_bool NETPOLL
1546 config VIRTIO_NET
1547         tristate "Virtio network driver (EXPERIMENTAL)"
1548         depends on EXPERIMENTAL && VIRTIO
1549         ---help---
1550           This is the virtual network driver for virtio.  It can be used with
1551           lguest or QEMU based VMMs (like KVM or Xen).  Say Y or M.
1553 config VMXNET3
1554         tristate "VMware VMXNET3 ethernet driver"
1555         depends on PCI && INET
1556         help
1557           This driver supports VMware's vmxnet3 virtual ethernet NIC.
1558           To compile this driver as a module, choose M here: the
1559           module will be called vmxnet3.
1561 endif # NETDEVICES