Kconfig 93 KB

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