Kconfig 99 KB

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