Kconfig 95 KB

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