Kconfig 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  1. #
  2. # Character device configuration
  3. #
  4. menu "Character devices"
  5. config VT
  6. bool "Virtual terminal" if EMBEDDED
  7. select INPUT
  8. default y if !VIOCONS
  9. ---help---
  10. If you say Y here, you will get support for terminal devices with
  11. display and keyboard devices. These are called "virtual" because you
  12. can run several virtual terminals (also called virtual consoles) on
  13. one physical terminal. This is rather useful, for example one
  14. virtual terminal can collect system messages and warnings, another
  15. one can be used for a text-mode user session, and a third could run
  16. an X session, all in parallel. Switching between virtual terminals
  17. is done with certain key combinations, usually Alt-<function key>.
  18. The setterm command ("man setterm") can be used to change the
  19. properties (such as colors or beeping) of a virtual terminal. The
  20. man page console_codes(4) ("man console_codes") contains the special
  21. character sequences that can be used to change those properties
  22. directly. The fonts used on virtual terminals can be changed with
  23. the setfont ("man setfont") command and the key bindings are defined
  24. with the loadkeys ("man loadkeys") command.
  25. You need at least one virtual terminal device in order to make use
  26. of your keyboard and monitor. Therefore, only people configuring an
  27. embedded system would want to say N here in order to save some
  28. memory; the only way to log into such a system is then via a serial
  29. or network connection.
  30. If unsure, say Y, or else you won't be able to do much with your new
  31. shiny Linux system :-)
  32. config VT_CONSOLE
  33. bool "Support for console on virtual terminal" if EMBEDDED
  34. depends on VT
  35. default y
  36. ---help---
  37. The system console is the device which receives all kernel messages
  38. and warnings and which allows logins in single user mode. If you
  39. answer Y here, a virtual terminal (the device used to interact with
  40. a physical terminal) can be used as system console. This is the most
  41. common mode of operations, so you should say Y here unless you want
  42. the kernel messages be output only to a serial port (in which case
  43. you should say Y to "Console on serial port", below).
  44. If you do say Y here, by default the currently visible virtual
  45. terminal (/dev/tty0) will be used as system console. You can change
  46. that with a kernel command line option such as "console=tty3" which
  47. would use the third virtual terminal as system console. (Try "man
  48. bootparam" or see the documentation of your boot loader (lilo or
  49. loadlin) about how to pass options to the kernel at boot time.)
  50. If unsure, say Y.
  51. config HW_CONSOLE
  52. bool
  53. depends on VT && !S390 && !UML
  54. default y
  55. config VT_HW_CONSOLE_BINDING
  56. bool "Support for binding and unbinding console drivers"
  57. depends on HW_CONSOLE
  58. default n
  59. ---help---
  60. The virtual terminal is the device that interacts with the physical
  61. terminal through console drivers. On these systems, at least one
  62. console driver is loaded. In other configurations, additional console
  63. drivers may be enabled, such as the framebuffer console. If more than
  64. 1 console driver is enabled, setting this to 'y' will allow you to
  65. select the console driver that will serve as the backend for the
  66. virtual terminals.
  67. See <file:Documentation/console/console.txt> for more
  68. information. For framebuffer console users, please refer to
  69. <file:Documentation/fb/fbcon.txt>.
  70. config SERIAL_NONSTANDARD
  71. bool "Non-standard serial port support"
  72. ---help---
  73. Say Y here if you have any non-standard serial boards -- boards
  74. which aren't supported using the standard "dumb" serial driver.
  75. This includes intelligent serial boards such as Cyclades,
  76. Digiboards, etc. These are usually used for systems that need many
  77. serial ports because they serve many terminals or dial-in
  78. connections.
  79. Note that the answer to this question won't directly affect the
  80. kernel: saying N will just cause the configurator to skip all
  81. the questions about non-standard serial boards.
  82. Most people can say N here.
  83. config COMPUTONE
  84. tristate "Computone IntelliPort Plus serial support"
  85. depends on SERIAL_NONSTANDARD
  86. ---help---
  87. This driver supports the entire family of Intelliport II/Plus
  88. controllers with the exception of the MicroChannel controllers and
  89. products previous to the Intelliport II. These are multiport cards,
  90. which give you many serial ports. You would need something like this
  91. to connect more than two modems to your Linux box, for instance in
  92. order to become a dial-in server. If you have a card like that, say
  93. Y here and read <file:Documentation/computone.txt>.
  94. To compile this driver as modules, choose M here: the
  95. modules will be called ip2 and ip2main.
  96. config ROCKETPORT
  97. tristate "Comtrol RocketPort support"
  98. depends on SERIAL_NONSTANDARD
  99. help
  100. This driver supports Comtrol RocketPort and RocketModem PCI boards.
  101. These boards provide 2, 4, 8, 16, or 32 high-speed serial ports or
  102. modems. For information about the RocketPort/RocketModem boards
  103. and this driver read <file:Documentation/rocket.txt>.
  104. To compile this driver as a module, choose M here: the
  105. module will be called rocket.
  106. If you want to compile this driver into the kernel, say Y here. If
  107. you don't have a Comtrol RocketPort/RocketModem card installed, say N.
  108. config CYCLADES
  109. tristate "Cyclades async mux support"
  110. depends on SERIAL_NONSTANDARD
  111. ---help---
  112. This driver supports Cyclades Z and Y multiserial boards.
  113. You would need something like this to connect more than two modems to
  114. your Linux box, for instance in order to become a dial-in server.
  115. For information about the Cyclades-Z card, read
  116. <file:drivers/char/README.cycladesZ>.
  117. To compile this driver as a module, choose M here: the
  118. module will be called cyclades.
  119. If you haven't heard about it, it's safe to say N.
  120. config CYZ_INTR
  121. bool "Cyclades-Z interrupt mode operation (EXPERIMENTAL)"
  122. depends on EXPERIMENTAL && CYCLADES
  123. help
  124. The Cyclades-Z family of multiport cards allows 2 (two) driver op
  125. modes: polling and interrupt. In polling mode, the driver will check
  126. the status of the Cyclades-Z ports every certain amount of time
  127. (which is called polling cycle and is configurable). In interrupt
  128. mode, it will use an interrupt line (IRQ) in order to check the
  129. status of the Cyclades-Z ports. The default op mode is polling. If
  130. unsure, say N.
  131. config DIGIEPCA
  132. tristate "Digiboard Intelligent Async Support"
  133. depends on SERIAL_NONSTANDARD
  134. ---help---
  135. This is a driver for Digi International's Xx, Xeve, and Xem series
  136. of cards which provide multiple serial ports. You would need
  137. something like this to connect more than two modems to your Linux
  138. box, for instance in order to become a dial-in server. This driver
  139. supports the original PC (ISA) boards as well as PCI, and EISA. If
  140. you have a card like this, say Y here and read the file
  141. <file:Documentation/digiepca.txt>.
  142. To compile this driver as a module, choose M here: the
  143. module will be called epca.
  144. config ESPSERIAL
  145. tristate "Hayes ESP serial port support"
  146. depends on SERIAL_NONSTANDARD && ISA && ISA_DMA_API
  147. help
  148. This is a driver which supports Hayes ESP serial ports. Both single
  149. port cards and multiport cards are supported. Make sure to read
  150. <file:Documentation/hayes-esp.txt>.
  151. To compile this driver as a module, choose M here: the
  152. module will be called esp.
  153. If unsure, say N.
  154. config MOXA_INTELLIO
  155. tristate "Moxa Intellio support"
  156. depends on SERIAL_NONSTANDARD
  157. help
  158. Say Y here if you have a Moxa Intellio multiport serial card.
  159. To compile this driver as a module, choose M here: the
  160. module will be called moxa.
  161. config MOXA_SMARTIO
  162. tristate "Moxa SmartIO support"
  163. depends on SERIAL_NONSTANDARD
  164. help
  165. Say Y here if you have a Moxa SmartIO multiport serial card.
  166. This driver can also be built as a module ( = code which can be
  167. inserted in and removed from the running kernel whenever you want).
  168. The module will be called mxser. If you want to do that, say M
  169. here.
  170. config ISI
  171. tristate "Multi-Tech multiport card support (EXPERIMENTAL)"
  172. depends on SERIAL_NONSTANDARD
  173. select FW_LOADER
  174. help
  175. This is a driver for the Multi-Tech cards which provide several
  176. serial ports. The driver is experimental and can currently only be
  177. built as a module. The module will be called isicom.
  178. If you want to do that, choose M here.
  179. config SYNCLINK
  180. tristate "Microgate SyncLink card support"
  181. depends on SERIAL_NONSTANDARD && PCI && ISA_DMA_API
  182. help
  183. Provides support for the SyncLink ISA and PCI multiprotocol serial
  184. adapters. These adapters support asynchronous and HDLC bit
  185. synchronous communication up to 10Mbps (PCI adapter).
  186. This driver can only be built as a module ( = code which can be
  187. inserted in and removed from the running kernel whenever you want).
  188. The module will be called synclink. If you want to do that, say M
  189. here.
  190. config SYNCLINKMP
  191. tristate "SyncLink Multiport support"
  192. depends on SERIAL_NONSTANDARD
  193. help
  194. Enable support for the SyncLink Multiport (2 or 4 ports)
  195. serial adapter, running asynchronous and HDLC communications up
  196. to 2.048Mbps. Each ports is independently selectable for
  197. RS-232, V.35, RS-449, RS-530, and X.21
  198. This driver may be built as a module ( = code which can be
  199. inserted in and removed from the running kernel whenever you want).
  200. The module will be called synclinkmp. If you want to do that, say M
  201. here.
  202. config SYNCLINK_GT
  203. tristate "SyncLink GT/AC support"
  204. depends on SERIAL_NONSTANDARD && PCI
  205. help
  206. Support for SyncLink GT and SyncLink AC families of
  207. synchronous and asynchronous serial adapters
  208. manufactured by Microgate Systems, Ltd. (www.microgate.com)
  209. config N_HDLC
  210. tristate "HDLC line discipline support"
  211. depends on SERIAL_NONSTANDARD
  212. help
  213. Allows synchronous HDLC communications with tty device drivers that
  214. support synchronous HDLC such as the Microgate SyncLink adapter.
  215. This driver can only be built as a module ( = code which can be
  216. inserted in and removed from the running kernel whenever you want).
  217. The module will be called n_hdlc. If you want to do that, say M
  218. here.
  219. config RISCOM8
  220. tristate "SDL RISCom/8 card support"
  221. depends on SERIAL_NONSTANDARD && BROKEN_ON_SMP
  222. help
  223. This is a driver for the SDL Communications RISCom/8 multiport card,
  224. which gives you many serial ports. You would need something like
  225. this to connect more than two modems to your Linux box, for instance
  226. in order to become a dial-in server. If you have a card like that,
  227. say Y here and read the file <file:Documentation/riscom8.txt>.
  228. Also it's possible to say M here and compile this driver as kernel
  229. loadable module; the module will be called riscom8.
  230. config SPECIALIX
  231. tristate "Specialix IO8+ card support"
  232. depends on SERIAL_NONSTANDARD
  233. help
  234. This is a driver for the Specialix IO8+ multiport card (both the
  235. ISA and the PCI version) which gives you many serial ports. You
  236. would need something like this to connect more than two modems to
  237. your Linux box, for instance in order to become a dial-in server.
  238. If you have a card like that, say Y here and read the file
  239. <file:Documentation/specialix.txt>. Also it's possible to say M here
  240. and compile this driver as kernel loadable module which will be
  241. called specialix.
  242. config SPECIALIX_RTSCTS
  243. bool "Specialix DTR/RTS pin is RTS"
  244. depends on SPECIALIX
  245. help
  246. The Specialix IO8+ card can only support either RTS or DTR. If you
  247. say N here, the driver will use the pin as "DTR" when the tty is in
  248. software handshake mode. If you say Y here or hardware handshake is
  249. on, it will always be RTS. Read the file
  250. <file:Documentation/specialix.txt> for more information.
  251. config SX
  252. tristate "Specialix SX (and SI) card support"
  253. depends on SERIAL_NONSTANDARD
  254. help
  255. This is a driver for the SX and SI multiport serial cards.
  256. Please read the file <file:Documentation/sx.txt> for details.
  257. This driver can only be built as a module ( = code which can be
  258. inserted in and removed from the running kernel whenever you want).
  259. The module will be called sx. If you want to do that, say M here.
  260. config RIO
  261. tristate "Specialix RIO system support"
  262. depends on SERIAL_NONSTANDARD
  263. help
  264. This is a driver for the Specialix RIO, a smart serial card which
  265. drives an outboard box that can support up to 128 ports. Product
  266. information is at <http://www.perle.com/support/documentation.html#multiport>.
  267. There are both ISA and PCI versions.
  268. config RIO_OLDPCI
  269. bool "Support really old RIO/PCI cards"
  270. depends on RIO
  271. help
  272. Older RIO PCI cards need some initialization-time configuration to
  273. determine the IRQ and some control addresses. If you have a RIO and
  274. this doesn't seem to work, try setting this to Y.
  275. config STALDRV
  276. bool "Stallion multiport serial support"
  277. depends on SERIAL_NONSTANDARD
  278. help
  279. Stallion cards give you many serial ports. You would need something
  280. like this to connect more than two modems to your Linux box, for
  281. instance in order to become a dial-in server. If you say Y here,
  282. you will be asked for your specific card model in the next
  283. questions. Make sure to read <file:Documentation/stallion.txt> in
  284. this case. If you have never heard about all this, it's safe to
  285. say N.
  286. config STALLION
  287. tristate "Stallion EasyIO or EC8/32 support"
  288. depends on STALDRV && BROKEN_ON_SMP
  289. help
  290. If you have an EasyIO or EasyConnection 8/32 multiport Stallion
  291. card, then this is for you; say Y. Make sure to read
  292. <file:Documentation/stallion.txt>.
  293. To compile this driver as a module, choose M here: the
  294. module will be called stallion.
  295. config ISTALLION
  296. tristate "Stallion EC8/64, ONboard, Brumby support"
  297. depends on STALDRV && BROKEN_ON_SMP
  298. help
  299. If you have an EasyConnection 8/64, ONboard, Brumby or Stallion
  300. serial multiport card, say Y here. Make sure to read
  301. <file:Documentation/stallion.txt>.
  302. To compile this driver as a module, choose M here: the
  303. module will be called istallion.
  304. config AU1000_UART
  305. bool "Enable Au1000 UART Support"
  306. depends on SERIAL_NONSTANDARD && MIPS
  307. help
  308. If you have an Alchemy AU1000 processor (MIPS based) and you want
  309. to use serial ports, say Y. Otherwise, say N.
  310. config AU1000_SERIAL_CONSOLE
  311. bool "Enable Au1000 serial console"
  312. depends on AU1000_UART
  313. help
  314. If you have an Alchemy AU1000 processor (MIPS based) and you want
  315. to use a console on a serial port, say Y. Otherwise, say N.
  316. config A2232
  317. tristate "Commodore A2232 serial support (EXPERIMENTAL)"
  318. depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP
  319. ---help---
  320. This option supports the 2232 7-port serial card shipped with the
  321. Amiga 2000 and other Zorro-bus machines, dating from 1989. At
  322. a max of 19,200 bps, the ports are served by a 6551 ACIA UART chip
  323. each, plus a 8520 CIA, and a master 6502 CPU and buffer as well. The
  324. ports were connected with 8 pin DIN connectors on the card bracket,
  325. for which 8 pin to DB25 adapters were supplied. The card also had
  326. jumpers internally to toggle various pinning configurations.
  327. This driver can be built as a module; but then "generic_serial"
  328. will also be built as a module. This has to be loaded before
  329. "ser_a2232". If you want to do this, answer M here.
  330. config SGI_SNSC
  331. bool "SGI Altix system controller communication support"
  332. depends on (IA64_SGI_SN2 || IA64_GENERIC)
  333. help
  334. If you have an SGI Altix and you want to enable system
  335. controller communication from user space (you want this!),
  336. say Y. Otherwise, say N.
  337. config SGI_TIOCX
  338. bool "SGI TIO CX driver support"
  339. depends on (IA64_SGI_SN2 || IA64_GENERIC)
  340. help
  341. If you have an SGI Altix and you have fpga devices attached
  342. to your TIO, say Y here, otherwise say N.
  343. config SGI_MBCS
  344. tristate "SGI FPGA Core Services driver support"
  345. depends on SGI_TIOCX
  346. help
  347. If you have an SGI Altix with an attached SABrick
  348. say Y or M here, otherwise say N.
  349. config MSPEC
  350. tristate "Memory special operations driver"
  351. depends on IA64
  352. help
  353. If you have an ia64 and you want to enable memory special
  354. operations support (formerly known as fetchop), say Y here,
  355. otherwise say N.
  356. source "drivers/serial/Kconfig"
  357. config UNIX98_PTYS
  358. bool "Unix98 PTY support" if EMBEDDED
  359. default y
  360. ---help---
  361. A pseudo terminal (PTY) is a software device consisting of two
  362. halves: a master and a slave. The slave device behaves identical to
  363. a physical terminal; the master device is used by a process to
  364. read data from and write data to the slave, thereby emulating a
  365. terminal. Typical programs for the master side are telnet servers
  366. and xterms.
  367. Linux has traditionally used the BSD-like names /dev/ptyxx for
  368. masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
  369. has a number of problems. The GNU C library glibc 2.1 and later,
  370. however, supports the Unix98 naming standard: in order to acquire a
  371. pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
  372. terminal is then made available to the process and the pseudo
  373. terminal slave can be accessed as /dev/pts/<number>. What was
  374. traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
  375. All modern Linux systems use the Unix98 ptys. Say Y unless
  376. you're on an embedded system and want to conserve memory.
  377. config LEGACY_PTYS
  378. bool "Legacy (BSD) PTY support"
  379. default y
  380. ---help---
  381. A pseudo terminal (PTY) is a software device consisting of two
  382. halves: a master and a slave. The slave device behaves identical to
  383. a physical terminal; the master device is used by a process to
  384. read data from and write data to the slave, thereby emulating a
  385. terminal. Typical programs for the master side are telnet servers
  386. and xterms.
  387. Linux has traditionally used the BSD-like names /dev/ptyxx
  388. for masters and /dev/ttyxx for slaves of pseudo
  389. terminals. This scheme has a number of problems, including
  390. security. This option enables these legacy devices; on most
  391. systems, it is safe to say N.
  392. config LEGACY_PTY_COUNT
  393. int "Maximum number of legacy PTY in use"
  394. depends on LEGACY_PTYS
  395. range 1 256
  396. default "256"
  397. ---help---
  398. The maximum number of legacy PTYs that can be used at any one time.
  399. The default is 256, and should be more than enough. Embedded
  400. systems may want to reduce this to save memory.
  401. When not in use, each legacy PTY occupies 12 bytes on 32-bit
  402. architectures and 24 bytes on 64-bit architectures.
  403. config BRIQ_PANEL
  404. tristate 'Total Impact briQ front panel driver'
  405. depends on PPC_CHRP
  406. ---help---
  407. The briQ is a small footprint CHRP computer with a frontpanel VFD, a
  408. tristate led and two switches. It is the size of a CDROM drive.
  409. If you have such one and want anything showing on the VFD then you
  410. must answer Y here.
  411. To compile this driver as a module, choose M here: the
  412. module will be called briq_panel.
  413. It's safe to say N here.
  414. config PRINTER
  415. tristate "Parallel printer support"
  416. depends on PARPORT
  417. ---help---
  418. If you intend to attach a printer to the parallel port of your Linux
  419. box (as opposed to using a serial printer; if the connector at the
  420. printer has 9 or 25 holes ["female"], then it's serial), say Y.
  421. Also read the Printing-HOWTO, available from
  422. <http://www.tldp.org/docs.html#howto>.
  423. It is possible to share one parallel port among several devices
  424. (e.g. printer and ZIP drive) and it is safe to compile the
  425. corresponding drivers into the kernel.
  426. To compile this driver as a module, choose M here and read
  427. <file:Documentation/parport.txt>. The module will be called lp.
  428. If you have several parallel ports, you can specify which ports to
  429. use with the "lp" kernel command line option. (Try "man bootparam"
  430. or see the documentation of your boot loader (lilo or loadlin) about
  431. how to pass options to the kernel at boot time.) The syntax of the
  432. "lp" command line option can be found in <file:drivers/char/lp.c>.
  433. If you have more than 8 printers, you need to increase the LP_NO
  434. macro in lp.c and the PARPORT_MAX macro in parport.h.
  435. config LP_CONSOLE
  436. bool "Support for console on line printer"
  437. depends on PRINTER
  438. ---help---
  439. If you want kernel messages to be printed out as they occur, you
  440. can have a console on the printer. This option adds support for
  441. doing that; to actually get it to happen you need to pass the
  442. option "console=lp0" to the kernel at boot time.
  443. If the printer is out of paper (or off, or unplugged, or too
  444. busy..) the kernel will stall until the printer is ready again.
  445. By defining CONSOLE_LP_STRICT to 0 (at your own risk) you
  446. can make the kernel continue when this happens,
  447. but it'll lose the kernel messages.
  448. If unsure, say N.
  449. config PPDEV
  450. tristate "Support for user-space parallel port device drivers"
  451. depends on PARPORT
  452. ---help---
  453. Saying Y to this adds support for /dev/parport device nodes. This
  454. is needed for programs that want portable access to the parallel
  455. port, for instance deviceid (which displays Plug-and-Play device
  456. IDs).
  457. This is the parallel port equivalent of SCSI generic support (sg).
  458. It is safe to say N to this -- it is not needed for normal printing
  459. or parallel port CD-ROM/disk support.
  460. To compile this driver as a module, choose M here: the
  461. module will be called ppdev.
  462. If unsure, say N.
  463. config TIPAR
  464. tristate "Texas Instruments parallel link cable support"
  465. depends on PARPORT
  466. ---help---
  467. If you own a Texas Instruments graphing calculator and use a
  468. parallel link cable, then you might be interested in this driver.
  469. If you enable this driver, you will be able to communicate with
  470. your calculator through a set of device nodes under /dev. The
  471. main advantage of this driver is that you don't have to be root
  472. to use this precise link cable (depending on the permissions on
  473. the device nodes, though).
  474. To compile this driver as a module, choose M here: the
  475. module will be called tipar.
  476. If you don't know what a parallel link cable is or what a Texas
  477. Instruments graphing calculator is, then you probably don't need this
  478. driver.
  479. If unsure, say N.
  480. config HVC_DRIVER
  481. bool
  482. help
  483. Users of pSeries machines that want to utilize the hvc console front-end
  484. module for their backend console driver should select this option.
  485. It will automatically be selected if one of the back-end console drivers
  486. is selected.
  487. config HVC_CONSOLE
  488. bool "pSeries Hypervisor Virtual Console support"
  489. depends on PPC_PSERIES
  490. select HVC_DRIVER
  491. help
  492. pSeries machines when partitioned support a hypervisor virtual
  493. console. This driver allows each pSeries partition to have a console
  494. which is accessed via the HMC.
  495. config HVC_ISERIES
  496. bool "iSeries Hypervisor Virtual Console support"
  497. depends on PPC_ISERIES && !VIOCONS
  498. select HVC_DRIVER
  499. help
  500. iSeries machines support a hypervisor virtual console.
  501. config HVC_RTAS
  502. bool "IBM RTAS Console support"
  503. depends on PPC_RTAS
  504. select HVC_DRIVER
  505. help
  506. IBM Console device driver which makes use of RTAS
  507. config HVCS
  508. tristate "IBM Hypervisor Virtual Console Server support"
  509. depends on PPC_PSERIES
  510. help
  511. Partitionable IBM Power5 ppc64 machines allow hosting of
  512. firmware virtual consoles from one Linux partition by
  513. another Linux partition. This driver allows console data
  514. from Linux partitions to be accessed through TTY device
  515. interfaces in the device tree of a Linux partition running
  516. this driver.
  517. To compile this driver as a module, choose M here: the
  518. module will be called hvcs.ko. Additionally, this module
  519. will depend on arch specific APIs exported from hvcserver.ko
  520. which will also be compiled when this driver is built as a
  521. module.
  522. source "drivers/char/ipmi/Kconfig"
  523. source "drivers/char/watchdog/Kconfig"
  524. config DS1620
  525. tristate "NetWinder thermometer support"
  526. depends on ARCH_NETWINDER
  527. help
  528. Say Y here to include support for the thermal management hardware
  529. found in the NetWinder. This driver allows the user to control the
  530. temperature set points and to read the current temperature.
  531. It is also possible to say M here to build it as a module (ds1620)
  532. It is recommended to be used on a NetWinder, but it is not a
  533. necessity.
  534. config NWBUTTON
  535. tristate "NetWinder Button"
  536. depends on ARCH_NETWINDER
  537. ---help---
  538. If you say Y here and create a character device node /dev/nwbutton
  539. with major and minor numbers 10 and 158 ("man mknod"), then every
  540. time the orange button is pressed a number of times, the number of
  541. times the button was pressed will be written to that device.
  542. This is most useful for applications, as yet unwritten, which
  543. perform actions based on how many times the button is pressed in a
  544. row.
  545. Do not hold the button down for too long, as the driver does not
  546. alter the behaviour of the hardware reset circuitry attached to the
  547. button; it will still execute a hard reset if the button is held
  548. down for longer than approximately five seconds.
  549. To compile this driver as a module, choose M here: the
  550. module will be called nwbutton.
  551. Most people will answer Y to this question and "Reboot Using Button"
  552. below to be able to initiate a system shutdown from the button.
  553. config NWBUTTON_REBOOT
  554. bool "Reboot Using Button"
  555. depends on NWBUTTON
  556. help
  557. If you say Y here, then you will be able to initiate a system
  558. shutdown and reboot by pressing the orange button a number of times.
  559. The number of presses to initiate the shutdown is two by default,
  560. but this can be altered by modifying the value of NUM_PRESSES_REBOOT
  561. in nwbutton.h and recompiling the driver or, if you compile the
  562. driver as a module, you can specify the number of presses at load
  563. time with "insmod button reboot_count=<something>".
  564. config NWFLASH
  565. tristate "NetWinder flash support"
  566. depends on ARCH_NETWINDER
  567. ---help---
  568. If you say Y here and create a character device /dev/flash with
  569. major 10 and minor 160 you can manipulate the flash ROM containing
  570. the NetWinder firmware. Be careful as accidentally overwriting the
  571. flash contents can render your computer unbootable. On no account
  572. allow random users access to this device. :-)
  573. To compile this driver as a module, choose M here: the
  574. module will be called nwflash.
  575. If you're not sure, say N.
  576. source "drivers/char/hw_random/Kconfig"
  577. config NVRAM
  578. tristate "/dev/nvram support"
  579. depends on ATARI || X86 || ARM || GENERIC_NVRAM
  580. ---help---
  581. If you say Y here and create a character special file /dev/nvram
  582. with major number 10 and minor number 144 using mknod ("man mknod"),
  583. you get read and write access to the extra bytes of non-volatile
  584. memory in the real time clock (RTC), which is contained in every PC
  585. and most Ataris. The actual number of bytes varies, depending on the
  586. nvram in the system, but is usually 114 (128-14 for the RTC).
  587. This memory is conventionally called "CMOS RAM" on PCs and "NVRAM"
  588. on Ataris. /dev/nvram may be used to view settings there, or to
  589. change them (with some utility). It could also be used to frequently
  590. save a few bits of very important data that may not be lost over
  591. power-off and for which writing to disk is too insecure. Note
  592. however that most NVRAM space in a PC belongs to the BIOS and you
  593. should NEVER idly tamper with it. See Ralf Brown's interrupt list
  594. for a guide to the use of CMOS bytes by your BIOS.
  595. On Atari machines, /dev/nvram is always configured and does not need
  596. to be selected.
  597. To compile this driver as a module, choose M here: the
  598. module will be called nvram.
  599. config RTC
  600. tristate "Enhanced Real Time Clock Support"
  601. depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV && !ARM && !SUPERH
  602. ---help---
  603. If you say Y here and create a character special file /dev/rtc with
  604. major number 10 and minor number 135 using mknod ("man mknod"), you
  605. will get access to the real time clock (or hardware clock) built
  606. into your computer.
  607. Every PC has such a clock built in. It can be used to generate
  608. signals from as low as 1Hz up to 8192Hz, and can also be used
  609. as a 24 hour alarm. It reports status information via the file
  610. /proc/driver/rtc and its behaviour is set by various ioctls on
  611. /dev/rtc.
  612. If you run Linux on a multiprocessor machine and said Y to
  613. "Symmetric Multi Processing" above, you should say Y here to read
  614. and set the RTC in an SMP compatible fashion.
  615. If you think you have a use for such a device (such as periodic data
  616. sampling), then say Y here, and read <file:Documentation/rtc.txt>
  617. for details.
  618. To compile this driver as a module, choose M here: the
  619. module will be called rtc.
  620. config SGI_DS1286
  621. tristate "SGI DS1286 RTC support"
  622. depends on SGI_IP22
  623. help
  624. If you say Y here and create a character special file /dev/rtc with
  625. major number 10 and minor number 135 using mknod ("man mknod"), you
  626. will get access to the real time clock built into your computer.
  627. Every SGI has such a clock built in. It reports status information
  628. via the file /proc/rtc and its behaviour is set by various ioctls on
  629. /dev/rtc.
  630. config SGI_IP27_RTC
  631. bool "SGI M48T35 RTC support"
  632. depends on SGI_IP27
  633. help
  634. If you say Y here and create a character special file /dev/rtc with
  635. major number 10 and minor number 135 using mknod ("man mknod"), you
  636. will get access to the real time clock built into your computer.
  637. Every SGI has such a clock built in. It reports status information
  638. via the file /proc/rtc and its behaviour is set by various ioctls on
  639. /dev/rtc.
  640. config GEN_RTC
  641. tristate "Generic /dev/rtc emulation"
  642. depends on RTC!=y && !IA64 && !ARM && !M32R && !SPARC && !FRV
  643. ---help---
  644. If you say Y here and create a character special file /dev/rtc with
  645. major number 10 and minor number 135 using mknod ("man mknod"), you
  646. will get access to the real time clock (or hardware clock) built
  647. into your computer.
  648. It reports status information via the file /proc/driver/rtc and its
  649. behaviour is set by various ioctls on /dev/rtc. If you enable the
  650. "extended RTC operation" below it will also provide an emulation
  651. for RTC_UIE which is required by some programs and may improve
  652. precision in some cases.
  653. To compile this driver as a module, choose M here: the
  654. module will be called genrtc.
  655. config GEN_RTC_X
  656. bool "Extended RTC operation"
  657. depends on GEN_RTC
  658. help
  659. Provides an emulation for RTC_UIE which is required by some programs
  660. and may improve precision of the generic RTC support in some cases.
  661. config EFI_RTC
  662. bool "EFI Real Time Clock Services"
  663. depends on IA64
  664. config DS1302
  665. tristate "DS1302 RTC support"
  666. depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT)
  667. help
  668. If you say Y here and create a character special file /dev/rtc with
  669. major number 121 and minor number 0 using mknod ("man mknod"), you
  670. will get access to the real time clock (or hardware clock) built
  671. into your computer.
  672. config COBALT_LCD
  673. bool "Support for Cobalt LCD"
  674. depends on MIPS_COBALT
  675. help
  676. This option enables support for the LCD display and buttons found
  677. on Cobalt systems through a misc device.
  678. config DTLK
  679. tristate "Double Talk PC internal speech card support"
  680. help
  681. This driver is for the DoubleTalk PC, a speech synthesizer
  682. manufactured by RC Systems (<http://www.rcsys.com/>). It is also
  683. called the `internal DoubleTalk'.
  684. To compile this driver as a module, choose M here: the
  685. module will be called dtlk.
  686. config R3964
  687. tristate "Siemens R3964 line discipline"
  688. ---help---
  689. This driver allows synchronous communication with devices using the
  690. Siemens R3964 packet protocol. Unless you are dealing with special
  691. hardware like PLCs, you are unlikely to need this.
  692. To compile this driver as a module, choose M here: the
  693. module will be called n_r3964.
  694. If unsure, say N.
  695. config APPLICOM
  696. tristate "Applicom intelligent fieldbus card support"
  697. depends on PCI
  698. ---help---
  699. This driver provides the kernel-side support for the intelligent
  700. fieldbus cards made by Applicom International. More information
  701. about these cards can be found on the WWW at the address
  702. <http://www.applicom-int.com/>, or by email from David Woodhouse
  703. <dwmw2@infradead.org>.
  704. To compile this driver as a module, choose M here: the
  705. module will be called applicom.
  706. If unsure, say N.
  707. config SONYPI
  708. tristate "Sony Vaio Programmable I/O Control Device support (EXPERIMENTAL)"
  709. depends on EXPERIMENTAL && X86 && PCI && INPUT && !64BIT
  710. ---help---
  711. This driver enables access to the Sony Programmable I/O Control
  712. Device which can be found in many (all ?) Sony Vaio laptops.
  713. If you have one of those laptops, read
  714. <file:Documentation/sonypi.txt>, and say Y or M here.
  715. To compile this driver as a module, choose M here: the
  716. module will be called sonypi.
  717. config TANBAC_TB0219
  718. tristate "TANBAC TB0219 base board support"
  719. depends TANBAC_TB022X
  720. select GPIO_VR41XX
  721. menu "Ftape, the floppy tape device driver"
  722. config FTAPE
  723. tristate "Ftape (QIC-80/Travan) support"
  724. depends on BROKEN_ON_SMP && (ALPHA || X86)
  725. ---help---
  726. If you have a tape drive that is connected to your floppy
  727. controller, say Y here.
  728. Some tape drives (like the Seagate "Tape Store 3200" or the Iomega
  729. "Ditto 3200" or the Exabyte "Eagle TR-3") come with a "high speed"
  730. controller of their own. These drives (and their companion
  731. controllers) are also supported if you say Y here.
  732. If you have a special controller (such as the CMS FC-10, FC-20,
  733. Mountain Mach-II, or any controller that is based on the Intel 82078
  734. FDC like the high speed controllers by Seagate and Exabyte and
  735. Iomega's "Ditto Dash") you must configure it by selecting the
  736. appropriate entries from the "Floppy tape controllers" sub-menu
  737. below and possibly modify the default values for the IRQ and DMA
  738. channel and the IO base in ftape's configuration menu.
  739. If you want to use your floppy tape drive on a PCI-bus based system,
  740. please read the file <file:drivers/char/ftape/README.PCI>.
  741. The ftape kernel driver is also available as a runtime loadable
  742. module. To compile this driver as a module, choose M here: the
  743. module will be called ftape.
  744. source "drivers/char/ftape/Kconfig"
  745. endmenu
  746. source "drivers/char/agp/Kconfig"
  747. source "drivers/char/drm/Kconfig"
  748. source "drivers/char/pcmcia/Kconfig"
  749. config MWAVE
  750. tristate "ACP Modem (Mwave) support"
  751. depends on X86
  752. select SERIAL_8250
  753. ---help---
  754. The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
  755. kernel driver and a user level application. Together these components
  756. support direct attachment to public switched telephone networks (PSTNs)
  757. and support selected world wide countries.
  758. This version of the ACP Modem driver supports the IBM Thinkpad 600E,
  759. 600, and 770 that include on board ACP modem hardware.
  760. The modem also supports the standard communications port interface
  761. (ttySx) and is compatible with the Hayes AT Command Set.
  762. The user level application needed to use this driver can be found at
  763. the IBM Linux Technology Center (LTC) web site:
  764. <http://www.ibm.com/linux/ltc/>.
  765. If you own one of the above IBM Thinkpads which has the Mwave chipset
  766. in it, say Y.
  767. To compile this driver as a module, choose M here: the
  768. module will be called mwave.
  769. config SCx200_GPIO
  770. tristate "NatSemi SCx200 GPIO Support"
  771. depends on SCx200
  772. select NSC_GPIO
  773. help
  774. Give userspace access to the GPIO pins on the National
  775. Semiconductor SCx200 processors.
  776. If compiled as a module, it will be called scx200_gpio.
  777. config PC8736x_GPIO
  778. tristate "NatSemi PC8736x GPIO Support"
  779. depends on X86
  780. default SCx200_GPIO # mostly N
  781. select NSC_GPIO # needed for support routines
  782. help
  783. Give userspace access to the GPIO pins on the National
  784. Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip
  785. has multiple functional units, inc several managed by
  786. hwmon/pc87360 driver. Tested with PC-87366
  787. If compiled as a module, it will be called pc8736x_gpio.
  788. config NSC_GPIO
  789. tristate "NatSemi Base GPIO Support"
  790. depends on X86_32
  791. # selected by SCx200_GPIO and PC8736x_GPIO
  792. # what about 2 selectors differing: m != y
  793. help
  794. Common support used (and needed) by scx200_gpio and
  795. pc8736x_gpio drivers. If those drivers are built as
  796. modules, this one will be too, named nsc_gpio
  797. config CS5535_GPIO
  798. tristate "AMD CS5535/CS5536 GPIO (Geode Companion Device)"
  799. depends on X86_32
  800. help
  801. Give userspace access to the GPIO pins on the AMD CS5535 and
  802. CS5536 Geode companion devices.
  803. If compiled as a module, it will be called cs5535_gpio.
  804. config GPIO_VR41XX
  805. tristate "NEC VR4100 series General-purpose I/O Unit support"
  806. depends on CPU_VR41XX
  807. config RAW_DRIVER
  808. tristate "RAW driver (/dev/raw/rawN) (OBSOLETE)"
  809. depends on BLOCK
  810. help
  811. The raw driver permits block devices to be bound to /dev/raw/rawN.
  812. Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
  813. See the raw(8) manpage for more details.
  814. The raw driver is deprecated and will be removed soon.
  815. Applications should simply open the device (eg /dev/hda1)
  816. with the O_DIRECT flag.
  817. config MAX_RAW_DEVS
  818. int "Maximum number of RAW devices to support (1-8192)"
  819. depends on RAW_DRIVER
  820. default "256"
  821. help
  822. The maximum number of RAW devices that are supported.
  823. Default is 256. Increase this number in case you need lots of
  824. raw devices.
  825. config HPET
  826. bool "HPET - High Precision Event Timer" if (X86 || IA64)
  827. default n
  828. depends on ACPI
  829. help
  830. If you say Y here, you will have a miscdevice named "/dev/hpet/". Each
  831. open selects one of the timers supported by the HPET. The timers are
  832. non-periodioc and/or periodic.
  833. config HPET_RTC_IRQ
  834. bool "HPET Control RTC IRQ" if !HPET_EMULATE_RTC
  835. default n
  836. depends on HPET
  837. help
  838. If you say Y here, you will disable RTC_IRQ in drivers/char/rtc.c. It
  839. is assumed the platform called hpet_alloc with the RTC IRQ values for
  840. the HPET timers.
  841. config HPET_MMAP
  842. bool "Allow mmap of HPET"
  843. default y
  844. depends on HPET
  845. help
  846. If you say Y here, user applications will be able to mmap
  847. the HPET registers.
  848. In some hardware implementations, the page containing HPET
  849. registers may also contain other things that shouldn't be
  850. exposed to the user. If this applies to your hardware,
  851. say N here.
  852. config HANGCHECK_TIMER
  853. tristate "Hangcheck timer"
  854. depends on X86 || IA64 || PPC64
  855. help
  856. The hangcheck-timer module detects when the system has gone
  857. out to lunch past a certain margin. It can reboot the system
  858. or merely print a warning.
  859. config MMTIMER
  860. tristate "MMTIMER Memory mapped RTC for SGI Altix"
  861. depends on IA64_GENERIC || IA64_SGI_SN2
  862. default y
  863. help
  864. The mmtimer device allows direct userspace access to the
  865. Altix system timer.
  866. source "drivers/char/tpm/Kconfig"
  867. config TELCLOCK
  868. tristate "Telecom clock driver for MPBL0010 ATCA SBC"
  869. depends on EXPERIMENTAL && X86
  870. default n
  871. help
  872. The telecom clock device is specific to the MPBL0010 ATCA computer and
  873. allows direct userspace access to the configuration of the telecom clock
  874. configuration settings. This device is used for hardware synchronization
  875. across the ATCA backplane fabric. Upon loading, the driver exports a
  876. sysfs directory, /sys/devices/platform/telco_clock, with a number of
  877. files for controlling the behavior of this hardware.
  878. endmenu