Kconfig 90 KB

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