Kconfig 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. #
  2. # Network device configuration
  3. #
  4. config HAVE_NET_MACB
  5. bool
  6. menuconfig NETDEVICES
  7. default y if UML
  8. depends on NET
  9. 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. You'll have to say Y if your computer contains a network card that
  14. you want to use under Linux. If you are going to run SLIP or PPP over
  15. telephone line or null modem cable you need say Y here. Connecting
  16. two machines with parallel ports using PLIP needs this, as well as
  17. AX.25/KISS for sending Internet traffic over amateur radio links.
  18. See also "The Linux Network Administrator's Guide" by Olaf Kirch and
  19. Terry Dawson. Available at <http://www.tldp.org/guides.html>.
  20. If unsure, say Y.
  21. # All the following symbols are dependent on NETDEVICES - do not repeat
  22. # that for each of the symbols.
  23. if NETDEVICES
  24. config IFB
  25. tristate "Intermediate Functional Block support"
  26. depends on NET_CLS_ACT
  27. ---help---
  28. This is an intermediate driver that allows sharing of
  29. resources.
  30. To compile this driver as a module, choose M here: the module
  31. will be called ifb. If you want to use more than one ifb
  32. device at a time, you need to compile this driver as a module.
  33. Instead of 'ifb', the devices will then be called 'ifb0',
  34. 'ifb1' etc.
  35. Look at the iproute2 documentation directory for usage etc
  36. config DUMMY
  37. tristate "Dummy net driver support"
  38. ---help---
  39. This is essentially a bit-bucket device (i.e. traffic you send to
  40. this device is consigned into oblivion) with a configurable IP
  41. address. It is most commonly used in order to make your currently
  42. inactive SLIP address seem like a real address for local programs.
  43. If you use SLIP or PPP, you might want to say Y here. Since this
  44. thing often comes in handy, the default is Y. It won't enlarge your
  45. kernel either. What a deal. Read about it in the Network
  46. Administrator's Guide, available from
  47. <http://www.tldp.org/docs.html#guide>.
  48. To compile this driver as a module, choose M here: the module
  49. will be called dummy. If you want to use more than one dummy
  50. device at a time, you need to compile this driver as a module.
  51. Instead of 'dummy', the devices will then be called 'dummy0',
  52. 'dummy1' etc.
  53. config BONDING
  54. tristate "Bonding driver support"
  55. depends on INET
  56. depends on IPV6 || IPV6=n
  57. ---help---
  58. Say 'Y' or 'M' if you wish to be able to 'bond' multiple Ethernet
  59. Channels together. This is called 'Etherchannel' by Cisco,
  60. 'Trunking' by Sun, 802.3ad by the IEEE, and 'Bonding' in Linux.
  61. The driver supports multiple bonding modes to allow for both high
  62. performance and high availability operation.
  63. Refer to <file:Documentation/networking/bonding.txt> for more
  64. information.
  65. To compile this driver as a module, choose M here: the module
  66. will be called bonding.
  67. config MACVLAN
  68. tristate "MAC-VLAN support (EXPERIMENTAL)"
  69. depends on EXPERIMENTAL
  70. ---help---
  71. This allows one to create virtual interfaces that map packets to
  72. or from specific MAC addresses to a particular interface.
  73. Macvlan devices can be added using the "ip" command from the
  74. iproute2 package starting with the iproute2-2.6.23 release:
  75. "ip link add link <real dev> [ address MAC ] [ NAME ] type macvlan"
  76. To compile this driver as a module, choose M here: the module
  77. will be called macvlan.
  78. config MACVTAP
  79. tristate "MAC-VLAN based tap driver (EXPERIMENTAL)"
  80. depends on MACVLAN
  81. help
  82. This adds a specialized tap character device driver that is based
  83. on the MAC-VLAN network interface, called macvtap. A macvtap device
  84. can be added in the same way as a macvlan device, using 'type
  85. macvlan', and then be accessed through the tap user space interface.
  86. To compile this driver as a module, choose M here: the module
  87. will be called macvtap.
  88. config EQUALIZER
  89. tristate "EQL (serial line load balancing) support"
  90. ---help---
  91. If you have two serial connections to some other computer (this
  92. usually requires two modems and two telephone lines) and you use
  93. SLIP (the protocol for sending Internet traffic over telephone
  94. lines) or PPP (a better SLIP) on them, you can make them behave like
  95. one double speed connection using this driver. Naturally, this has
  96. to be supported at the other end as well, either with a similar EQL
  97. Linux driver or with a Livingston Portmaster 2e.
  98. Say Y if you want this and read
  99. <file:Documentation/networking/eql.txt>. You may also want to read
  100. section 6.2 of the NET-3-HOWTO, available from
  101. <http://www.tldp.org/docs.html#howto>.
  102. To compile this driver as a module, choose M here: the module
  103. will be called eql. If unsure, say N.
  104. config TUN
  105. tristate "Universal TUN/TAP device driver support"
  106. select CRC32
  107. ---help---
  108. TUN/TAP provides packet reception and transmission for user space
  109. programs. It can be viewed as a simple Point-to-Point or Ethernet
  110. device, which instead of receiving packets from a physical media,
  111. receives them from user space program and instead of sending packets
  112. via physical media writes them to the user space program.
  113. When a program opens /dev/net/tun, driver creates and registers
  114. corresponding net device tunX or tapX. After a program closed above
  115. devices, driver will automatically delete tunXX or tapXX device and
  116. all routes corresponding to it.
  117. Please read <file:Documentation/networking/tuntap.txt> for more
  118. information.
  119. To compile this driver as a module, choose M here: the module
  120. will be called tun.
  121. If you don't know what to use this for, you don't need it.
  122. config VETH
  123. tristate "Virtual ethernet pair device"
  124. ---help---
  125. This device is a local ethernet tunnel. Devices are created in pairs.
  126. When one end receives the packet it appears on its pair and vice
  127. versa.
  128. config NET_SB1000
  129. tristate "General Instruments Surfboard 1000"
  130. depends on PNP
  131. ---help---
  132. This is a driver for the General Instrument (also known as
  133. NextLevel) SURFboard 1000 internal
  134. cable modem. This is an ISA card which is used by a number of cable
  135. TV companies to provide cable modem access. It's a one-way
  136. downstream-only cable modem, meaning that your upstream net link is
  137. provided by your regular phone modem.
  138. At present this driver only compiles as a module, so say M here if
  139. you have this card. The module will be called sb1000. Then read
  140. <file:Documentation/networking/README.sb1000> for information on how
  141. to use this module, as it needs special ppp scripts for establishing
  142. a connection. Further documentation and the necessary scripts can be
  143. found at:
  144. <http://www.jacksonville.net/~fventuri/>
  145. <http://home.adelphia.net/~siglercm/sb1000.html>
  146. <http://linuxpower.cx/~cable/>
  147. If you don't have this card, of course say N.
  148. source "drivers/net/arcnet/Kconfig"
  149. config MII
  150. tristate "Generic Media Independent Interface device support"
  151. help
  152. Most ethernet controllers have MII transceiver either as an external
  153. or internal device. It is safe to say Y or M here even if your
  154. ethernet card lacks MII.
  155. source "drivers/net/phy/Kconfig"
  156. #
  157. # Ethernet
  158. #
  159. source "drivers/net/ethernet/Kconfig"
  160. menuconfig NET_ETHERNET
  161. bool "Ethernet (10 or 100Mbit)"
  162. depends on !UML
  163. ---help---
  164. Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
  165. type of Local Area Network (LAN) in universities and companies.
  166. Common varieties of Ethernet are: 10BASE-2 or Thinnet (10 Mbps over
  167. coaxial cable, linking computers in a chain), 10BASE-T or twisted
  168. pair (10 Mbps over twisted pair cable, linking computers to central
  169. hubs), 10BASE-F (10 Mbps over optical fiber links, using hubs),
  170. 100BASE-TX (100 Mbps over two twisted pair cables, using hubs),
  171. 100BASE-T4 (100 Mbps over 4 standard voice-grade twisted pair
  172. cables, using hubs), 100BASE-FX (100 Mbps over optical fiber links)
  173. [the 100BASE varieties are also known as Fast Ethernet], and Gigabit
  174. Ethernet (1 Gbps over optical fiber or short copper links).
  175. If your Linux machine will be connected to an Ethernet and you have
  176. an Ethernet network interface card (NIC) installed in your computer,
  177. say Y here and read the Ethernet-HOWTO, available from
  178. <http://www.tldp.org/docs.html#howto>. You will then also have
  179. to say Y to the driver for your particular NIC.
  180. Note that the answer to this question won't directly affect the
  181. kernel: saying N will just cause the configurator to skip all
  182. the questions about Ethernet network cards. If unsure, say N.
  183. if NET_ETHERNET
  184. config MACB
  185. tristate "Atmel MACB support"
  186. depends on HAVE_NET_MACB
  187. select PHYLIB
  188. help
  189. The Atmel MACB ethernet interface is found on many AT32 and AT91
  190. parts. Say Y to include support for the MACB chip.
  191. To compile this driver as a module, choose M here: the module
  192. will be called macb.
  193. source "drivers/net/arm/Kconfig"
  194. config MACE
  195. tristate "MACE (Power Mac ethernet) support"
  196. depends on PPC_PMAC && PPC32
  197. select CRC32
  198. help
  199. Power Macintoshes and clones with Ethernet built-in on the
  200. motherboard will usually use a MACE (Medium Access Control for
  201. Ethernet) interface. Say Y to include support for the MACE chip.
  202. To compile this driver as a module, choose M here: the module
  203. will be called mace.
  204. config MACE_AAUI_PORT
  205. bool "Use AAUI port instead of TP by default"
  206. depends on MACE
  207. help
  208. Some Apple machines (notably the Apple Network Server) which use the
  209. MACE ethernet chip have an Apple AUI port (small 15-pin connector),
  210. instead of an 8-pin RJ45 connector for twisted-pair ethernet. Say
  211. Y here if you have such a machine. If unsure, say N.
  212. The driver will default to AAUI on ANS anyway, and if you use it as
  213. a module, you can provide the port_aaui=0|1 to force the driver.
  214. config BMAC
  215. tristate "BMAC (G3 ethernet) support"
  216. depends on PPC_PMAC && PPC32
  217. select CRC32
  218. help
  219. Say Y for support of BMAC Ethernet interfaces. These are used on G3
  220. computers.
  221. To compile this driver as a module, choose M here: the module
  222. will be called bmac.
  223. config MAC89x0
  224. tristate "Macintosh CS89x0 based ethernet cards"
  225. depends on MAC
  226. ---help---
  227. Support for CS89x0 chipset based Ethernet cards. If you have a
  228. Nubus or LC-PDS network (Ethernet) card of this type, say Y and
  229. read the Ethernet-HOWTO, available from
  230. <http://www.tldp.org/docs.html#howto>.
  231. To compile this driver as a module, choose M here. This module will
  232. be called mac89x0.
  233. config MACSONIC
  234. tristate "Macintosh SONIC based ethernet (onboard, NuBus, LC, CS)"
  235. depends on MAC
  236. ---help---
  237. Support for NatSemi SONIC based Ethernet devices. This includes
  238. the onboard Ethernet in many Quadras as well as some LC-PDS,
  239. a few Nubus and all known Comm Slot Ethernet cards. If you have
  240. one of these say Y and read the Ethernet-HOWTO, available from
  241. <http://www.tldp.org/docs.html#howto>.
  242. To compile this driver as a module, choose M here. This module will
  243. be called macsonic.
  244. config MACMACE
  245. bool "Macintosh (AV) onboard MACE ethernet"
  246. depends on MAC
  247. select CRC32
  248. help
  249. Support for the onboard AMD 79C940 MACE Ethernet controller used in
  250. the 660AV and 840AV Macintosh. If you have one of these Macintoshes
  251. say Y and read the Ethernet-HOWTO, available from
  252. <http://www.tldp.org/docs.html#howto>.
  253. config MVME16x_NET
  254. tristate "MVME16x Ethernet support"
  255. depends on MVME16x
  256. help
  257. This is the driver for the Ethernet interface on the Motorola
  258. MVME162, 166, 167, 172 and 177 boards. Say Y here to include the
  259. driver for this chip in your kernel.
  260. To compile this driver as a module, choose M here.
  261. config BVME6000_NET
  262. tristate "BVME6000 Ethernet support"
  263. depends on BVME6000
  264. help
  265. This is the driver for the Ethernet interface on BVME4000 and
  266. BVME6000 VME boards. Say Y here to include the driver for this chip
  267. in your kernel.
  268. To compile this driver as a module, choose M here.
  269. config SUN3_82586
  270. bool "Sun3 on-board Intel 82586 support"
  271. depends on SUN3
  272. help
  273. This driver enables support for the on-board Intel 82586 based
  274. Ethernet adapter found on Sun 3/1xx and 3/2xx motherboards. Note
  275. that this driver does not support 82586-based adapters on additional
  276. VME boards.
  277. config LASI_82596
  278. tristate "Lasi ethernet"
  279. depends on GSC
  280. help
  281. Say Y here to support the builtin Intel 82596 ethernet controller
  282. found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
  283. config SNI_82596
  284. tristate "SNI RM ethernet"
  285. depends on NET_ETHERNET && SNI_RM
  286. help
  287. Say Y here to support the on-board Intel 82596 ethernet controller
  288. built into SNI RM machines.
  289. config KORINA
  290. tristate "Korina (IDT RC32434) Ethernet support"
  291. depends on NET_ETHERNET && MIKROTIK_RB532
  292. help
  293. If you have a Mikrotik RouterBoard 500 or IDT RC32434
  294. based system say Y. Otherwise say N.
  295. config MIPS_JAZZ_SONIC
  296. tristate "MIPS JAZZ onboard SONIC Ethernet support"
  297. depends on MACH_JAZZ
  298. help
  299. This is the driver for the onboard card of MIPS Magnum 4000,
  300. Acer PICA, Olivetti M700-10 and a few other identical OEM systems.
  301. config XTENSA_XT2000_SONIC
  302. tristate "Xtensa XT2000 onboard SONIC Ethernet support"
  303. depends on XTENSA_PLATFORM_XT2000
  304. help
  305. This is the driver for the onboard card of the Xtensa XT2000 board.
  306. config SGI_IOC3_ETH
  307. bool "SGI IOC3 Ethernet"
  308. depends on PCI && SGI_IP27
  309. select CRC32
  310. select MII
  311. help
  312. If you have a network (Ethernet) card of this type, say Y and read
  313. the Ethernet-HOWTO, available from
  314. <http://www.tldp.org/docs.html#howto>.
  315. config MIPS_SIM_NET
  316. tristate "MIPS simulator Network device"
  317. depends on MIPS_SIM
  318. help
  319. The MIPSNET device is a simple Ethernet network device which is
  320. emulated by the MIPS Simulator.
  321. If you are not using a MIPSsim or are unsure, say N.
  322. config SGI_O2MACE_ETH
  323. tristate "SGI O2 MACE Fast Ethernet support"
  324. depends on SGI_IP32=y
  325. config SH_ETH
  326. tristate "Renesas SuperH Ethernet support"
  327. depends on SUPERH && \
  328. (CPU_SUBTYPE_SH7710 || CPU_SUBTYPE_SH7712 || \
  329. CPU_SUBTYPE_SH7763 || CPU_SUBTYPE_SH7619 || \
  330. CPU_SUBTYPE_SH7724 || CPU_SUBTYPE_SH7757)
  331. select CRC32
  332. select MII
  333. select MDIO_BITBANG
  334. select PHYLIB
  335. help
  336. Renesas SuperH Ethernet device driver.
  337. This driver supporting CPUs are:
  338. - SH7710, SH7712, SH7763, SH7619, SH7724, and SH7757.
  339. config HAPPYMEAL
  340. tristate "Sun Happy Meal 10/100baseT support"
  341. depends on SBUS || PCI
  342. select CRC32
  343. help
  344. This driver supports the "hme" interface present on most Ultra
  345. systems and as an option on older Sbus systems. This driver supports
  346. both PCI and Sbus devices. This driver also supports the "qfe" quad
  347. 100baseT device available in both PCI and Sbus configurations.
  348. To compile this driver as a module, choose M here: the module
  349. will be called sunhme.
  350. config SUNBMAC
  351. tristate "Sun BigMAC 10/100baseT support (EXPERIMENTAL)"
  352. depends on SBUS && EXPERIMENTAL
  353. select CRC32
  354. help
  355. This driver supports the "be" interface available as an Sbus option.
  356. This is Sun's older 100baseT Ethernet device.
  357. To compile this driver as a module, choose M here: the module
  358. will be called sunbmac.
  359. config SUNQE
  360. tristate "Sun QuadEthernet support"
  361. depends on SBUS
  362. select CRC32
  363. help
  364. This driver supports the "qe" 10baseT Ethernet device, available as
  365. an Sbus option. Note that this is not the same as Quad FastEthernet
  366. "qfe" which is supported by the Happy Meal driver instead.
  367. To compile this driver as a module, choose M here: the module
  368. will be called sunqe.
  369. config SUNGEM
  370. tristate "Sun GEM support"
  371. depends on PCI
  372. select CRC32
  373. help
  374. Support for the Sun GEM chip, aka Sun GigabitEthernet/P 2.0. See also
  375. <http://www.sun.com/products-n-solutions/hardware/docs/pdf/806-3985-10.pdf>.
  376. config CASSINI
  377. tristate "Sun Cassini support"
  378. depends on PCI
  379. select CRC32
  380. help
  381. Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
  382. <http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
  383. config SUNVNET
  384. tristate "Sun Virtual Network support"
  385. depends on SUN_LDOMS
  386. help
  387. Support for virtual network devices under Sun Logical Domains.
  388. config EL2
  389. tristate "3c503 \"EtherLink II\" support"
  390. depends on ISA
  391. select CRC32
  392. ---help---
  393. If you have a network (Ethernet) card of this type, say Y and read
  394. the Ethernet-HOWTO, available from
  395. <http://www.tldp.org/docs.html#howto>.
  396. To compile this driver as a module, choose M here. The module
  397. will be called 3c503.
  398. config ELPLUS
  399. tristate "3c505 \"EtherLink Plus\" support"
  400. depends on ISA && ISA_DMA_API
  401. ---help---
  402. Information about this network (Ethernet) card can be found in
  403. <file:Documentation/networking/3c505.txt>. If you have a card of
  404. this type, say Y and read the Ethernet-HOWTO, available from
  405. <http://www.tldp.org/docs.html#howto>.
  406. To compile this driver as a module, choose M here. The module
  407. will be called 3c505.
  408. config EL16
  409. tristate "3c507 \"EtherLink 16\" support (EXPERIMENTAL)"
  410. depends on ISA && EXPERIMENTAL
  411. ---help---
  412. If you have a network (Ethernet) card of this type, say Y and read
  413. the Ethernet-HOWTO, available from
  414. <http://www.tldp.org/docs.html#howto>.
  415. To compile this driver as a module, choose M here. The module
  416. will be called 3c507.
  417. config ELMC
  418. tristate "3c523 \"EtherLink/MC\" support"
  419. depends on MCA_LEGACY
  420. ---help---
  421. If you have a network (Ethernet) card of this type, say Y and read
  422. the Ethernet-HOWTO, available from
  423. <http://www.tldp.org/docs.html#howto>.
  424. To compile this driver as a module, choose M here. The module
  425. will be called 3c523.
  426. config ELMC_II
  427. tristate "3c527 \"EtherLink/MC 32\" support (EXPERIMENTAL)"
  428. depends on MCA && MCA_LEGACY
  429. ---help---
  430. If you have a network (Ethernet) card of this type, say Y and read
  431. the Ethernet-HOWTO, available from
  432. <http://www.tldp.org/docs.html#howto>.
  433. To compile this driver as a module, choose M here. The module
  434. will be called 3c527.
  435. config BFIN_MAC
  436. tristate "Blackfin on-chip MAC support"
  437. depends on NET_ETHERNET && (BF516 || BF518 || BF526 || BF527 || BF536 || BF537)
  438. select CRC32
  439. select MII
  440. select PHYLIB
  441. select BFIN_MAC_USE_L1 if DMA_UNCACHED_NONE
  442. help
  443. This is the driver for Blackfin on-chip mac device. Say Y if you want it
  444. compiled into the kernel. This driver is also available as a module
  445. ( = code which can be inserted in and removed from the running kernel
  446. whenever you want). The module will be called bfin_mac.
  447. config BFIN_MAC_USE_L1
  448. bool "Use L1 memory for rx/tx packets"
  449. depends on BFIN_MAC && (BF527 || BF537)
  450. default y
  451. help
  452. To get maximum network performance, you should use L1 memory as rx/tx buffers.
  453. Say N here if you want to reserve L1 memory for other uses.
  454. config BFIN_TX_DESC_NUM
  455. int "Number of transmit buffer packets"
  456. depends on BFIN_MAC
  457. range 6 10 if BFIN_MAC_USE_L1
  458. range 10 100
  459. default "10"
  460. help
  461. Set the number of buffer packets used in driver.
  462. config BFIN_RX_DESC_NUM
  463. int "Number of receive buffer packets"
  464. depends on BFIN_MAC
  465. range 20 100 if BFIN_MAC_USE_L1
  466. range 20 800
  467. default "20"
  468. help
  469. Set the number of buffer packets used in driver.
  470. config BFIN_MAC_USE_HWSTAMP
  471. bool "Use IEEE 1588 hwstamp"
  472. depends on BFIN_MAC && BF518
  473. default y
  474. help
  475. To support the IEEE 1588 Precision Time Protocol (PTP), select y here
  476. config SMC9194
  477. tristate "SMC 9194 support"
  478. depends on NET_VENDOR_SMC && (ISA || MAC && BROKEN)
  479. select CRC32
  480. ---help---
  481. This is support for the SMC9xxx based Ethernet cards. Choose this
  482. option if you have a DELL laptop with the docking station, or
  483. another SMC9192/9194 based chipset. Say Y if you want it compiled
  484. into the kernel, and read the file
  485. <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
  486. available from <http://www.tldp.org/docs.html#howto>.
  487. To compile this driver as a module, choose M here. The module
  488. will be called smc9194.
  489. config SMC91X
  490. tristate "SMC 91C9x/91C1xxx support"
  491. select CRC32
  492. select MII
  493. depends on ARM || M32R || SUPERH || \
  494. MIPS || BLACKFIN || MN10300 || COLDFIRE
  495. help
  496. This is a driver for SMC's 91x series of Ethernet chipsets,
  497. including the SMC91C94 and the SMC91C111. Say Y if you want it
  498. compiled into the kernel, and read the file
  499. <file:Documentation/networking/smc9.txt> and the Ethernet-HOWTO,
  500. available from <http://www.tldp.org/docs.html#howto>.
  501. This driver is also available as a module ( = code which can be
  502. inserted in and removed from the running kernel whenever you want).
  503. The module will be called smc91x. If you want to compile it as a
  504. module, say M here and read <file:Documentation/kbuild/modules.txt>.
  505. config PXA168_ETH
  506. tristate "Marvell pxa168 ethernet support"
  507. depends on CPU_PXA168
  508. select PHYLIB
  509. help
  510. This driver supports the pxa168 Ethernet ports.
  511. To compile this driver as a module, choose M here. The module
  512. will be called pxa168_eth.
  513. config NET_NETX
  514. tristate "NetX Ethernet support"
  515. select MII
  516. depends on ARCH_NETX
  517. help
  518. This is support for the Hilscher netX builtin Ethernet ports
  519. To compile this driver as a module, choose M here. The module
  520. will be called netx-eth.
  521. config TI_DAVINCI_EMAC
  522. tristate "TI DaVinci EMAC Support"
  523. depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
  524. select TI_DAVINCI_MDIO
  525. select TI_DAVINCI_CPDMA
  526. select PHYLIB
  527. help
  528. This driver supports TI's DaVinci Ethernet .
  529. To compile this driver as a module, choose M here: the module
  530. will be called davinci_emac_driver. This is recommended.
  531. config TI_DAVINCI_MDIO
  532. tristate "TI DaVinci MDIO Support"
  533. depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
  534. select PHYLIB
  535. help
  536. This driver supports TI's DaVinci MDIO module.
  537. To compile this driver as a module, choose M here: the module
  538. will be called davinci_mdio. This is recommended.
  539. config TI_DAVINCI_CPDMA
  540. tristate "TI DaVinci CPDMA Support"
  541. depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 )
  542. help
  543. This driver supports TI's DaVinci CPDMA dma engine.
  544. To compile this driver as a module, choose M here: the module
  545. will be called davinci_cpdma. This is recommended.
  546. config DM9000
  547. tristate "DM9000 support"
  548. depends on ARM || BLACKFIN || MIPS
  549. select CRC32
  550. select MII
  551. ---help---
  552. Support for DM9000 chipset.
  553. To compile this driver as a module, choose M here. The module
  554. will be called dm9000.
  555. config DM9000_DEBUGLEVEL
  556. int "DM9000 maximum debug level"
  557. depends on DM9000
  558. default 4
  559. help
  560. The maximum level of debugging code compiled into the DM9000
  561. driver.
  562. config DM9000_FORCE_SIMPLE_PHY_POLL
  563. bool "Force simple NSR based PHY polling"
  564. depends on DM9000
  565. ---help---
  566. This configuration forces the DM9000 to use the NSR's LinkStatus
  567. bit to determine if the link is up or down instead of the more
  568. costly MII PHY reads. Note, this will not work if the chip is
  569. operating with an external PHY.
  570. config ENC28J60
  571. tristate "ENC28J60 support"
  572. depends on EXPERIMENTAL && SPI && NET_ETHERNET
  573. select CRC32
  574. ---help---
  575. Support for the Microchip EN28J60 ethernet chip.
  576. To compile this driver as a module, choose M here. The module will be
  577. called enc28j60.
  578. config ENC28J60_WRITEVERIFY
  579. bool "Enable write verify"
  580. depends on ENC28J60
  581. ---help---
  582. Enable the verify after the buffer write useful for debugging purpose.
  583. If unsure, say N.
  584. config ETHOC
  585. tristate "OpenCores 10/100 Mbps Ethernet MAC support"
  586. depends on NET_ETHERNET && HAS_IOMEM && HAS_DMA
  587. select MII
  588. select PHYLIB
  589. select CRC32
  590. select BITREVERSE
  591. help
  592. Say Y here if you want to use the OpenCores 10/100 Mbps Ethernet MAC.
  593. config GRETH
  594. tristate "Aeroflex Gaisler GRETH Ethernet MAC support"
  595. depends on SPARC
  596. select PHYLIB
  597. select CRC32
  598. help
  599. Say Y here if you want to use the Aeroflex Gaisler GRETH Ethernet MAC.
  600. config SMC911X
  601. tristate "SMSC LAN911[5678] support"
  602. select CRC32
  603. select MII
  604. depends on ARM || SUPERH || MN10300
  605. help
  606. This is a driver for SMSC's LAN911x series of Ethernet chipsets
  607. including the new LAN9115, LAN9116, LAN9117, and LAN9118.
  608. Say Y if you want it compiled into the kernel,
  609. and read the Ethernet-HOWTO, available from
  610. <http://www.tldp.org/docs.html#howto>.
  611. This driver is also available as a module. The module will be
  612. called smc911x. If you want to compile it as a module, say M
  613. here and read <file:Documentation/kbuild/modules.txt>
  614. config SMSC911X
  615. tristate "SMSC LAN911x/LAN921x families embedded ethernet support"
  616. depends on ARM || SUPERH || BLACKFIN || MIPS || MN10300
  617. select CRC32
  618. select MII
  619. select PHYLIB
  620. ---help---
  621. Say Y here if you want support for SMSC LAN911x and LAN921x families
  622. of ethernet controllers.
  623. To compile this driver as a module, choose M here and read
  624. <file:Documentation/networking/net-modules.txt>. The module
  625. will be called smsc911x.
  626. config SMSC911X_ARCH_HOOKS
  627. def_bool n
  628. depends on SMSC911X
  629. help
  630. If the arch enables this, it allows the arch to implement various
  631. hooks for more comprehensive interrupt control and also to override
  632. the source of the MAC address.
  633. config NET_VENDOR_RACAL
  634. bool "Racal-Interlan (Micom) NI cards"
  635. depends on ISA
  636. help
  637. If you have a network (Ethernet) card belonging to this class, such
  638. as the NI5010, NI5210 or NI6210, say Y and read the Ethernet-HOWTO,
  639. available from <http://www.tldp.org/docs.html#howto>.
  640. Note that the answer to this question doesn't directly affect the
  641. kernel: saying N will just cause the configurator to skip all
  642. the questions about NI cards. If you say Y, you will be asked for
  643. your specific card in the following questions.
  644. config NI5010
  645. tristate "NI5010 support (EXPERIMENTAL)"
  646. depends on NET_VENDOR_RACAL && ISA && EXPERIMENTAL && BROKEN_ON_SMP
  647. ---help---
  648. If you have a network (Ethernet) card of this type, say Y and read
  649. the Ethernet-HOWTO, available from
  650. <http://www.tldp.org/docs.html#howto>. Note that this is still
  651. experimental code.
  652. To compile this driver as a module, choose M here. The module
  653. will be called ni5010.
  654. config NI52
  655. tristate "NI5210 support"
  656. depends on NET_VENDOR_RACAL && ISA
  657. help
  658. If you have a network (Ethernet) card of this type, say Y and read
  659. the Ethernet-HOWTO, available from
  660. <http://www.tldp.org/docs.html#howto>.
  661. To compile this driver as a module, choose M here. The module
  662. will be called ni52.
  663. config DNET
  664. tristate "Dave ethernet support (DNET)"
  665. depends on NET_ETHERNET && HAS_IOMEM
  666. select PHYLIB
  667. help
  668. The Dave ethernet interface (DNET) is found on Qong Board FPGA.
  669. Say Y to include support for the DNET chip.
  670. To compile this driver as a module, choose M here: the module
  671. will be called dnet.
  672. source "drivers/net/tulip/Kconfig"
  673. config AT1700
  674. tristate "AT1700/1720 support (EXPERIMENTAL)"
  675. depends on (ISA || MCA_LEGACY) && EXPERIMENTAL
  676. select CRC32
  677. ---help---
  678. If you have a network (Ethernet) card of this type, say Y and read
  679. the Ethernet-HOWTO, available from
  680. <http://www.tldp.org/docs.html#howto>.
  681. To compile this driver as a module, choose M here. The module
  682. will be called at1700.
  683. config HP100
  684. tristate "HP 10/100VG PCLAN (ISA, EISA, PCI) support"
  685. depends on ISA || EISA || PCI
  686. help
  687. If you have a network (Ethernet) card of this type, say Y and read
  688. the Ethernet-HOWTO, available from
  689. <http://www.tldp.org/docs.html#howto>.
  690. To compile this driver as a module, choose M here. The module
  691. will be called hp100.
  692. config NET_ISA
  693. bool "Other ISA cards"
  694. depends on ISA
  695. ---help---
  696. If your network (Ethernet) card hasn't been mentioned yet and its
  697. bus system (that's the way the cards talks to the other components
  698. of your computer) is ISA (as opposed to EISA, VLB or PCI), say Y.
  699. Make sure you know the name of your card. Read the Ethernet-HOWTO,
  700. available from <http://www.tldp.org/docs.html#howto>.
  701. If unsure, say Y.
  702. Note that the answer to this question doesn't directly affect the
  703. kernel: saying N will just cause the configurator to skip all
  704. the remaining ISA network card questions. If you say Y, you will be
  705. asked for your specific card in the following questions.
  706. config EWRK3
  707. tristate "EtherWORKS 3 (DE203, DE204, DE205) support"
  708. depends on NET_ISA
  709. select CRC32
  710. ---help---
  711. This driver supports the DE203, DE204 and DE205 network (Ethernet)
  712. cards. If this is for you, say Y and read
  713. <file:Documentation/networking/ewrk3.txt> in the kernel source as
  714. well as the Ethernet-HOWTO, available from
  715. <http://www.tldp.org/docs.html#howto>.
  716. To compile this driver as a module, choose M here. The module
  717. will be called ewrk3.
  718. config EEXPRESS
  719. tristate "EtherExpress 16 support"
  720. depends on NET_ISA
  721. ---help---
  722. If you have an EtherExpress16 network (Ethernet) card, say Y and
  723. read the Ethernet-HOWTO, available from
  724. <http://www.tldp.org/docs.html#howto>. Note that the Intel
  725. EtherExpress16 card used to be regarded as a very poor choice
  726. because the driver was very unreliable. We now have a new driver
  727. that should do better.
  728. To compile this driver as a module, choose M here. The module
  729. will be called eexpress.
  730. config EEXPRESS_PRO
  731. tristate "EtherExpressPro support/EtherExpress 10 (i82595) support"
  732. depends on NET_ISA
  733. ---help---
  734. If you have a network (Ethernet) card of this type, say Y. This
  735. driver supports Intel i82595{FX,TX} based boards. Note however
  736. that the EtherExpress PRO/100 Ethernet card has its own separate
  737. driver. Please read the Ethernet-HOWTO, available from
  738. <http://www.tldp.org/docs.html#howto>.
  739. To compile this driver as a module, choose M here. The module
  740. will be called eepro.
  741. config LP486E
  742. tristate "LP486E on board Ethernet"
  743. depends on NET_ISA
  744. help
  745. Say Y here to support the 82596-based on-board Ethernet controller
  746. for the Panther motherboard, which is one of the two shipped in the
  747. Intel Professional Workstation.
  748. config ETH16I
  749. tristate "ICL EtherTeam 16i/32 support"
  750. depends on NET_ISA
  751. help
  752. If you have a network (Ethernet) card of this type, say Y and read
  753. the Ethernet-HOWTO, available from
  754. <http://www.tldp.org/docs.html#howto>.
  755. To compile this driver as a module, choose M here. The module
  756. will be called eth16i.
  757. config ZNET
  758. tristate "Zenith Z-Note support (EXPERIMENTAL)"
  759. depends on NET_ISA && EXPERIMENTAL && ISA_DMA_API
  760. help
  761. The Zenith Z-Note notebook computer has a built-in network
  762. (Ethernet) card, and this is the Linux driver for it. Note that the
  763. IBM Thinkpad 300 is compatible with the Z-Note and is also supported
  764. by this driver. Read the Ethernet-HOWTO, available from
  765. <http://www.tldp.org/docs.html#howto>.
  766. config SEEQ8005
  767. tristate "SEEQ8005 support (EXPERIMENTAL)"
  768. depends on NET_ISA && EXPERIMENTAL
  769. help
  770. This is a driver for the SEEQ 8005 network (Ethernet) card. If this
  771. is for you, read the Ethernet-HOWTO, available from
  772. <http://www.tldp.org/docs.html#howto>.
  773. To compile this driver as a module, choose M here. The module
  774. will be called seeq8005.
  775. config IBMLANA
  776. tristate "IBM LAN Adapter/A support"
  777. depends on MCA
  778. ---help---
  779. This is a Micro Channel Ethernet adapter. You need to set
  780. CONFIG_MCA to use this driver. It is both available as an in-kernel
  781. driver and as a module.
  782. To compile this driver as a module, choose M here. The only
  783. currently supported card is the IBM LAN Adapter/A for Ethernet. It
  784. will both support 16K and 32K memory windows, however a 32K window
  785. gives a better security against packet losses. Usage of multiple
  786. boards with this driver should be possible, but has not been tested
  787. up to now due to lack of hardware.
  788. config IBMVETH
  789. tristate "IBM LAN Virtual Ethernet support"
  790. depends on PPC_PSERIES
  791. ---help---
  792. This driver supports virtual ethernet adapters on newer IBM iSeries
  793. and pSeries systems.
  794. To compile this driver as a module, choose M here. The module will
  795. be called ibmveth.
  796. source "drivers/net/ibm_newemac/Kconfig"
  797. config NET_PCI
  798. bool "EISA, VLB, PCI and on board controllers"
  799. depends on ISA || EISA || PCI
  800. help
  801. This is another class of network cards which attach directly to the
  802. bus. If you have one of those, say Y and read the Ethernet-HOWTO,
  803. available from <http://www.tldp.org/docs.html#howto>.
  804. Note that the answer to this question doesn't directly affect the
  805. kernel: saying N will just cause the configurator to skip all
  806. the questions about this class of network cards. If you say Y, you
  807. will be asked for your specific card in the following questions. If
  808. you are unsure, say Y.
  809. config ADAPTEC_STARFIRE
  810. tristate "Adaptec Starfire/DuraLAN support"
  811. depends on NET_PCI && PCI
  812. select CRC32
  813. select MII
  814. help
  815. Say Y here if you have an Adaptec Starfire (or DuraLAN) PCI network
  816. adapter. The DuraLAN chip is used on the 64 bit PCI boards from
  817. Adaptec e.g. the ANA-6922A. The older 32 bit boards use the tulip
  818. driver.
  819. To compile this driver as a module, choose M here: the module
  820. will be called starfire. This is recommended.
  821. config KSZ884X_PCI
  822. tristate "Micrel KSZ8841/2 PCI"
  823. depends on NET_PCI && PCI
  824. select MII
  825. select CRC32
  826. help
  827. This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip.
  828. To compile this driver as a module, choose M here. The module
  829. will be called ksz884x.
  830. config APRICOT
  831. tristate "Apricot Xen-II on board Ethernet"
  832. depends on NET_PCI && ISA
  833. help
  834. If you have a network (Ethernet) controller of this type, say Y and
  835. read the Ethernet-HOWTO, available from
  836. <http://www.tldp.org/docs.html#howto>.
  837. To compile this driver as a module, choose M here. The module
  838. will be called apricot.
  839. config FORCEDETH
  840. tristate "nForce Ethernet support"
  841. depends on NET_PCI && PCI
  842. help
  843. If you have a network (Ethernet) controller of this type, say Y and
  844. read the Ethernet-HOWTO, available from
  845. <http://www.tldp.org/docs.html#howto>.
  846. To compile this driver as a module, choose M here. The module
  847. will be called forcedeth.
  848. config CS89x0
  849. tristate "CS89x0 support"
  850. depends on NET_ETHERNET && (ISA || EISA || MACH_IXDP2351 \
  851. || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440)
  852. ---help---
  853. Support for CS89x0 chipset based Ethernet cards. If you have a
  854. network (Ethernet) card of this type, say Y and read the
  855. Ethernet-HOWTO, available from
  856. <http://www.tldp.org/docs.html#howto> as well as
  857. <file:Documentation/networking/cs89x0.txt>.
  858. To compile this driver as a module, choose M here. The module
  859. will be called cs89x0.
  860. config CS89x0_NONISA_IRQ
  861. def_bool y
  862. depends on CS89x0 != n
  863. depends on MACH_IXDP2351 || ARCH_IXDP2X01 || MACH_MX31ADS || MACH_QQ2440
  864. config TC35815
  865. tristate "TOSHIBA TC35815 Ethernet support"
  866. depends on NET_PCI && PCI && MIPS
  867. select PHYLIB
  868. config E100
  869. tristate "Intel(R) PRO/100+ support"
  870. depends on NET_PCI && PCI
  871. select MII
  872. ---help---
  873. This driver supports Intel(R) PRO/100 family of adapters.
  874. To verify that your adapter is supported, find the board ID number
  875. on the adapter. Look for a label that has a barcode and a number
  876. in the format 123456-001 (six digits hyphen three digits).
  877. Use the above information and the Adapter & Driver ID Guide at:
  878. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  879. to identify the adapter.
  880. For the latest Intel PRO/100 network driver for Linux, see:
  881. <http://www.intel.com/p/en_US/support/highlights/network/pro100plus>
  882. More specific information on configuring the driver is in
  883. <file:Documentation/networking/e100.txt>.
  884. To compile this driver as a module, choose M here. The module
  885. will be called e100.
  886. config FEALNX
  887. tristate "Myson MTD-8xx PCI Ethernet support"
  888. depends on NET_PCI && PCI
  889. select CRC32
  890. select MII
  891. help
  892. Say Y here to support the Myson MTD-800 family of PCI-based Ethernet
  893. cards. <http://www.myson.com.tw/>
  894. config NATSEMI
  895. tristate "National Semiconductor DP8381x series PCI Ethernet support"
  896. depends on NET_PCI && PCI
  897. select CRC32
  898. help
  899. This driver is for the National Semiconductor DP83810 series,
  900. which is used in cards from PureData, NetGear, Linksys
  901. and others, including the 83815 chip.
  902. More specific information and updates are available from
  903. <http://www.scyld.com/network/natsemi.html>.
  904. config 8139CP
  905. tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
  906. depends on NET_PCI && PCI && EXPERIMENTAL
  907. select CRC32
  908. select MII
  909. help
  910. This is a driver for the Fast Ethernet PCI network cards based on
  911. the RTL8139C+ chips. If you have one of those, say Y and read
  912. the Ethernet-HOWTO, available from
  913. <http://www.tldp.org/docs.html#howto>.
  914. To compile this driver as a module, choose M here: the module
  915. will be called 8139cp. This is recommended.
  916. config 8139TOO
  917. tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
  918. depends on NET_PCI && PCI
  919. select CRC32
  920. select MII
  921. ---help---
  922. This is a driver for the Fast Ethernet PCI network cards based on
  923. the RTL 8129/8130/8139 chips. If you have one of those, say Y and
  924. read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
  925. To compile this driver as a module, choose M here: the module
  926. will be called 8139too. This is recommended.
  927. config 8139TOO_PIO
  928. bool "Use PIO instead of MMIO"
  929. default y
  930. depends on 8139TOO
  931. help
  932. This instructs the driver to use programmed I/O ports (PIO) instead
  933. of PCI shared memory (MMIO). This can possibly solve some problems
  934. in case your mainboard has memory consistency issues. If unsure,
  935. say N.
  936. config 8139TOO_TUNE_TWISTER
  937. bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
  938. depends on 8139TOO
  939. help
  940. This implements a function which might come in handy in case you
  941. are using low quality on long cabling. It is required for RealTek
  942. RTL-8139 revision K boards, and totally unused otherwise. It tries
  943. to match the transceiver to the cable characteristics. This is
  944. experimental since hardly documented by the manufacturer.
  945. If unsure, say Y.
  946. config 8139TOO_8129
  947. bool "Support for older RTL-8129/8130 boards"
  948. depends on 8139TOO
  949. help
  950. This enables support for the older and uncommon RTL-8129 and
  951. RTL-8130 chips, which support MII via an external transceiver,
  952. instead of an internal one. Disabling this option will save some
  953. memory by making the code size smaller. If unsure, say Y.
  954. config 8139_OLD_RX_RESET
  955. bool "Use older RX-reset method"
  956. depends on 8139TOO
  957. help
  958. The 8139too driver was recently updated to contain a more rapid
  959. reset sequence, in the face of severe receive errors. This "new"
  960. RX-reset method should be adequate for all boards. But if you
  961. experience problems, you can enable this option to restore the
  962. old RX-reset behavior. If unsure, say N.
  963. config R6040
  964. tristate "RDC R6040 Fast Ethernet Adapter support"
  965. depends on NET_PCI && PCI
  966. select CRC32
  967. select MII
  968. select PHYLIB
  969. help
  970. This is a driver for the R6040 Fast Ethernet MACs found in the
  971. the RDC R-321x System-on-chips.
  972. To compile this driver as a module, choose M here: the module
  973. will be called r6040. This is recommended.
  974. config SIS900
  975. tristate "SiS 900/7016 PCI Fast Ethernet Adapter support"
  976. depends on NET_PCI && PCI
  977. select CRC32
  978. select MII
  979. ---help---
  980. This is a driver for the Fast Ethernet PCI network cards based on
  981. the SiS 900 and SiS 7016 chips. The SiS 900 core is also embedded in
  982. SiS 630 and SiS 540 chipsets.
  983. This driver also supports AMD 79C901 HomePNA so that you can use
  984. your phone line as a network cable.
  985. To compile this driver as a module, choose M here: the module
  986. will be called sis900. This is recommended.
  987. config EPIC100
  988. tristate "SMC EtherPower II"
  989. depends on NET_PCI && PCI
  990. select CRC32
  991. select MII
  992. help
  993. This driver is for the SMC EtherPower II 9432 PCI Ethernet NIC,
  994. which is based on the SMC83c17x (EPIC/100).
  995. More specific information and updates are available from
  996. <http://www.scyld.com/network/epic100.html>.
  997. config SMSC9420
  998. tristate "SMSC LAN9420 PCI ethernet adapter support"
  999. depends on NET_PCI && PCI
  1000. select CRC32
  1001. select PHYLIB
  1002. select SMSC_PHY
  1003. help
  1004. This is a driver for SMSC's LAN9420 PCI ethernet adapter.
  1005. Say Y if you want it compiled into the kernel,
  1006. and read the Ethernet-HOWTO, available from
  1007. <http://www.tldp.org/docs.html#howto>.
  1008. This driver is also available as a module. The module will be
  1009. called smsc9420. If you want to compile it as a module, say M
  1010. here and read <file:Documentation/kbuild/modules.txt>
  1011. config SUNDANCE
  1012. tristate "Sundance Alta support"
  1013. depends on NET_PCI && PCI
  1014. select CRC32
  1015. select MII
  1016. help
  1017. This driver is for the Sundance "Alta" chip.
  1018. More specific information and updates are available from
  1019. <http://www.scyld.com/network/sundance.html>.
  1020. config SUNDANCE_MMIO
  1021. bool "Use MMIO instead of PIO"
  1022. depends on SUNDANCE
  1023. help
  1024. Enable memory-mapped I/O for interaction with Sundance NIC registers.
  1025. Do NOT enable this by default, PIO (enabled when MMIO is disabled)
  1026. is known to solve bugs on certain chips.
  1027. If unsure, say N.
  1028. config TLAN
  1029. tristate "TI ThunderLAN support"
  1030. depends on NET_PCI && (PCI || EISA)
  1031. ---help---
  1032. If you have a PCI Ethernet network card based on the ThunderLAN chip
  1033. which is supported by this driver, say Y and read the
  1034. Ethernet-HOWTO, available from
  1035. <http://www.tldp.org/docs.html#howto>.
  1036. Devices currently supported by this driver are Compaq Netelligent,
  1037. Compaq NetFlex and Olicom cards. Please read the file
  1038. <file:Documentation/networking/tlan.txt> for more details.
  1039. To compile this driver as a module, choose M here. The module
  1040. will be called tlan.
  1041. Please email feedback to <torben.mathiasen@compaq.com>.
  1042. config KS8842
  1043. tristate "Micrel KSZ8841/42 with generic bus interface"
  1044. depends on HAS_IOMEM && DMA_ENGINE
  1045. help
  1046. This platform driver is for KSZ8841(1-port) / KS8842(2-port)
  1047. ethernet switch chip (managed, VLAN, QoS) from Micrel or
  1048. Timberdale(FPGA).
  1049. config KS8851
  1050. tristate "Micrel KS8851 SPI"
  1051. depends on SPI
  1052. select MII
  1053. select CRC32
  1054. help
  1055. SPI driver for Micrel KS8851 SPI attached network chip.
  1056. config KS8851_MLL
  1057. tristate "Micrel KS8851 MLL"
  1058. depends on HAS_IOMEM
  1059. select MII
  1060. help
  1061. This platform driver is for Micrel KS8851 Address/data bus
  1062. multiplexed network chip.
  1063. config VIA_RHINE
  1064. tristate "VIA Rhine support"
  1065. depends on NET_PCI && PCI
  1066. select CRC32
  1067. select MII
  1068. help
  1069. If you have a VIA "Rhine" based network card (Rhine-I (VT86C100A),
  1070. Rhine-II (VT6102), or Rhine-III (VT6105)), say Y here. Rhine-type
  1071. Ethernet functions can also be found integrated on South Bridges
  1072. (e.g. VT8235).
  1073. To compile this driver as a module, choose M here. The module
  1074. will be called via-rhine.
  1075. config VIA_RHINE_MMIO
  1076. bool "Use MMIO instead of PIO"
  1077. depends on VIA_RHINE
  1078. help
  1079. This instructs the driver to use PCI shared memory (MMIO) instead of
  1080. programmed I/O ports (PIO). Enabling this gives an improvement in
  1081. processing time in parts of the driver.
  1082. If unsure, say Y.
  1083. config SC92031
  1084. tristate "Silan SC92031 PCI Fast Ethernet Adapter driver (EXPERIMENTAL)"
  1085. depends on NET_PCI && PCI && EXPERIMENTAL
  1086. select CRC32
  1087. ---help---
  1088. This is a driver for the Fast Ethernet PCI network cards based on
  1089. the Silan SC92031 chip (sometimes also called Rsltek 8139D). If you
  1090. have one of these, say Y here.
  1091. To compile this driver as a module, choose M here: the module
  1092. will be called sc92031. This is recommended.
  1093. config CPMAC
  1094. tristate "TI AR7 CPMAC Ethernet support (EXPERIMENTAL)"
  1095. depends on NET_ETHERNET && EXPERIMENTAL && AR7
  1096. select PHYLIB
  1097. help
  1098. TI AR7 CPMAC Ethernet support
  1099. config NET_POCKET
  1100. bool "Pocket and portable adapters"
  1101. depends on PARPORT
  1102. ---help---
  1103. Cute little network (Ethernet) devices which attach to the parallel
  1104. port ("pocket adapters"), commonly used with laptops. If you have
  1105. one of those, say Y and read the Ethernet-HOWTO, available from
  1106. <http://www.tldp.org/docs.html#howto>.
  1107. If you want to plug a network (or some other) card into the PCMCIA
  1108. (or PC-card) slot of your laptop instead (PCMCIA is the standard for
  1109. credit card size extension cards used by all modern laptops), you
  1110. need the pcmcia-cs package (location contained in the file
  1111. <file:Documentation/Changes>) and you can say N here.
  1112. Laptop users should read the Linux Laptop home page at
  1113. <http://www.linux-on-laptops.com/> or
  1114. Tuxmobil - Linux on Mobile Computers at <http://www.tuxmobil.org/>.
  1115. Note that the answer to this question doesn't directly affect the
  1116. kernel: saying N will just cause the configurator to skip all
  1117. the questions about this class of network devices. If you say Y, you
  1118. will be asked for your specific device in the following questions.
  1119. config ATP
  1120. tristate "AT-LAN-TEC/RealTek pocket adapter support"
  1121. depends on NET_POCKET && PARPORT && X86
  1122. select CRC32
  1123. ---help---
  1124. This is a network (Ethernet) device which attaches to your parallel
  1125. port. Read <file:drivers/net/atp.c> as well as the Ethernet-HOWTO,
  1126. available from <http://www.tldp.org/docs.html#howto>, if you
  1127. want to use this. If you intend to use this driver, you should have
  1128. said N to the "Parallel printer support", because the two drivers
  1129. don't like each other.
  1130. To compile this driver as a module, choose M here: the module
  1131. will be called atp.
  1132. config DE600
  1133. tristate "D-Link DE600 pocket adapter support"
  1134. depends on NET_POCKET && PARPORT
  1135. ---help---
  1136. This is a network (Ethernet) device which attaches to your parallel
  1137. port. Read <file:Documentation/networking/DLINK.txt> as well as the
  1138. Ethernet-HOWTO, available from
  1139. <http://www.tldp.org/docs.html#howto>, if you want to use
  1140. this. It is possible to have several devices share a single parallel
  1141. port and it is safe to compile the corresponding drivers into the
  1142. kernel.
  1143. To compile this driver as a module, choose M here: the module
  1144. will be called de600.
  1145. config DE620
  1146. tristate "D-Link DE620 pocket adapter support"
  1147. depends on NET_POCKET && PARPORT
  1148. ---help---
  1149. This is a network (Ethernet) device which attaches to your parallel
  1150. port. Read <file:Documentation/networking/DLINK.txt> as well as the
  1151. Ethernet-HOWTO, available from
  1152. <http://www.tldp.org/docs.html#howto>, if you want to use
  1153. this. It is possible to have several devices share a single parallel
  1154. port and it is safe to compile the corresponding drivers into the
  1155. kernel.
  1156. To compile this driver as a module, choose M here: the module
  1157. will be called de620.
  1158. config SGISEEQ
  1159. tristate "SGI Seeq ethernet controller support"
  1160. depends on SGI_HAS_SEEQ
  1161. help
  1162. Say Y here if you have an Seeq based Ethernet network card. This is
  1163. used in many Silicon Graphics machines.
  1164. config FEC
  1165. bool "FEC ethernet controller (of ColdFire and some i.MX CPUs)"
  1166. depends on M523x || M527x || M5272 || M528x || M520x || M532x || \
  1167. IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC
  1168. default IMX_HAVE_PLATFORM_FEC || MXS_HAVE_PLATFORM_FEC if ARM
  1169. select PHYLIB
  1170. help
  1171. Say Y here if you want to use the built-in 10/100 Fast ethernet
  1172. controller on some Motorola ColdFire and Freescale i.MX processors.
  1173. config FEC_MPC52xx
  1174. tristate "MPC52xx FEC driver"
  1175. depends on PPC_MPC52xx && PPC_BESTCOMM
  1176. select CRC32
  1177. select PHYLIB
  1178. select PPC_BESTCOMM_FEC
  1179. ---help---
  1180. This option enables support for the MPC5200's on-chip
  1181. Fast Ethernet Controller
  1182. If compiled as module, it will be called fec_mpc52xx.
  1183. config FEC_MPC52xx_MDIO
  1184. bool "MPC52xx FEC MDIO bus driver"
  1185. depends on FEC_MPC52xx
  1186. default y
  1187. ---help---
  1188. The MPC5200's FEC can connect to the Ethernet either with
  1189. an external MII PHY chip or 10 Mbps 7-wire interface
  1190. (Motorola? industry standard).
  1191. If your board uses an external PHY connected to FEC, enable this.
  1192. If not sure, enable.
  1193. If compiled as module, it will be called fec_mpc52xx_phy.
  1194. config ATL2
  1195. tristate "Atheros L2 Fast Ethernet support"
  1196. depends on PCI
  1197. select CRC32
  1198. select MII
  1199. help
  1200. This driver supports the Atheros L2 fast ethernet adapter.
  1201. To compile this driver as a module, choose M here. The module
  1202. will be called atl2.
  1203. config XILINX_EMACLITE
  1204. tristate "Xilinx 10/100 Ethernet Lite support"
  1205. depends on PPC32 || MICROBLAZE
  1206. select PHYLIB
  1207. help
  1208. This driver supports the 10/100 Ethernet Lite from Xilinx.
  1209. config FTMAC100
  1210. tristate "Faraday FTMAC100 10/100 Ethernet support"
  1211. depends on ARM
  1212. select MII
  1213. help
  1214. This driver supports the FTMAC100 10/100 Ethernet controller
  1215. from Faraday. It is used on Faraday A320, Andes AG101 and some
  1216. other ARM/NDS32 SoC's.
  1217. config LANTIQ_ETOP
  1218. tristate "Lantiq SoC ETOP driver"
  1219. depends on SOC_TYPE_XWAY
  1220. help
  1221. Support for the MII0 inside the Lantiq SoC
  1222. source "drivers/net/fs_enet/Kconfig"
  1223. source "drivers/net/octeon/Kconfig"
  1224. endif # NET_ETHERNET
  1225. #
  1226. # Gigabit Ethernet
  1227. #
  1228. menuconfig NETDEV_1000
  1229. bool "Ethernet (1000 Mbit)"
  1230. depends on !UML
  1231. default y
  1232. ---help---
  1233. Ethernet (also called IEEE 802.3 or ISO 8802-2) is the most common
  1234. type of Local Area Network (LAN) in universities and companies.
  1235. Say Y here to get to see options for Gigabit Ethernet drivers.
  1236. This option alone does not add any kernel code.
  1237. Note that drivers supporting both 100 and 1000 MBit may be listed
  1238. under "Ethernet (10 or 100MBit)" instead.
  1239. If you say N, all options in this submenu will be skipped and disabled.
  1240. if NETDEV_1000
  1241. config DL2K
  1242. tristate "DL2000/TC902x-based Gigabit Ethernet support"
  1243. depends on PCI
  1244. select CRC32
  1245. help
  1246. This driver supports DL2000/TC902x-based Gigabit ethernet cards,
  1247. which includes
  1248. D-Link DGE-550T Gigabit Ethernet Adapter.
  1249. D-Link DL2000-based Gigabit Ethernet Adapter.
  1250. Sundance/Tamarack TC902x Gigabit Ethernet Adapter.
  1251. To compile this driver as a module, choose M here: the
  1252. module will be called dl2k.
  1253. config E1000
  1254. tristate "Intel(R) PRO/1000 Gigabit Ethernet support"
  1255. depends on PCI
  1256. ---help---
  1257. This driver supports Intel(R) PRO/1000 gigabit ethernet family of
  1258. adapters. For more information on how to identify your adapter, go
  1259. to the Adapter & Driver ID Guide at:
  1260. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1261. For general information and support, go to the Intel support
  1262. website at:
  1263. <http://support.intel.com>
  1264. More specific information on configuring the driver is in
  1265. <file:Documentation/networking/e1000.txt>.
  1266. To compile this driver as a module, choose M here. The module
  1267. will be called e1000.
  1268. config E1000E
  1269. tristate "Intel(R) PRO/1000 PCI-Express Gigabit Ethernet support"
  1270. depends on PCI && (!SPARC32 || BROKEN)
  1271. select CRC32
  1272. ---help---
  1273. This driver supports the PCI-Express Intel(R) PRO/1000 gigabit
  1274. ethernet family of adapters. For PCI or PCI-X e1000 adapters,
  1275. use the regular e1000 driver For more information on how to
  1276. identify your adapter, go to the Adapter & Driver ID Guide at:
  1277. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1278. For general information and support, go to the Intel support
  1279. website at:
  1280. <http://support.intel.com>
  1281. To compile this driver as a module, choose M here. The module
  1282. will be called e1000e.
  1283. config IP1000
  1284. tristate "IP1000 Gigabit Ethernet support"
  1285. depends on PCI && EXPERIMENTAL
  1286. select MII
  1287. ---help---
  1288. This driver supports IP1000 gigabit Ethernet cards.
  1289. To compile this driver as a module, choose M here: the module
  1290. will be called ipg. This is recommended.
  1291. config IGB
  1292. tristate "Intel(R) 82575/82576 PCI-Express Gigabit Ethernet support"
  1293. depends on PCI
  1294. ---help---
  1295. This driver supports Intel(R) 82575/82576 gigabit ethernet family of
  1296. adapters. For more information on how to identify your adapter, go
  1297. to the Adapter & Driver ID Guide at:
  1298. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1299. For general information and support, go to the Intel support
  1300. website at:
  1301. <http://support.intel.com>
  1302. More specific information on configuring the driver is in
  1303. <file:Documentation/networking/e1000.txt>.
  1304. To compile this driver as a module, choose M here. The module
  1305. will be called igb.
  1306. config IGB_DCA
  1307. bool "Direct Cache Access (DCA) Support"
  1308. default y
  1309. depends on IGB && DCA && !(IGB=y && DCA=m)
  1310. ---help---
  1311. Say Y here if you want to use Direct Cache Access (DCA) in the
  1312. driver. DCA is a method for warming the CPU cache before data
  1313. is used, with the intent of lessening the impact of cache misses.
  1314. config IGBVF
  1315. tristate "Intel(R) 82576 Virtual Function Ethernet support"
  1316. depends on PCI
  1317. ---help---
  1318. This driver supports Intel(R) 82576 virtual functions. For more
  1319. information on how to identify your adapter, go to the Adapter &
  1320. Driver ID Guide at:
  1321. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1322. For general information and support, go to the Intel support
  1323. website at:
  1324. <http://support.intel.com>
  1325. More specific information on configuring the driver is in
  1326. <file:Documentation/networking/e1000.txt>.
  1327. To compile this driver as a module, choose M here. The module
  1328. will be called igbvf.
  1329. source "drivers/net/ixp2000/Kconfig"
  1330. config NS83820
  1331. tristate "National Semiconductor DP83820 support"
  1332. depends on PCI
  1333. help
  1334. This is a driver for the National Semiconductor DP83820 series
  1335. of gigabit ethernet MACs. Cards using this chipset include
  1336. the D-Link DGE-500T, PureData's PDP8023Z-TG, SMC's SMC9462TX,
  1337. SOHO-GA2000T, SOHO-GA2500T. The driver supports the use of
  1338. zero copy.
  1339. config HAMACHI
  1340. tristate "Packet Engines Hamachi GNIC-II support"
  1341. depends on PCI
  1342. select MII
  1343. help
  1344. If you have a Gigabit Ethernet card of this type, say Y and read
  1345. the Ethernet-HOWTO, available from
  1346. <http://www.tldp.org/docs.html#howto>.
  1347. To compile this driver as a module, choose M here. The module will be
  1348. called hamachi.
  1349. config YELLOWFIN
  1350. tristate "Packet Engines Yellowfin Gigabit-NIC support (EXPERIMENTAL)"
  1351. depends on PCI && EXPERIMENTAL
  1352. select CRC32
  1353. ---help---
  1354. Say Y here if you have a Packet Engines G-NIC PCI Gigabit Ethernet
  1355. adapter or the SYM53C885 Ethernet controller. The Gigabit adapter is
  1356. used by the Beowulf Linux cluster project. See
  1357. <http://cesdis.gsfc.nasa.gov/linux/drivers/yellowfin.html> for more
  1358. information about this driver in particular and Beowulf in general.
  1359. To compile this driver as a module, choose M here: the module
  1360. will be called yellowfin. This is recommended.
  1361. config R8169
  1362. tristate "Realtek 8169 gigabit ethernet support"
  1363. depends on PCI
  1364. select FW_LOADER
  1365. select CRC32
  1366. select MII
  1367. ---help---
  1368. Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
  1369. To compile this driver as a module, choose M here: the module
  1370. will be called r8169. This is recommended.
  1371. config SIS190
  1372. tristate "SiS190/SiS191 gigabit ethernet support"
  1373. depends on PCI
  1374. select CRC32
  1375. select MII
  1376. ---help---
  1377. Say Y here if you have a SiS 190 PCI Fast Ethernet adapter or
  1378. a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
  1379. appear in lan on motherboard designs which are based on SiS 965
  1380. and SiS 966 south bridge.
  1381. To compile this driver as a module, choose M here: the module
  1382. will be called sis190. This is recommended.
  1383. config SKGE
  1384. tristate "Marvell Yukon Gigabit Ethernet support"
  1385. depends on PCI
  1386. select CRC32
  1387. ---help---
  1388. This driver support the Marvell Yukon or SysKonnect SK-98xx/SK-95xx
  1389. and related Gigabit Ethernet adapters. It is a new smaller driver
  1390. with better performance and more complete ethtool support.
  1391. It does not support the link failover and network management
  1392. features that "portable" vendor supplied sk98lin driver does.
  1393. This driver supports adapters based on the original Yukon chipset:
  1394. Marvell 88E8001, Belkin F5D5005, CNet GigaCard, DLink DGE-530T,
  1395. Linksys EG1032/EG1064, 3Com 3C940/3C940B, SysKonnect SK-9871/9872.
  1396. It does not support the newer Yukon2 chipset: a separate driver,
  1397. sky2, is provided for these adapters.
  1398. To compile this driver as a module, choose M here: the module
  1399. will be called skge. This is recommended.
  1400. config SKGE_DEBUG
  1401. bool "Debugging interface"
  1402. depends on SKGE && DEBUG_FS
  1403. help
  1404. This option adds the ability to dump driver state for debugging.
  1405. The file /sys/kernel/debug/skge/ethX displays the state of the internal
  1406. transmit and receive rings.
  1407. If unsure, say N.
  1408. config SKGE_GENESIS
  1409. bool "Support for older SysKonnect Genesis boards"
  1410. depends on SKGE
  1411. help
  1412. This enables support for the older and uncommon SysKonnect Genesis
  1413. chips, which support MII via an external transceiver, instead of
  1414. an internal one. Disabling this option will save some memory
  1415. by making code smaller. If unsure say Y.
  1416. config SKY2
  1417. tristate "Marvell Yukon 2 support"
  1418. depends on PCI
  1419. select CRC32
  1420. ---help---
  1421. This driver supports Gigabit Ethernet adapters based on the
  1422. Marvell Yukon 2 chipset:
  1423. Marvell 88E8021/88E8022/88E8035/88E8036/88E8038/88E8050/88E8052/
  1424. 88E8053/88E8055/88E8061/88E8062, SysKonnect SK-9E21D/SK-9S21
  1425. There is companion driver for the older Marvell Yukon and
  1426. SysKonnect Genesis based adapters: skge.
  1427. To compile this driver as a module, choose M here: the module
  1428. will be called sky2. This is recommended.
  1429. config SKY2_DEBUG
  1430. bool "Debugging interface"
  1431. depends on SKY2 && DEBUG_FS
  1432. help
  1433. This option adds the ability to dump driver state for debugging.
  1434. The file /sys/kernel/debug/sky2/ethX displays the state of the internal
  1435. transmit and receive rings.
  1436. If unsure, say N.
  1437. config VIA_VELOCITY
  1438. tristate "VIA Velocity support"
  1439. depends on PCI
  1440. select CRC32
  1441. select CRC_CCITT
  1442. select MII
  1443. help
  1444. If you have a VIA "Velocity" based network card say Y here.
  1445. To compile this driver as a module, choose M here. The module
  1446. will be called via-velocity.
  1447. config SPIDER_NET
  1448. tristate "Spider Gigabit Ethernet driver"
  1449. depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB)
  1450. select FW_LOADER
  1451. help
  1452. This driver supports the Gigabit Ethernet chips present on the
  1453. Cell Processor-Based Blades from IBM.
  1454. config TSI108_ETH
  1455. tristate "Tundra TSI108 gigabit Ethernet support"
  1456. depends on TSI108_BRIDGE
  1457. help
  1458. This driver supports Tundra TSI108 gigabit Ethernet ports.
  1459. To compile this driver as a module, choose M here: the module
  1460. will be called tsi108_eth.
  1461. config GELIC_NET
  1462. tristate "PS3 Gigabit Ethernet driver"
  1463. depends on PPC_PS3
  1464. select PS3_SYS_MANAGER
  1465. help
  1466. This driver supports the network device on the PS3 game
  1467. console. This driver has built-in support for Ethernet.
  1468. To compile this driver as a module, choose M here: the
  1469. module will be called ps3_gelic.
  1470. config GELIC_WIRELESS
  1471. bool "PS3 Wireless support"
  1472. depends on WLAN
  1473. depends on GELIC_NET
  1474. select WIRELESS_EXT
  1475. help
  1476. This option adds the support for the wireless feature of PS3.
  1477. If you have the wireless-less model of PS3 or have no plan to
  1478. use wireless feature, disabling this option saves memory. As
  1479. the driver automatically distinguishes the models, you can
  1480. safely enable this option even if you have a wireless-less model.
  1481. config FSL_PQ_MDIO
  1482. tristate "Freescale PQ MDIO"
  1483. depends on FSL_SOC
  1484. select PHYLIB
  1485. help
  1486. This driver supports the MDIO bus used by the gianfar and UCC drivers.
  1487. config GIANFAR
  1488. tristate "Gianfar Ethernet"
  1489. depends on FSL_SOC
  1490. select FSL_PQ_MDIO
  1491. select PHYLIB
  1492. select CRC32
  1493. help
  1494. This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
  1495. and MPC86xx family of chips, and the FEC on the 8540.
  1496. config UCC_GETH
  1497. tristate "Freescale QE Gigabit Ethernet"
  1498. depends on QUICC_ENGINE
  1499. select FSL_PQ_MDIO
  1500. select PHYLIB
  1501. help
  1502. This driver supports the Gigabit Ethernet mode of the QUICC Engine,
  1503. which is available on some Freescale SOCs.
  1504. config UGETH_TX_ON_DEMAND
  1505. bool "Transmit on Demand support"
  1506. depends on UCC_GETH
  1507. config MV643XX_ETH
  1508. tristate "Marvell Discovery (643XX) and Orion ethernet support"
  1509. depends on (MV64X60 || PPC32 || PLAT_ORION) && INET
  1510. select INET_LRO
  1511. select PHYLIB
  1512. help
  1513. This driver supports the gigabit ethernet MACs in the
  1514. Marvell Discovery PPC/MIPS chipset family (MV643XX) and
  1515. in the Marvell Orion ARM SoC family.
  1516. Some boards that use the Discovery chipset are the Momenco
  1517. Ocelot C and Jaguar ATX and Pegasos II.
  1518. config XILINX_LL_TEMAC
  1519. tristate "Xilinx LL TEMAC (LocalLink Tri-mode Ethernet MAC) driver"
  1520. depends on PPC || MICROBLAZE
  1521. select PHYLIB
  1522. help
  1523. This driver supports the Xilinx 10/100/1000 LocalLink TEMAC
  1524. core used in Xilinx Spartan and Virtex FPGAs
  1525. config QLA3XXX
  1526. tristate "QLogic QLA3XXX Network Driver Support"
  1527. depends on PCI
  1528. help
  1529. This driver supports QLogic ISP3XXX gigabit Ethernet cards.
  1530. To compile this driver as a module, choose M here: the module
  1531. will be called qla3xxx.
  1532. config ATL1
  1533. tristate "Atheros/Attansic L1 Gigabit Ethernet support"
  1534. depends on PCI
  1535. select CRC32
  1536. select MII
  1537. help
  1538. This driver supports the Atheros/Attansic L1 gigabit ethernet
  1539. adapter.
  1540. To compile this driver as a module, choose M here. The module
  1541. will be called atl1.
  1542. config ATL1E
  1543. tristate "Atheros L1E Gigabit Ethernet support (EXPERIMENTAL)"
  1544. depends on PCI && EXPERIMENTAL
  1545. select CRC32
  1546. select MII
  1547. help
  1548. This driver supports the Atheros L1E gigabit ethernet adapter.
  1549. To compile this driver as a module, choose M here. The module
  1550. will be called atl1e.
  1551. config ATL1C
  1552. tristate "Atheros L1C Gigabit Ethernet support (EXPERIMENTAL)"
  1553. depends on PCI && EXPERIMENTAL
  1554. select CRC32
  1555. select MII
  1556. help
  1557. This driver supports the Atheros L1C gigabit ethernet adapter.
  1558. To compile this driver as a module, choose M here. The module
  1559. will be called atl1c.
  1560. config JME
  1561. tristate "JMicron(R) PCI-Express Gigabit Ethernet support"
  1562. depends on PCI
  1563. select CRC32
  1564. select MII
  1565. ---help---
  1566. This driver supports the PCI-Express gigabit ethernet adapters
  1567. based on JMicron JMC250 chipset.
  1568. To compile this driver as a module, choose M here. The module
  1569. will be called jme.
  1570. config S6GMAC
  1571. tristate "S6105 GMAC ethernet support"
  1572. depends on XTENSA_VARIANT_S6000
  1573. select PHYLIB
  1574. help
  1575. This driver supports the on chip ethernet device on the
  1576. S6105 xtensa processor.
  1577. To compile this driver as a module, choose M here. The module
  1578. will be called s6gmac.
  1579. source "drivers/net/stmmac/Kconfig"
  1580. config PCH_GBE
  1581. tristate "Intel EG20T PCH / OKI SEMICONDUCTOR ML7223 IOH GbE"
  1582. depends on PCI
  1583. select MII
  1584. ---help---
  1585. This is a gigabit ethernet driver for EG20T PCH.
  1586. EG20T PCH is the platform controller hub that is used in Intel's
  1587. general embedded platform.
  1588. EG20T PCH has Gigabit Ethernet interface.
  1589. Using this interface, it is able to access system devices connected
  1590. to Gigabit Ethernet.
  1591. This driver enables Gigabit Ethernet function.
  1592. This driver also can be used for OKI SEMICONDUCTOR IOH(Input/
  1593. Output Hub), ML7223.
  1594. ML7223 IOH is for MP(Media Phone) use.
  1595. ML7223 is companion chip for Intel Atom E6xx series.
  1596. ML7223 is completely compatible for Intel EG20T PCH.
  1597. config FTGMAC100
  1598. tristate "Faraday FTGMAC100 Gigabit Ethernet support"
  1599. depends on ARM
  1600. select PHYLIB
  1601. help
  1602. This driver supports the FTGMAC100 Gigabit Ethernet controller
  1603. from Faraday. It is used on Faraday A369, Andes AG102 and some
  1604. other ARM/NDS32 SoC's.
  1605. endif # NETDEV_1000
  1606. #
  1607. # 10 Gigabit Ethernet
  1608. #
  1609. menuconfig NETDEV_10000
  1610. bool "Ethernet (10000 Mbit)"
  1611. depends on !UML
  1612. default y
  1613. ---help---
  1614. Say Y here to get to see options for 10 Gigabit Ethernet drivers.
  1615. This option alone does not add any kernel code.
  1616. If you say N, all options in this submenu will be skipped and disabled.
  1617. if NETDEV_10000
  1618. config MDIO
  1619. tristate
  1620. config EHEA
  1621. tristate "eHEA Ethernet support"
  1622. depends on IBMEBUS && INET && SPARSEMEM
  1623. select INET_LRO
  1624. ---help---
  1625. This driver supports the IBM pSeries eHEA ethernet adapter.
  1626. To compile the driver as a module, choose M here. The module
  1627. will be called ehea.
  1628. config ENIC
  1629. tristate "Cisco VIC Ethernet NIC Support"
  1630. depends on PCI && INET
  1631. help
  1632. This enables the support for the Cisco VIC Ethernet card.
  1633. config IXGBE
  1634. tristate "Intel(R) 10GbE PCI Express adapters support"
  1635. depends on PCI && INET
  1636. select MDIO
  1637. ---help---
  1638. This driver supports Intel(R) 10GbE PCI Express family of
  1639. adapters. For more information on how to identify your adapter, go
  1640. to the Adapter & Driver ID Guide at:
  1641. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1642. For general information and support, go to the Intel support
  1643. website at:
  1644. <http://support.intel.com>
  1645. To compile this driver as a module, choose M here. The module
  1646. will be called ixgbe.
  1647. config IXGBE_DCA
  1648. bool "Direct Cache Access (DCA) Support"
  1649. default y
  1650. depends on IXGBE && DCA && !(IXGBE=y && DCA=m)
  1651. ---help---
  1652. Say Y here if you want to use Direct Cache Access (DCA) in the
  1653. driver. DCA is a method for warming the CPU cache before data
  1654. is used, with the intent of lessening the impact of cache misses.
  1655. config IXGBE_DCB
  1656. bool "Data Center Bridging (DCB) Support"
  1657. default n
  1658. depends on IXGBE && DCB
  1659. ---help---
  1660. Say Y here if you want to use Data Center Bridging (DCB) in the
  1661. driver.
  1662. If unsure, say N.
  1663. config IXGBEVF
  1664. tristate "Intel(R) 82599 Virtual Function Ethernet support"
  1665. depends on PCI_MSI
  1666. ---help---
  1667. This driver supports Intel(R) 82599 virtual functions. For more
  1668. information on how to identify your adapter, go to the Adapter &
  1669. Driver ID Guide at:
  1670. <http://support.intel.com/support/network/sb/CS-008441.htm>
  1671. For general information and support, go to the Intel support
  1672. website at:
  1673. <http://support.intel.com>
  1674. More specific information on configuring the driver is in
  1675. <file:Documentation/networking/ixgbevf.txt>.
  1676. To compile this driver as a module, choose M here. The module
  1677. will be called ixgbevf. MSI-X interrupt support is required
  1678. for this driver to work correctly.
  1679. config IXGB
  1680. tristate "Intel(R) PRO/10GbE support"
  1681. depends on PCI
  1682. ---help---
  1683. This driver supports Intel(R) PRO/10GbE family of adapters for
  1684. PCI-X type cards. For PCI-E type cards, use the "ixgbe" driver
  1685. instead. For more information on how to identify your adapter, go
  1686. to the Adapter & Driver ID Guide at:
  1687. <http://support.intel.com/support/network/adapter/pro100/21397.htm>
  1688. For general information and support, go to the Intel support
  1689. website at:
  1690. <http://support.intel.com>
  1691. More specific information on configuring the driver is in
  1692. <file:Documentation/networking/ixgb.txt>.
  1693. To compile this driver as a module, choose M here. The module
  1694. will be called ixgb.
  1695. config S2IO
  1696. tristate "Exar Xframe 10Gb Ethernet Adapter"
  1697. depends on PCI
  1698. ---help---
  1699. This driver supports Exar Corp's Xframe Series 10Gb Ethernet Adapters.
  1700. More specific information on configuring the driver is in
  1701. <file:Documentation/networking/s2io.txt>.
  1702. To compile this driver as a module, choose M here. The module
  1703. will be called s2io.
  1704. config VXGE
  1705. tristate "Exar X3100 Series 10GbE PCIe Server Adapter"
  1706. depends on PCI && INET
  1707. ---help---
  1708. This driver supports Exar Corp's X3100 Series 10 GbE PCIe
  1709. I/O Virtualized Server Adapter.
  1710. More specific information on configuring the driver is in
  1711. <file:Documentation/networking/vxge.txt>.
  1712. To compile this driver as a module, choose M here. The module
  1713. will be called vxge.
  1714. config VXGE_DEBUG_TRACE_ALL
  1715. bool "Enabling All Debug trace statments in driver"
  1716. default n
  1717. depends on VXGE
  1718. ---help---
  1719. Say Y here if you want to enabling all the debug trace statements in
  1720. the vxge driver. By default only few debug trace statements are
  1721. enabled.
  1722. config MYRI10GE
  1723. tristate "Myricom Myri-10G Ethernet support"
  1724. depends on PCI && INET
  1725. select FW_LOADER
  1726. select CRC32
  1727. select INET_LRO
  1728. ---help---
  1729. This driver supports Myricom Myri-10G Dual Protocol interface in
  1730. Ethernet mode. If the eeprom on your board is not recent enough,
  1731. you will need a newer firmware image.
  1732. You may get this image or more information, at:
  1733. <http://www.myri.com/scs/download-Myri10GE.html>
  1734. To compile this driver as a module, choose M here. The module
  1735. will be called myri10ge.
  1736. config MYRI10GE_DCA
  1737. bool "Direct Cache Access (DCA) Support"
  1738. default y
  1739. depends on MYRI10GE && DCA && !(MYRI10GE=y && DCA=m)
  1740. ---help---
  1741. Say Y here if you want to use Direct Cache Access (DCA) in the
  1742. driver. DCA is a method for warming the CPU cache before data
  1743. is used, with the intent of lessening the impact of cache misses.
  1744. config NETXEN_NIC
  1745. tristate "NetXen Multi port (1/10) Gigabit Ethernet NIC"
  1746. depends on PCI
  1747. select FW_LOADER
  1748. help
  1749. This enables the support for NetXen's Gigabit Ethernet card.
  1750. config NIU
  1751. tristate "Sun Neptune 10Gbit Ethernet support"
  1752. depends on PCI
  1753. select CRC32
  1754. help
  1755. This enables support for cards based upon Sun's
  1756. Neptune chipset.
  1757. config PASEMI_MAC
  1758. tristate "PA Semi 1/10Gbit MAC"
  1759. depends on PPC_PASEMI && PCI && INET
  1760. select PHYLIB
  1761. select INET_LRO
  1762. help
  1763. This driver supports the on-chip 1/10Gbit Ethernet controller on
  1764. PA Semi's PWRficient line of chips.
  1765. config MLX4_EN
  1766. tristate "Mellanox Technologies 10Gbit Ethernet support"
  1767. depends on PCI && INET
  1768. select MLX4_CORE
  1769. select INET_LRO
  1770. help
  1771. This driver supports Mellanox Technologies ConnectX Ethernet
  1772. devices.
  1773. config MLX4_CORE
  1774. tristate
  1775. depends on PCI
  1776. default n
  1777. config MLX4_DEBUG
  1778. bool "Verbose debugging output" if (MLX4_CORE && EXPERT)
  1779. depends on MLX4_CORE
  1780. default y
  1781. ---help---
  1782. This option causes debugging code to be compiled into the
  1783. mlx4_core driver. The output can be turned on via the
  1784. debug_level module parameter (which can also be set after
  1785. the driver is loaded through sysfs).
  1786. config TEHUTI
  1787. tristate "Tehuti Networks 10G Ethernet"
  1788. depends on PCI
  1789. help
  1790. Tehuti Networks 10G Ethernet NIC
  1791. config QLCNIC
  1792. tristate "QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support"
  1793. depends on PCI
  1794. select FW_LOADER
  1795. help
  1796. This driver supports QLogic QLE8240 and QLE8242 Converged Ethernet
  1797. devices.
  1798. config QLGE
  1799. tristate "QLogic QLGE 10Gb Ethernet Driver Support"
  1800. depends on PCI
  1801. help
  1802. This driver supports QLogic ISP8XXX 10Gb Ethernet cards.
  1803. To compile this driver as a module, choose M here: the module
  1804. will be called qlge.
  1805. config BNA
  1806. tristate "Brocade 1010/1020 10Gb Ethernet Driver support"
  1807. depends on PCI
  1808. ---help---
  1809. This driver supports Brocade 1010/1020 10Gb CEE capable Ethernet
  1810. cards.
  1811. To compile this driver as a module, choose M here: the module
  1812. will be called bna.
  1813. For general information and support, go to the Brocade support
  1814. website at:
  1815. <http://support.brocade.com>
  1816. source "drivers/net/sfc/Kconfig"
  1817. source "drivers/net/benet/Kconfig"
  1818. endif # NETDEV_10000
  1819. source "drivers/net/tokenring/Kconfig"
  1820. source "drivers/net/wireless/Kconfig"
  1821. source "drivers/net/wimax/Kconfig"
  1822. source "drivers/net/usb/Kconfig"
  1823. source "drivers/net/pcmcia/Kconfig"
  1824. source "drivers/net/wan/Kconfig"
  1825. source "drivers/atm/Kconfig"
  1826. source "drivers/ieee802154/Kconfig"
  1827. source "drivers/s390/net/Kconfig"
  1828. source "drivers/net/caif/Kconfig"
  1829. config TILE_NET
  1830. tristate "Tilera GBE/XGBE network driver support"
  1831. depends on TILE
  1832. default y
  1833. select CRC32
  1834. help
  1835. This is a standard Linux network device driver for the
  1836. on-chip Tilera Gigabit Ethernet and XAUI interfaces.
  1837. To compile this driver as a module, choose M here: the module
  1838. will be called tile_net.
  1839. config XEN_NETDEV_FRONTEND
  1840. tristate "Xen network device frontend driver"
  1841. depends on XEN
  1842. select XEN_XENBUS_FRONTEND
  1843. default y
  1844. help
  1845. This driver provides support for Xen paravirtual network
  1846. devices exported by a Xen network driver domain (often
  1847. domain 0).
  1848. The corresponding Linux backend driver is enabled by the
  1849. CONFIG_XEN_NETDEV_BACKEND option.
  1850. If you are compiling a kernel for use as Xen guest, you
  1851. should say Y here. To compile this driver as a module, chose
  1852. M here: the module will be called xen-netfront.
  1853. config XEN_NETDEV_BACKEND
  1854. tristate "Xen backend network device"
  1855. depends on XEN_BACKEND
  1856. help
  1857. This driver allows the kernel to act as a Xen network driver
  1858. domain which exports paravirtual network devices to other
  1859. Xen domains. These devices can be accessed by any operating
  1860. system that implements a compatible front end.
  1861. The corresponding Linux frontend driver is enabled by the
  1862. CONFIG_XEN_NETDEV_FRONTEND configuration option.
  1863. The backend driver presents a standard network device
  1864. endpoint for each paravirtual network device to the driver
  1865. domain network stack. These can then be bridged or routed
  1866. etc in order to provide full network connectivity.
  1867. If you are compiling a kernel to run in a Xen network driver
  1868. domain (often this is domain 0) you should say Y here. To
  1869. compile this driver as a module, chose M here: the module
  1870. will be called xen-netback.
  1871. config ISERIES_VETH
  1872. tristate "iSeries Virtual Ethernet driver support"
  1873. depends on PPC_ISERIES
  1874. config RIONET
  1875. tristate "RapidIO Ethernet over messaging driver support"
  1876. depends on RAPIDIO
  1877. config RIONET_TX_SIZE
  1878. int "Number of outbound queue entries"
  1879. depends on RIONET
  1880. default "128"
  1881. config RIONET_RX_SIZE
  1882. int "Number of inbound queue entries"
  1883. depends on RIONET
  1884. default "128"
  1885. config FDDI
  1886. tristate "FDDI driver support"
  1887. depends on (PCI || EISA || TC)
  1888. help
  1889. Fiber Distributed Data Interface is a high speed local area network
  1890. design; essentially a replacement for high speed Ethernet. FDDI can
  1891. run over copper or fiber. If you are connected to such a network and
  1892. want a driver for the FDDI card in your computer, say Y here (and
  1893. then also Y to the driver for your FDDI card, below). Most people
  1894. will say N.
  1895. config DEFXX
  1896. tristate "Digital DEFTA/DEFEA/DEFPA adapter support"
  1897. depends on FDDI && (PCI || EISA || TC)
  1898. ---help---
  1899. This is support for the DIGITAL series of TURBOchannel (DEFTA),
  1900. EISA (DEFEA) and PCI (DEFPA) controllers which can connect you
  1901. to a local FDDI network.
  1902. To compile this driver as a module, choose M here: the module
  1903. will be called defxx. If unsure, say N.
  1904. config DEFXX_MMIO
  1905. bool
  1906. prompt "Use MMIO instead of PIO" if PCI || EISA
  1907. depends on DEFXX
  1908. default n if PCI || EISA
  1909. default y
  1910. ---help---
  1911. This instructs the driver to use EISA or PCI memory-mapped I/O
  1912. (MMIO) as appropriate instead of programmed I/O ports (PIO).
  1913. Enabling this gives an improvement in processing time in parts
  1914. of the driver, but it may cause problems with EISA (DEFEA)
  1915. adapters. TURBOchannel does not have the concept of I/O ports,
  1916. so MMIO is always used for these (DEFTA) adapters.
  1917. If unsure, say N.
  1918. config SKFP
  1919. tristate "SysKonnect FDDI PCI support"
  1920. depends on FDDI && PCI
  1921. select BITREVERSE
  1922. ---help---
  1923. Say Y here if you have a SysKonnect FDDI PCI adapter.
  1924. The following adapters are supported by this driver:
  1925. - SK-5521 (SK-NET FDDI-UP)
  1926. - SK-5522 (SK-NET FDDI-UP DAS)
  1927. - SK-5541 (SK-NET FDDI-FP)
  1928. - SK-5543 (SK-NET FDDI-LP)
  1929. - SK-5544 (SK-NET FDDI-LP DAS)
  1930. - SK-5821 (SK-NET FDDI-UP64)
  1931. - SK-5822 (SK-NET FDDI-UP64 DAS)
  1932. - SK-5841 (SK-NET FDDI-FP64)
  1933. - SK-5843 (SK-NET FDDI-LP64)
  1934. - SK-5844 (SK-NET FDDI-LP64 DAS)
  1935. - Netelligent 100 FDDI DAS Fibre SC
  1936. - Netelligent 100 FDDI SAS Fibre SC
  1937. - Netelligent 100 FDDI DAS UTP
  1938. - Netelligent 100 FDDI SAS UTP
  1939. - Netelligent 100 FDDI SAS Fibre MIC
  1940. Read <file:Documentation/networking/skfp.txt> for information about
  1941. the driver.
  1942. Questions concerning this driver can be addressed to:
  1943. <linux@syskonnect.de>
  1944. To compile this driver as a module, choose M here: the module
  1945. will be called skfp. This is recommended.
  1946. config HIPPI
  1947. bool "HIPPI driver support (EXPERIMENTAL)"
  1948. depends on EXPERIMENTAL && INET && PCI
  1949. help
  1950. HIgh Performance Parallel Interface (HIPPI) is a 800Mbit/sec and
  1951. 1600Mbit/sec dual-simplex switched or point-to-point network. HIPPI
  1952. can run over copper (25m) or fiber (300m on multi-mode or 10km on
  1953. single-mode). HIPPI networks are commonly used for clusters and to
  1954. connect to super computers. If you are connected to a HIPPI network
  1955. and have a HIPPI network card in your computer that you want to use
  1956. under Linux, say Y here (you must also remember to enable the driver
  1957. for your HIPPI card below). Most people will say N here.
  1958. config ROADRUNNER
  1959. tristate "Essential RoadRunner HIPPI PCI adapter support (EXPERIMENTAL)"
  1960. depends on HIPPI && PCI
  1961. help
  1962. Say Y here if this is your PCI HIPPI network card.
  1963. To compile this driver as a module, choose M here: the module
  1964. will be called rrunner. If unsure, say N.
  1965. config ROADRUNNER_LARGE_RINGS
  1966. bool "Use large TX/RX rings (EXPERIMENTAL)"
  1967. depends on ROADRUNNER
  1968. help
  1969. If you say Y here, the RoadRunner driver will preallocate up to 2 MB
  1970. of additional memory to allow for fastest operation, both for
  1971. transmitting and receiving. This memory cannot be used by any other
  1972. kernel code or by user space programs. Say Y here only if you have
  1973. the memory.
  1974. config PLIP
  1975. tristate "PLIP (parallel port) support"
  1976. depends on PARPORT
  1977. ---help---
  1978. PLIP (Parallel Line Internet Protocol) is used to create a
  1979. reasonably fast mini network consisting of two (or, rarely, more)
  1980. local machines. A PLIP link from a Linux box is a popular means to
  1981. install a Linux distribution on a machine which doesn't have a
  1982. CD-ROM drive (a minimal system has to be transferred with floppies
  1983. first). The kernels on both machines need to have this PLIP option
  1984. enabled for this to work.
  1985. The PLIP driver has two modes, mode 0 and mode 1. The parallel
  1986. ports (the connectors at the computers with 25 holes) are connected
  1987. with "null printer" or "Turbo Laplink" cables which can transmit 4
  1988. bits at a time (mode 0) or with special PLIP cables, to be used on
  1989. bidirectional parallel ports only, which can transmit 8 bits at a
  1990. time (mode 1); you can find the wiring of these cables in
  1991. <file:Documentation/networking/PLIP.txt>. The cables can be up to
  1992. 15m long. Mode 0 works also if one of the machines runs DOS/Windows
  1993. and has some PLIP software installed, e.g. the Crynwr PLIP packet
  1994. driver (<http://oak.oakland.edu/simtel.net/msdos/pktdrvr-pre.html>)
  1995. and winsock or NCSA's telnet.
  1996. If you want to use PLIP, say Y and read the PLIP mini-HOWTO as well
  1997. as the NET-3-HOWTO, both available from
  1998. <http://www.tldp.org/docs.html#howto>. Note that the PLIP
  1999. protocol has been changed and this PLIP driver won't work together
  2000. with the PLIP support in Linux versions 1.0.x. This option enlarges
  2001. your kernel by about 8 KB.
  2002. To compile this driver as a module, choose M here. The module
  2003. will be called plip. If unsure, say Y or M, in case you buy
  2004. a laptop later.
  2005. config PPP
  2006. tristate "PPP (point-to-point protocol) support"
  2007. select SLHC
  2008. ---help---
  2009. PPP (Point to Point Protocol) is a newer and better SLIP. It serves
  2010. the same purpose: sending Internet traffic over telephone (and other
  2011. serial) lines. Ask your access provider if they support it, because
  2012. otherwise you can't use it; most Internet access providers these
  2013. days support PPP rather than SLIP.
  2014. To use PPP, you need an additional program called pppd as described
  2015. in the PPP-HOWTO, available at
  2016. <http://www.tldp.org/docs.html#howto>. Make sure that you have
  2017. the version of pppd recommended in <file:Documentation/Changes>.
  2018. The PPP option enlarges your kernel by about 16 KB.
  2019. There are actually two versions of PPP: the traditional PPP for
  2020. asynchronous lines, such as regular analog phone lines, and
  2021. synchronous PPP which can be used over digital ISDN lines for
  2022. example. If you want to use PPP over phone lines or other
  2023. asynchronous serial lines, you need to say Y (or M) here and also to
  2024. the next option, "PPP support for async serial ports". For PPP over
  2025. synchronous lines, you should say Y (or M) here and to "Support
  2026. synchronous PPP", below.
  2027. If you said Y to "Version information on all symbols" above, then
  2028. you cannot compile the PPP driver into the kernel; you can then only
  2029. compile it as a module. To compile this driver as a module, choose M
  2030. here. The module will be called ppp_generic.
  2031. config PPP_MULTILINK
  2032. bool "PPP multilink support (EXPERIMENTAL)"
  2033. depends on PPP && EXPERIMENTAL
  2034. help
  2035. PPP multilink is a protocol (defined in RFC 1990) which allows you
  2036. to combine several (logical or physical) lines into one logical PPP
  2037. connection, so that you can utilize your full bandwidth.
  2038. This has to be supported at the other end as well and you need a
  2039. version of the pppd daemon which understands the multilink protocol.
  2040. If unsure, say N.
  2041. config PPP_FILTER
  2042. bool "PPP filtering"
  2043. depends on PPP
  2044. help
  2045. Say Y here if you want to be able to filter the packets passing over
  2046. PPP interfaces. This allows you to control which packets count as
  2047. activity (i.e. which packets will reset the idle timer or bring up
  2048. a demand-dialed link) and which packets are to be dropped entirely.
  2049. You need to say Y here if you wish to use the pass-filter and
  2050. active-filter options to pppd.
  2051. If unsure, say N.
  2052. config PPP_ASYNC
  2053. tristate "PPP support for async serial ports"
  2054. depends on PPP
  2055. select CRC_CCITT
  2056. ---help---
  2057. Say Y (or M) here if you want to be able to use PPP over standard
  2058. asynchronous serial ports, such as COM1 or COM2 on a PC. If you use
  2059. a modem (not a synchronous or ISDN modem) to contact your ISP, you
  2060. need this option.
  2061. To compile this driver as a module, choose M here.
  2062. If unsure, say Y.
  2063. config PPP_SYNC_TTY
  2064. tristate "PPP support for sync tty ports"
  2065. depends on PPP
  2066. help
  2067. Say Y (or M) here if you want to be able to use PPP over synchronous
  2068. (HDLC) tty devices, such as the SyncLink adapter. These devices
  2069. are often used for high-speed leased lines like T1/E1.
  2070. To compile this driver as a module, choose M here.
  2071. config PPP_DEFLATE
  2072. tristate "PPP Deflate compression"
  2073. depends on PPP
  2074. select ZLIB_INFLATE
  2075. select ZLIB_DEFLATE
  2076. ---help---
  2077. Support for the Deflate compression method for PPP, which uses the
  2078. Deflate algorithm (the same algorithm that gzip uses) to compress
  2079. each PPP packet before it is sent over the wire. The machine at the
  2080. other end of the PPP link (usually your ISP) has to support the
  2081. Deflate compression method as well for this to be useful. Even if
  2082. they don't support it, it is safe to say Y here.
  2083. To compile this driver as a module, choose M here.
  2084. config PPP_BSDCOMP
  2085. tristate "PPP BSD-Compress compression"
  2086. depends on PPP
  2087. ---help---
  2088. Support for the BSD-Compress compression method for PPP, which uses
  2089. the LZW compression method to compress each PPP packet before it is
  2090. sent over the wire. The machine at the other end of the PPP link
  2091. (usually your ISP) has to support the BSD-Compress compression
  2092. method as well for this to be useful. Even if they don't support it,
  2093. it is safe to say Y here.
  2094. The PPP Deflate compression method ("PPP Deflate compression",
  2095. above) is preferable to BSD-Compress, because it compresses better
  2096. and is patent-free.
  2097. Note that the BSD compression code will always be compiled as a
  2098. module; it is called bsd_comp and will show up in the directory
  2099. modules once you have said "make modules". If unsure, say N.
  2100. config PPP_MPPE
  2101. tristate "PPP MPPE compression (encryption) (EXPERIMENTAL)"
  2102. depends on PPP && EXPERIMENTAL
  2103. select CRYPTO
  2104. select CRYPTO_SHA1
  2105. select CRYPTO_ARC4
  2106. select CRYPTO_ECB
  2107. ---help---
  2108. Support for the MPPE Encryption protocol, as employed by the
  2109. Microsoft Point-to-Point Tunneling Protocol.
  2110. See http://pptpclient.sourceforge.net/ for information on
  2111. configuring PPTP clients and servers to utilize this method.
  2112. config PPPOE
  2113. tristate "PPP over Ethernet (EXPERIMENTAL)"
  2114. depends on EXPERIMENTAL && PPP
  2115. help
  2116. Support for PPP over Ethernet.
  2117. This driver requires the latest version of pppd from the CVS
  2118. repository at cvs.samba.org. Alternatively, see the
  2119. RoaringPenguin package (<http://www.roaringpenguin.com/pppoe>)
  2120. which contains instruction on how to use this driver (under
  2121. the heading "Kernel mode PPPoE").
  2122. config PPTP
  2123. tristate "PPP over IPv4 (PPTP) (EXPERIMENTAL)"
  2124. depends on EXPERIMENTAL && PPP && NET_IPGRE_DEMUX
  2125. help
  2126. Support for PPP over IPv4.(Point-to-Point Tunneling Protocol)
  2127. This driver requires pppd plugin to work in client mode or
  2128. modified pptpd (poptop) to work in server mode.
  2129. See http://accel-pptp.sourceforge.net/ for information how to
  2130. utilize this module.
  2131. config PPPOATM
  2132. tristate "PPP over ATM"
  2133. depends on ATM && PPP
  2134. help
  2135. Support PPP (Point to Point Protocol) encapsulated in ATM frames.
  2136. This implementation does not yet comply with section 8 of RFC2364,
  2137. which can lead to bad results if the ATM peer loses state and
  2138. changes its encapsulation unilaterally.
  2139. config PPPOL2TP
  2140. tristate "PPP over L2TP (EXPERIMENTAL)"
  2141. depends on EXPERIMENTAL && L2TP && PPP
  2142. help
  2143. Support for PPP-over-L2TP socket family. L2TP is a protocol
  2144. used by ISPs and enterprises to tunnel PPP traffic over UDP
  2145. tunnels. L2TP is replacing PPTP for VPN uses.
  2146. config SLIP
  2147. tristate "SLIP (serial line) support"
  2148. ---help---
  2149. Say Y if you intend to use SLIP or CSLIP (compressed SLIP) to
  2150. connect to your Internet service provider or to connect to some
  2151. other local Unix box or if you want to configure your Linux box as a
  2152. Slip/CSlip server for other people to dial in. SLIP (Serial Line
  2153. Internet Protocol) is a protocol used to send Internet traffic over
  2154. serial connections such as telephone lines or null modem cables;
  2155. nowadays, the protocol PPP is more commonly used for this same
  2156. purpose.
  2157. Normally, your access provider has to support SLIP in order for you
  2158. to be able to use it, but there is now a SLIP emulator called SLiRP
  2159. around (available from
  2160. <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
  2161. allows you to use SLIP over a regular dial up shell connection. If
  2162. you plan to use SLiRP, make sure to say Y to CSLIP, below. The
  2163. NET-3-HOWTO, available from
  2164. <http://www.tldp.org/docs.html#howto>, explains how to
  2165. configure SLIP. Note that you don't need this option if you just
  2166. want to run term (term is a program which gives you almost full
  2167. Internet connectivity if you have a regular dial up shell account on
  2168. some Internet connected Unix computer. Read
  2169. <http://www.bart.nl/~patrickr/term-howto/Term-HOWTO.html>). SLIP
  2170. support will enlarge your kernel by about 4 KB. If unsure, say N.
  2171. To compile this driver as a module, choose M here. The module
  2172. will be called slip.
  2173. config SLIP_COMPRESSED
  2174. bool "CSLIP compressed headers"
  2175. depends on SLIP
  2176. select SLHC
  2177. ---help---
  2178. This protocol is faster than SLIP because it uses compression on the
  2179. TCP/IP headers (not on the data itself), but it has to be supported
  2180. on both ends. Ask your access provider if you are not sure and
  2181. answer Y, just in case. You will still be able to use plain SLIP. If
  2182. you plan to use SLiRP, the SLIP emulator (available from
  2183. <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
  2184. allows you to use SLIP over a regular dial up shell connection, you
  2185. definitely want to say Y here. The NET-3-HOWTO, available from
  2186. <http://www.tldp.org/docs.html#howto>, explains how to configure
  2187. CSLIP. This won't enlarge your kernel.
  2188. config SLHC
  2189. tristate
  2190. help
  2191. This option enables Van Jacobsen serial line header compression
  2192. routines.
  2193. config SLIP_SMART
  2194. bool "Keepalive and linefill"
  2195. depends on SLIP
  2196. help
  2197. Adds additional capabilities to the SLIP driver to support the
  2198. RELCOM line fill and keepalive monitoring. Ideal on poor quality
  2199. analogue lines.
  2200. config SLIP_MODE_SLIP6
  2201. bool "Six bit SLIP encapsulation"
  2202. depends on SLIP
  2203. help
  2204. Just occasionally you may need to run IP over hostile serial
  2205. networks that don't pass all control characters or are only seven
  2206. bit. Saying Y here adds an extra mode you can use with SLIP:
  2207. "slip6". In this mode, SLIP will only send normal ASCII symbols over
  2208. the serial device. Naturally, this has to be supported at the other
  2209. end of the link as well. It's good enough, for example, to run IP
  2210. over the async ports of a Camtec JNT Pad. If unsure, say N.
  2211. config NET_FC
  2212. bool "Fibre Channel driver support"
  2213. depends on SCSI && PCI
  2214. help
  2215. Fibre Channel is a high speed serial protocol mainly used to connect
  2216. large storage devices to the computer; it is compatible with and
  2217. intended to replace SCSI.
  2218. If you intend to use Fibre Channel, you need to have a Fibre channel
  2219. adaptor card in your computer; say Y here and to the driver for your
  2220. adaptor below. You also should have said Y to "SCSI support" and
  2221. "SCSI generic support".
  2222. config NETCONSOLE
  2223. tristate "Network console logging support"
  2224. ---help---
  2225. If you want to log kernel messages over the network, enable this.
  2226. See <file:Documentation/networking/netconsole.txt> for details.
  2227. config NETCONSOLE_DYNAMIC
  2228. bool "Dynamic reconfiguration of logging targets"
  2229. depends on NETCONSOLE && SYSFS && CONFIGFS_FS && \
  2230. !(NETCONSOLE=y && CONFIGFS_FS=m)
  2231. help
  2232. This option enables the ability to dynamically reconfigure target
  2233. parameters (interface, IP addresses, port numbers, MAC addresses)
  2234. at runtime through a userspace interface exported using configfs.
  2235. See <file:Documentation/networking/netconsole.txt> for details.
  2236. config NETPOLL
  2237. def_bool NETCONSOLE
  2238. config NETPOLL_TRAP
  2239. bool "Netpoll traffic trapping"
  2240. default n
  2241. depends on NETPOLL
  2242. config NET_POLL_CONTROLLER
  2243. def_bool NETPOLL
  2244. config VIRTIO_NET
  2245. tristate "Virtio network driver (EXPERIMENTAL)"
  2246. depends on EXPERIMENTAL && VIRTIO
  2247. ---help---
  2248. This is the virtual network driver for virtio. It can be used with
  2249. lguest or QEMU based VMMs (like KVM or Xen). Say Y or M.
  2250. config VMXNET3
  2251. tristate "VMware VMXNET3 ethernet driver"
  2252. depends on PCI && INET
  2253. help
  2254. This driver supports VMware's vmxnet3 virtual ethernet NIC.
  2255. To compile this driver as a module, choose M here: the
  2256. module will be called vmxnet3.
  2257. endif # NETDEVICES