Kconfig 107 KB

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