Kconfig 95 KB

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