Kconfig 39 KB

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