Kconfig 96 KB

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