Kconfig 100 KB

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