Kconfig 106 KB

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