Kconfig 102 KB

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