Kconfig 100 KB

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