Kconfig 104 KB

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