Kconfig 103 KB

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