Kconfig 90 KB

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