Kconfig 101 KB

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