Kconfig 100 KB

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