Kconfig 107 KB

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