Kconfig 99 KB

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