Kconfig 96 KB

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