Kconfig 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067
  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 QTRONIX_KEYBOARD
  317. bool "Enable Qtronix 990P Keyboard Support"
  318. depends on IT8712
  319. help
  320. Images of Qtronix keyboards are at
  321. <http://www.qtronix.com/keyboard.html>.
  322. config IT8172_CIR
  323. bool
  324. depends on QTRONIX_KEYBOARD
  325. default y
  326. config IT8172_SCR0
  327. bool "Enable Smart Card Reader 0 Support "
  328. depends on IT8712
  329. help
  330. Say Y here to support smart-card reader 0 (SCR0) on the Integrated
  331. Technology Express, Inc. ITE8172 SBC. Vendor page at
  332. <http://www.ite.com.tw/ia/brief_it8172bsp.htm>; picture of the
  333. board at <http://www.mvista.com/partners/semiconductor/ite.html>.
  334. config IT8172_SCR1
  335. bool "Enable Smart Card Reader 1 Support "
  336. depends on IT8712
  337. help
  338. Say Y here to support smart-card reader 1 (SCR1) on the Integrated
  339. Technology Express, Inc. ITE8172 SBC. Vendor page at
  340. <http://www.ite.com.tw/ia/brief_it8172bsp.htm>; picture of the
  341. board at <http://www.mvista.com/partners/semiconductor/ite.html>.
  342. config A2232
  343. tristate "Commodore A2232 serial support (EXPERIMENTAL)"
  344. depends on EXPERIMENTAL && ZORRO && BROKEN_ON_SMP
  345. ---help---
  346. This option supports the 2232 7-port serial card shipped with the
  347. Amiga 2000 and other Zorro-bus machines, dating from 1989. At
  348. a max of 19,200 bps, the ports are served by a 6551 ACIA UART chip
  349. each, plus a 8520 CIA, and a master 6502 CPU and buffer as well. The
  350. ports were connected with 8 pin DIN connectors on the card bracket,
  351. for which 8 pin to DB25 adapters were supplied. The card also had
  352. jumpers internally to toggle various pinning configurations.
  353. This driver can be built as a module; but then "generic_serial"
  354. will also be built as a module. This has to be loaded before
  355. "ser_a2232". If you want to do this, answer M here.
  356. config SGI_SNSC
  357. bool "SGI Altix system controller communication support"
  358. depends on (IA64_SGI_SN2 || IA64_GENERIC)
  359. help
  360. If you have an SGI Altix and you want to enable system
  361. controller communication from user space (you want this!),
  362. say Y. Otherwise, say N.
  363. config SGI_TIOCX
  364. bool "SGI TIO CX driver support"
  365. depends on (IA64_SGI_SN2 || IA64_GENERIC)
  366. help
  367. If you have an SGI Altix and you have fpga devices attached
  368. to your TIO, say Y here, otherwise say N.
  369. config SGI_MBCS
  370. tristate "SGI FPGA Core Services driver support"
  371. depends on SGI_TIOCX
  372. help
  373. If you have an SGI Altix with an attached SABrick
  374. say Y or M here, otherwise say N.
  375. source "drivers/serial/Kconfig"
  376. config UNIX98_PTYS
  377. bool "Unix98 PTY support" if EMBEDDED
  378. default y
  379. ---help---
  380. A pseudo terminal (PTY) is a software device consisting of two
  381. halves: a master and a slave. The slave device behaves identical to
  382. a physical terminal; the master device is used by a process to
  383. read data from and write data to the slave, thereby emulating a
  384. terminal. Typical programs for the master side are telnet servers
  385. and xterms.
  386. Linux has traditionally used the BSD-like names /dev/ptyxx for
  387. masters and /dev/ttyxx for slaves of pseudo terminals. This scheme
  388. has a number of problems. The GNU C library glibc 2.1 and later,
  389. however, supports the Unix98 naming standard: in order to acquire a
  390. pseudo terminal, a process opens /dev/ptmx; the number of the pseudo
  391. terminal is then made available to the process and the pseudo
  392. terminal slave can be accessed as /dev/pts/<number>. What was
  393. traditionally /dev/ttyp2 will then be /dev/pts/2, for example.
  394. All modern Linux systems use the Unix98 ptys. Say Y unless
  395. you're on an embedded system and want to conserve memory.
  396. config LEGACY_PTYS
  397. bool "Legacy (BSD) PTY support"
  398. default y
  399. ---help---
  400. A pseudo terminal (PTY) is a software device consisting of two
  401. halves: a master and a slave. The slave device behaves identical to
  402. a physical terminal; the master device is used by a process to
  403. read data from and write data to the slave, thereby emulating a
  404. terminal. Typical programs for the master side are telnet servers
  405. and xterms.
  406. Linux has traditionally used the BSD-like names /dev/ptyxx
  407. for masters and /dev/ttyxx for slaves of pseudo
  408. terminals. This scheme has a number of problems, including
  409. security. This option enables these legacy devices; on most
  410. systems, it is safe to say N.
  411. config LEGACY_PTY_COUNT
  412. int "Maximum number of legacy PTY in use"
  413. depends on LEGACY_PTYS
  414. range 1 256
  415. default "256"
  416. ---help---
  417. The maximum number of legacy PTYs that can be used at any one time.
  418. The default is 256, and should be more than enough. Embedded
  419. systems may want to reduce this to save memory.
  420. When not in use, each legacy PTY occupies 12 bytes on 32-bit
  421. architectures and 24 bytes on 64-bit architectures.
  422. config PRINTER
  423. tristate "Parallel printer support"
  424. depends on PARPORT
  425. ---help---
  426. If you intend to attach a printer to the parallel port of your Linux
  427. box (as opposed to using a serial printer; if the connector at the
  428. printer has 9 or 25 holes ["female"], then it's serial), say Y.
  429. Also read the Printing-HOWTO, available from
  430. <http://www.tldp.org/docs.html#howto>.
  431. It is possible to share one parallel port among several devices
  432. (e.g. printer and ZIP drive) and it is safe to compile the
  433. corresponding drivers into the kernel.
  434. To compile this driver as a module, choose M here and read
  435. <file:Documentation/parport.txt>. The module will be called lp.
  436. If you have several parallel ports, you can specify which ports to
  437. use with the "lp" kernel command line option. (Try "man bootparam"
  438. or see the documentation of your boot loader (lilo or loadlin) about
  439. how to pass options to the kernel at boot time.) The syntax of the
  440. "lp" command line option can be found in <file:drivers/char/lp.c>.
  441. If you have more than 8 printers, you need to increase the LP_NO
  442. macro in lp.c and the PARPORT_MAX macro in parport.h.
  443. config LP_CONSOLE
  444. bool "Support for console on line printer"
  445. depends on PRINTER
  446. ---help---
  447. If you want kernel messages to be printed out as they occur, you
  448. can have a console on the printer. This option adds support for
  449. doing that; to actually get it to happen you need to pass the
  450. option "console=lp0" to the kernel at boot time.
  451. If the printer is out of paper (or off, or unplugged, or too
  452. busy..) the kernel will stall until the printer is ready again.
  453. By defining CONSOLE_LP_STRICT to 0 (at your own risk) you
  454. can make the kernel continue when this happens,
  455. but it'll lose the kernel messages.
  456. If unsure, say N.
  457. config PPDEV
  458. tristate "Support for user-space parallel port device drivers"
  459. depends on PARPORT
  460. ---help---
  461. Saying Y to this adds support for /dev/parport device nodes. This
  462. is needed for programs that want portable access to the parallel
  463. port, for instance deviceid (which displays Plug-and-Play device
  464. IDs).
  465. This is the parallel port equivalent of SCSI generic support (sg).
  466. It is safe to say N to this -- it is not needed for normal printing
  467. or parallel port CD-ROM/disk support.
  468. To compile this driver as a module, choose M here: the
  469. module will be called ppdev.
  470. If unsure, say N.
  471. config TIPAR
  472. tristate "Texas Instruments parallel link cable support"
  473. depends on PARPORT
  474. ---help---
  475. If you own a Texas Instruments graphing calculator and use a
  476. parallel link cable, then you might be interested in this driver.
  477. If you enable this driver, you will be able to communicate with
  478. your calculator through a set of device nodes under /dev. The
  479. main advantage of this driver is that you don't have to be root
  480. to use this precise link cable (depending on the permissions on
  481. the device nodes, though).
  482. To compile this driver as a module, choose M here: the
  483. module will be called tipar.
  484. If you don't know what a parallel link cable is or what a Texas
  485. Instruments graphing calculator is, then you probably don't need this
  486. driver.
  487. If unsure, say N.
  488. config HVC_DRIVER
  489. bool
  490. help
  491. Users of pSeries machines that want to utilize the hvc console front-end
  492. module for their backend console driver should select this option.
  493. It will automatically be selected if one of the back-end console drivers
  494. is selected.
  495. config HVC_CONSOLE
  496. bool "pSeries Hypervisor Virtual Console support"
  497. depends on PPC_PSERIES
  498. select HVC_DRIVER
  499. help
  500. pSeries machines when partitioned support a hypervisor virtual
  501. console. This driver allows each pSeries partition to have a console
  502. which is accessed via the HMC.
  503. config HVC_RTAS
  504. bool "IBM RTAS Console support"
  505. depends on PPC_RTAS
  506. select HVC_DRIVER
  507. help
  508. IBM Console device driver which makes use of RTAS
  509. config HVCS
  510. tristate "IBM Hypervisor Virtual Console Server support"
  511. depends on PPC_PSERIES
  512. help
  513. Partitionable IBM Power5 ppc64 machines allow hosting of
  514. firmware virtual consoles from one Linux partition by
  515. another Linux partition. This driver allows console data
  516. from Linux partitions to be accessed through TTY device
  517. interfaces in the device tree of a Linux partition running
  518. this driver.
  519. To compile this driver as a module, choose M here: the
  520. module will be called hvcs.ko. Additionally, this module
  521. will depend on arch specific APIs exported from hvcserver.ko
  522. which will also be compiled when this driver is built as a
  523. module.
  524. source "drivers/char/ipmi/Kconfig"
  525. source "drivers/char/watchdog/Kconfig"
  526. config DS1620
  527. tristate "NetWinder thermometer support"
  528. depends on ARCH_NETWINDER
  529. help
  530. Say Y here to include support for the thermal management hardware
  531. found in the NetWinder. This driver allows the user to control the
  532. temperature set points and to read the current temperature.
  533. It is also possible to say M here to build it as a module (ds1620)
  534. It is recommended to be used on a NetWinder, but it is not a
  535. necessity.
  536. config NWBUTTON
  537. tristate "NetWinder Button"
  538. depends on ARCH_NETWINDER
  539. ---help---
  540. If you say Y here and create a character device node /dev/nwbutton
  541. with major and minor numbers 10 and 158 ("man mknod"), then every
  542. time the orange button is pressed a number of times, the number of
  543. times the button was pressed will be written to that device.
  544. This is most useful for applications, as yet unwritten, which
  545. perform actions based on how many times the button is pressed in a
  546. row.
  547. Do not hold the button down for too long, as the driver does not
  548. alter the behaviour of the hardware reset circuitry attached to the
  549. button; it will still execute a hard reset if the button is held
  550. down for longer than approximately five seconds.
  551. To compile this driver as a module, choose M here: the
  552. module will be called nwbutton.
  553. Most people will answer Y to this question and "Reboot Using Button"
  554. below to be able to initiate a system shutdown from the button.
  555. config NWBUTTON_REBOOT
  556. bool "Reboot Using Button"
  557. depends on NWBUTTON
  558. help
  559. If you say Y here, then you will be able to initiate a system
  560. shutdown and reboot by pressing the orange button a number of times.
  561. The number of presses to initiate the shutdown is two by default,
  562. but this can be altered by modifying the value of NUM_PRESSES_REBOOT
  563. in nwbutton.h and recompiling the driver or, if you compile the
  564. driver as a module, you can specify the number of presses at load
  565. time with "insmod button reboot_count=<something>".
  566. config NWFLASH
  567. tristate "NetWinder flash support"
  568. depends on ARCH_NETWINDER
  569. ---help---
  570. If you say Y here and create a character device /dev/flash with
  571. major 10 and minor 160 you can manipulate the flash ROM containing
  572. the NetWinder firmware. Be careful as accidentally overwriting the
  573. flash contents can render your computer unbootable. On no account
  574. allow random users access to this device. :-)
  575. To compile this driver as a module, choose M here: the
  576. module will be called nwflash.
  577. If you're not sure, say N.
  578. source "drivers/char/hw_random/Kconfig"
  579. config NVRAM
  580. tristate "/dev/nvram support"
  581. depends on ATARI || X86 || ARM || GENERIC_NVRAM
  582. ---help---
  583. If you say Y here and create a character special file /dev/nvram
  584. with major number 10 and minor number 144 using mknod ("man mknod"),
  585. you get read and write access to the extra bytes of non-volatile
  586. memory in the real time clock (RTC), which is contained in every PC
  587. and most Ataris. The actual number of bytes varies, depending on the
  588. nvram in the system, but is usually 114 (128-14 for the RTC).
  589. This memory is conventionally called "CMOS RAM" on PCs and "NVRAM"
  590. on Ataris. /dev/nvram may be used to view settings there, or to
  591. change them (with some utility). It could also be used to frequently
  592. save a few bits of very important data that may not be lost over
  593. power-off and for which writing to disk is too insecure. Note
  594. however that most NVRAM space in a PC belongs to the BIOS and you
  595. should NEVER idly tamper with it. See Ralf Brown's interrupt list
  596. for a guide to the use of CMOS bytes by your BIOS.
  597. On Atari machines, /dev/nvram is always configured and does not need
  598. to be selected.
  599. To compile this driver as a module, choose M here: the
  600. module will be called nvram.
  601. config RTC
  602. tristate "Enhanced Real Time Clock Support"
  603. depends on !PPC && !PARISC && !IA64 && !M68K && (!SPARC || PCI) && !FRV && !ARM
  604. ---help---
  605. If you say Y here and create a character special file /dev/rtc with
  606. major number 10 and minor number 135 using mknod ("man mknod"), you
  607. will get access to the real time clock (or hardware clock) built
  608. into your computer.
  609. Every PC has such a clock built in. It can be used to generate
  610. signals from as low as 1Hz up to 8192Hz, and can also be used
  611. as a 24 hour alarm. It reports status information via the file
  612. /proc/driver/rtc and its behaviour is set by various ioctls on
  613. /dev/rtc.
  614. If you run Linux on a multiprocessor machine and said Y to
  615. "Symmetric Multi Processing" above, you should say Y here to read
  616. and set the RTC in an SMP compatible fashion.
  617. If you think you have a use for such a device (such as periodic data
  618. sampling), then say Y here, and read <file:Documentation/rtc.txt>
  619. for details.
  620. To compile this driver as a module, choose M here: the
  621. module will be called rtc.
  622. config SGI_DS1286
  623. tristate "SGI DS1286 RTC support"
  624. depends on SGI_IP22
  625. help
  626. If you say Y here and create a character special file /dev/rtc with
  627. major number 10 and minor number 135 using mknod ("man mknod"), you
  628. will get access to the real time clock built into your computer.
  629. Every SGI has such a clock built in. It reports status information
  630. via the file /proc/rtc and its behaviour is set by various ioctls on
  631. /dev/rtc.
  632. config SGI_IP27_RTC
  633. bool "SGI M48T35 RTC support"
  634. depends on SGI_IP27
  635. help
  636. If you say Y here and create a character special file /dev/rtc with
  637. major number 10 and minor number 135 using mknod ("man mknod"), you
  638. will get access to the real time clock built into your computer.
  639. Every SGI has such a clock built in. It reports status information
  640. via the file /proc/rtc and its behaviour is set by various ioctls on
  641. /dev/rtc.
  642. config GEN_RTC
  643. tristate "Generic /dev/rtc emulation"
  644. depends on RTC!=y && !IA64 && !ARM && !M32R && !SPARC && !FRV
  645. ---help---
  646. If you say Y here and create a character special file /dev/rtc with
  647. major number 10 and minor number 135 using mknod ("man mknod"), you
  648. will get access to the real time clock (or hardware clock) built
  649. into your computer.
  650. It reports status information via the file /proc/driver/rtc and its
  651. behaviour is set by various ioctls on /dev/rtc. If you enable the
  652. "extended RTC operation" below it will also provide an emulation
  653. for RTC_UIE which is required by some programs and may improve
  654. precision in some cases.
  655. To compile this driver as a module, choose M here: the
  656. module will be called genrtc.
  657. config GEN_RTC_X
  658. bool "Extended RTC operation"
  659. depends on GEN_RTC
  660. help
  661. Provides an emulation for RTC_UIE which is required by some programs
  662. and may improve precision of the generic RTC support in some cases.
  663. config EFI_RTC
  664. bool "EFI Real Time Clock Services"
  665. depends on IA64
  666. config DS1302
  667. tristate "DS1302 RTC support"
  668. depends on M32R && (PLAT_M32700UT || PLAT_OPSPUT)
  669. help
  670. If you say Y here and create a character special file /dev/rtc with
  671. major number 121 and minor number 0 using mknod ("man mknod"), you
  672. will get access to the real time clock (or hardware clock) built
  673. into your computer.
  674. config S3C2410_RTC
  675. bool "S3C2410 RTC Driver"
  676. depends on ARCH_S3C2410
  677. help
  678. RTC (Realtime Clock) driver for the clock inbuilt into the
  679. Samsung S3C2410. This can provide periodic interrupt rates
  680. from 1Hz to 64Hz for user programs, and wakeup from Alarm.
  681. config COBALT_LCD
  682. bool "Support for Cobalt LCD"
  683. depends on MIPS_COBALT
  684. help
  685. This option enables support for the LCD display and buttons found
  686. on Cobalt systems through a misc device.
  687. config DTLK
  688. tristate "Double Talk PC internal speech card support"
  689. help
  690. This driver is for the DoubleTalk PC, a speech synthesizer
  691. manufactured by RC Systems (<http://www.rcsys.com/>). It is also
  692. called the `internal DoubleTalk'.
  693. To compile this driver as a module, choose M here: the
  694. module will be called dtlk.
  695. config R3964
  696. tristate "Siemens R3964 line discipline"
  697. ---help---
  698. This driver allows synchronous communication with devices using the
  699. Siemens R3964 packet protocol. Unless you are dealing with special
  700. hardware like PLCs, you are unlikely to need this.
  701. To compile this driver as a module, choose M here: the
  702. module will be called n_r3964.
  703. If unsure, say N.
  704. config APPLICOM
  705. tristate "Applicom intelligent fieldbus card support"
  706. depends on PCI
  707. ---help---
  708. This driver provides the kernel-side support for the intelligent
  709. fieldbus cards made by Applicom International. More information
  710. about these cards can be found on the WWW at the address
  711. <http://www.applicom-int.com/>, or by email from David Woodhouse
  712. <dwmw2@infradead.org>.
  713. To compile this driver as a module, choose M here: the
  714. module will be called applicom.
  715. If unsure, say N.
  716. config SONYPI
  717. tristate "Sony Vaio Programmable I/O Control Device support (EXPERIMENTAL)"
  718. depends on EXPERIMENTAL && X86 && PCI && INPUT && !64BIT
  719. ---help---
  720. This driver enables access to the Sony Programmable I/O Control
  721. Device which can be found in many (all ?) Sony Vaio laptops.
  722. If you have one of those laptops, read
  723. <file:Documentation/sonypi.txt>, and say Y or M here.
  724. To compile this driver as a module, choose M here: the
  725. module will be called sonypi.
  726. config TANBAC_TB0219
  727. tristate "TANBAC TB0219 base board support"
  728. depends TANBAC_TB022X
  729. select GPIO_VR41XX
  730. menu "Ftape, the floppy tape device driver"
  731. config FTAPE
  732. tristate "Ftape (QIC-80/Travan) support"
  733. depends on BROKEN_ON_SMP && (ALPHA || X86)
  734. ---help---
  735. If you have a tape drive that is connected to your floppy
  736. controller, say Y here.
  737. Some tape drives (like the Seagate "Tape Store 3200" or the Iomega
  738. "Ditto 3200" or the Exabyte "Eagle TR-3") come with a "high speed"
  739. controller of their own. These drives (and their companion
  740. controllers) are also supported if you say Y here.
  741. If you have a special controller (such as the CMS FC-10, FC-20,
  742. Mountain Mach-II, or any controller that is based on the Intel 82078
  743. FDC like the high speed controllers by Seagate and Exabyte and
  744. Iomega's "Ditto Dash") you must configure it by selecting the
  745. appropriate entries from the "Floppy tape controllers" sub-menu
  746. below and possibly modify the default values for the IRQ and DMA
  747. channel and the IO base in ftape's configuration menu.
  748. If you want to use your floppy tape drive on a PCI-bus based system,
  749. please read the file <file:drivers/char/ftape/README.PCI>.
  750. The ftape kernel driver is also available as a runtime loadable
  751. module. To compile this driver as a module, choose M here: the
  752. module will be called ftape.
  753. source "drivers/char/ftape/Kconfig"
  754. endmenu
  755. source "drivers/char/agp/Kconfig"
  756. source "drivers/char/drm/Kconfig"
  757. source "drivers/char/pcmcia/Kconfig"
  758. config MWAVE
  759. tristate "ACP Modem (Mwave) support"
  760. depends on X86
  761. select SERIAL_8250
  762. ---help---
  763. The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
  764. kernel driver and a user level application. Together these components
  765. support direct attachment to public switched telephone networks (PSTNs)
  766. and support selected world wide countries.
  767. This version of the ACP Modem driver supports the IBM Thinkpad 600E,
  768. 600, and 770 that include on board ACP modem hardware.
  769. The modem also supports the standard communications port interface
  770. (ttySx) and is compatible with the Hayes AT Command Set.
  771. The user level application needed to use this driver can be found at
  772. the IBM Linux Technology Center (LTC) web site:
  773. <http://www.ibm.com/linux/ltc/>.
  774. If you own one of the above IBM Thinkpads which has the Mwave chipset
  775. in it, say Y.
  776. To compile this driver as a module, choose M here: the
  777. module will be called mwave.
  778. config SCx200_GPIO
  779. tristate "NatSemi SCx200 GPIO Support"
  780. depends on SCx200
  781. select NSC_GPIO
  782. help
  783. Give userspace access to the GPIO pins on the National
  784. Semiconductor SCx200 processors.
  785. If compiled as a module, it will be called scx200_gpio.
  786. config PC8736x_GPIO
  787. tristate "NatSemi PC8736x GPIO Support"
  788. depends on X86
  789. default SCx200_GPIO # mostly N
  790. select NSC_GPIO # needed for support routines
  791. help
  792. Give userspace access to the GPIO pins on the National
  793. Semiconductor PC-8736x (x=[03456]) SuperIO chip. The chip
  794. has multiple functional units, inc several managed by
  795. hwmon/pc87360 driver. Tested with PC-87366
  796. If compiled as a module, it will be called pc8736x_gpio.
  797. config NSC_GPIO
  798. tristate "NatSemi Base GPIO Support"
  799. depends on X86_32
  800. # selected by SCx200_GPIO and PC8736x_GPIO
  801. # what about 2 selectors differing: m != y
  802. help
  803. Common support used (and needed) by scx200_gpio and
  804. pc8736x_gpio drivers. If those drivers are built as
  805. modules, this one will be too, named nsc_gpio
  806. config CS5535_GPIO
  807. tristate "AMD CS5535/CS5536 GPIO (Geode Companion Device)"
  808. depends on X86_32
  809. help
  810. Give userspace access to the GPIO pins on the AMD CS5535 and
  811. CS5536 Geode companion devices.
  812. If compiled as a module, it will be called cs5535_gpio.
  813. config GPIO_VR41XX
  814. tristate "NEC VR4100 series General-purpose I/O Unit support"
  815. depends on CPU_VR41XX
  816. config RAW_DRIVER
  817. tristate "RAW driver (/dev/raw/rawN) (OBSOLETE)"
  818. help
  819. The raw driver permits block devices to be bound to /dev/raw/rawN.
  820. Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
  821. See the raw(8) manpage for more details.
  822. The raw driver is deprecated and will be removed soon.
  823. Applications should simply open the device (eg /dev/hda1)
  824. with the O_DIRECT flag.
  825. config MAX_RAW_DEVS
  826. int "Maximum number of RAW devices to support (1-8192)"
  827. depends on RAW_DRIVER
  828. default "256"
  829. help
  830. The maximum number of RAW devices that are supported.
  831. Default is 256. Increase this number in case you need lots of
  832. raw devices.
  833. config HPET
  834. bool "HPET - High Precision Event Timer" if (X86 || IA64)
  835. default n
  836. depends on ACPI
  837. help
  838. If you say Y here, you will have a miscdevice named "/dev/hpet/". Each
  839. open selects one of the timers supported by the HPET. The timers are
  840. non-periodioc and/or periodic.
  841. config HPET_RTC_IRQ
  842. bool "HPET Control RTC IRQ" if !HPET_EMULATE_RTC
  843. default n
  844. depends on HPET
  845. help
  846. If you say Y here, you will disable RTC_IRQ in drivers/char/rtc.c. It
  847. is assumed the platform called hpet_alloc with the RTC IRQ values for
  848. the HPET timers.
  849. config HPET_MMAP
  850. bool "Allow mmap of HPET"
  851. default y
  852. depends on HPET
  853. help
  854. If you say Y here, user applications will be able to mmap
  855. the HPET registers.
  856. In some hardware implementations, the page containing HPET
  857. registers may also contain other things that shouldn't be
  858. exposed to the user. If this applies to your hardware,
  859. say N here.
  860. config HANGCHECK_TIMER
  861. tristate "Hangcheck timer"
  862. depends on X86 || IA64 || PPC64
  863. help
  864. The hangcheck-timer module detects when the system has gone
  865. out to lunch past a certain margin. It can reboot the system
  866. or merely print a warning.
  867. config MMTIMER
  868. tristate "MMTIMER Memory mapped RTC for SGI Altix"
  869. depends on IA64_GENERIC || IA64_SGI_SN2
  870. default y
  871. help
  872. The mmtimer device allows direct userspace access to the
  873. Altix system timer.
  874. source "drivers/char/tpm/Kconfig"
  875. config TELCLOCK
  876. tristate "Telecom clock driver for MPBL0010 ATCA SBC"
  877. depends on EXPERIMENTAL
  878. default n
  879. help
  880. The telecom clock device is specific to the MPBL0010 ATCA computer and
  881. allows direct userspace access to the configuration of the telecom clock
  882. configuration settings. This device is used for hardware synchronization
  883. across the ATCA backplane fabric. Upon loading, the driver exports a
  884. sysfs directory, /sys/devices/platform/telco_clock, with a number of
  885. files for controlling the behavior of this hardware.
  886. endmenu