Kconfig 91 KB

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