Kconfig 106 KB

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