Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the Configure script.
  4. #
  5. mainmenu "Linux/CRIS Kernel Configuration"
  6. config MMU
  7. bool
  8. default y
  9. config ZONE_DMA
  10. bool
  11. default y
  12. config RWSEM_GENERIC_SPINLOCK
  13. bool
  14. default y
  15. config RWSEM_XCHGADD_ALGORITHM
  16. bool
  17. config GENERIC_IOMAP
  18. bool
  19. default y
  20. config ARCH_HAS_ILOG2_U32
  21. bool
  22. default n
  23. config ARCH_HAS_ILOG2_U64
  24. bool
  25. default n
  26. config GENERIC_FIND_NEXT_BIT
  27. bool
  28. default y
  29. config GENERIC_HWEIGHT
  30. bool
  31. default y
  32. config GENERIC_CALIBRATE_DELAY
  33. bool
  34. default y
  35. config NO_IOPORT
  36. def_bool y
  37. config FORCE_MAX_ZONEORDER
  38. int
  39. default 6
  40. config CRIS
  41. bool
  42. default y
  43. select HAVE_IDE
  44. config HZ
  45. int
  46. default 100
  47. source "init/Kconfig"
  48. source "kernel/Kconfig.freezer"
  49. menu "General setup"
  50. source "fs/Kconfig.binfmt"
  51. config GENERIC_HARDIRQS
  52. bool
  53. default y
  54. config ETRAX_CMDLINE
  55. string "Kernel command line"
  56. default "root=/dev/mtdblock3"
  57. help
  58. Pass additional commands to the kernel.
  59. config ETRAX_WATCHDOG
  60. bool "Enable ETRAX watchdog"
  61. help
  62. Enable the built-in watchdog timer support on ETRAX based embedded
  63. network computers.
  64. config ETRAX_WATCHDOG_NICE_DOGGY
  65. bool "Disable watchdog during Oops printouts"
  66. depends on ETRAX_WATCHDOG
  67. help
  68. By enabling this you make sure that the watchdog does not bite while
  69. printing oopses. Recommended for development systems but not for
  70. production releases.
  71. config ETRAX_FAST_TIMER
  72. bool "Enable ETRAX fast timer API"
  73. help
  74. This options enables the API to a fast timer implementation using
  75. timer1 to get sub jiffie resolution timers (primarily one-shot
  76. timers).
  77. This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
  78. config ETRAX_KMALLOCED_MODULES
  79. bool "Enable module allocation with kmalloc"
  80. help
  81. Enable module allocation with kmalloc instead of vmalloc.
  82. config OOM_REBOOT
  83. bool "Enable reboot at out of memory"
  84. source "kernel/Kconfig.preempt"
  85. source mm/Kconfig
  86. endmenu
  87. menu "Hardware setup"
  88. choice
  89. prompt "Processor type"
  90. default ETRAX100LX
  91. config ETRAX100LX
  92. bool "ETRAX-100LX-v1"
  93. help
  94. Support version 1 of the ETRAX 100LX.
  95. config ETRAX100LX_V2
  96. bool "ETRAX-100LX-v2"
  97. help
  98. Support version 2 of the ETRAX 100LX.
  99. config SVINTO_SIM
  100. bool "ETRAX-100LX-for-xsim-simulator"
  101. help
  102. Support the xsim ETRAX Simulator.
  103. config ETRAXFS
  104. bool "ETRAX-FS-V32"
  105. help
  106. Support CRIS V32.
  107. config CRIS_MACH_ARTPEC3
  108. bool "ARTPEC-3"
  109. help
  110. Support Axis ARTPEC-3.
  111. endchoice
  112. config ETRAX_VCS_SIM
  113. bool "VCS Simulator"
  114. help
  115. Setup hardware to be run in the VCS simulator.
  116. config ETRAX_ARCH_V10
  117. bool
  118. default y if ETRAX100LX || ETRAX100LX_V2
  119. default n if !(ETRAX100LX || ETRAX100LX_V2)
  120. config ETRAX_ARCH_V32
  121. bool
  122. default y if (ETRAXFS || CRIS_MACH_ARTPEC3)
  123. default n if !(ETRAXFS || CRIS_MACH_ARTPEC3)
  124. config ETRAX_DRAM_SIZE
  125. int "DRAM size (dec, in MB)"
  126. default "8"
  127. help
  128. Size of DRAM (decimal in MB) typically 2, 8 or 16.
  129. config ETRAX_VMEM_SIZE
  130. int "Video memory size (dec, in MB)"
  131. depends on ETRAX_ARCH_V32 && !ETRAXFS
  132. default 8 if !ETRAXFS
  133. help
  134. Size of Video accessible memory (decimal, in MB).
  135. config ETRAX_FLASH_BUSWIDTH
  136. int "Buswidth of NOR flash in bytes"
  137. default "2"
  138. help
  139. Width in bytes of the NOR Flash bus (1, 2 or 4). Is usually 2.
  140. config ETRAX_NANDFLASH_BUSWIDTH
  141. int "Buswidth of NAND flash in bytes"
  142. default "1"
  143. help
  144. Width in bytes of the NAND flash (1 or 2).
  145. config ETRAX_FLASH1_SIZE
  146. int "FLASH1 size (dec, in MB. 0 = Unknown)"
  147. default "0"
  148. choice
  149. prompt "Product debug-port"
  150. default ETRAX_DEBUG_PORT0
  151. config ETRAX_DEBUG_PORT0
  152. bool "Serial-0"
  153. help
  154. Choose a serial port for the ETRAX debug console. Default to
  155. port 0.
  156. config ETRAX_DEBUG_PORT1
  157. bool "Serial-1"
  158. help
  159. Use serial port 1 for the console.
  160. config ETRAX_DEBUG_PORT2
  161. bool "Serial-2"
  162. help
  163. Use serial port 2 for the console.
  164. config ETRAX_DEBUG_PORT3
  165. bool "Serial-3"
  166. help
  167. Use serial port 3 for the console.
  168. config ETRAX_DEBUG_PORT_NULL
  169. bool "disabled"
  170. help
  171. Disable serial-port debugging.
  172. endchoice
  173. choice
  174. prompt "Kernel GDB port"
  175. depends on ETRAX_KGDB
  176. default ETRAX_KGDB_PORT0
  177. help
  178. Choose a serial port for kernel debugging. NOTE: This port should
  179. not be enabled under Drivers for built-in interfaces (as it has its
  180. own initialization code) and should not be the same as the debug port.
  181. config ETRAX_KGDB_PORT0
  182. bool "Serial-0"
  183. help
  184. Use serial port 0 for kernel debugging.
  185. config ETRAX_KGDB_PORT1
  186. bool "Serial-1"
  187. help
  188. Use serial port 1 for kernel debugging.
  189. config ETRAX_KGDB_PORT2
  190. bool "Serial-2"
  191. help
  192. Use serial port 2 for kernel debugging.
  193. config ETRAX_KGDB_PORT3
  194. bool "Serial-3"
  195. help
  196. Use serial port 3 for kernel debugging.
  197. endchoice
  198. source arch/cris/arch-v10/Kconfig
  199. source arch/cris/arch-v32/Kconfig
  200. endmenu
  201. source "net/Kconfig"
  202. # bring in ETRAX built-in drivers
  203. menu "Drivers for built-in interfaces"
  204. source arch/cris/arch-v10/drivers/Kconfig
  205. source arch/cris/arch-v32/drivers/Kconfig
  206. config ETRAX_AXISFLASHMAP
  207. bool "Axis flash-map support"
  208. select MTD
  209. select MTD_CFI
  210. select MTD_CFI_AMDSTD
  211. select MTD_JEDECPROBE if ETRAX_ARCH_V32
  212. select MTD_CHAR
  213. select MTD_BLOCK
  214. select MTD_PARTITIONS
  215. select MTD_CONCAT
  216. select MTD_COMPLEX_MAPPINGS
  217. help
  218. This option enables MTD mapping of flash devices. Needed to use
  219. flash memories. If unsure, say Y.
  220. config ETRAX_RTC
  221. bool "Real Time Clock support"
  222. depends on ETRAX_I2C
  223. help
  224. Enables drivers for the Real-Time Clock battery-backed chips on
  225. some products. The kernel reads the time when booting, and
  226. the date can be set using ioctl(fd, RTC_SET_TIME, &rt) with rt a
  227. rtc_time struct (see <file:include/asm-cris/rtc.h>) on the /dev/rtc
  228. device. You can check the time with cat /proc/rtc, but
  229. normal time reading should be done using libc function time and
  230. friends.
  231. choice
  232. prompt "RTC chip"
  233. depends on ETRAX_RTC
  234. default ETRAX_PCF8563 if ETRAX_ARCH_V32
  235. default ETRAX_DS1302 if ETRAX_ARCH_V10
  236. config ETRAX_DS1302
  237. depends on ETRAX_ARCH_V10
  238. bool "DS1302"
  239. help
  240. Enables the driver for the DS1302 Real-Time Clock battery-backed
  241. chip on some products.
  242. config ETRAX_PCF8563
  243. bool "PCF8563"
  244. help
  245. Enables the driver for the PCF8563 Real-Time Clock battery-backed
  246. chip on some products.
  247. endchoice
  248. config ETRAX_SYNCHRONOUS_SERIAL
  249. bool "Synchronous serial-port support"
  250. help
  251. Select this to enable the synchronous serial port driver.
  252. config ETRAX_SYNCHRONOUS_SERIAL_PORT0
  253. bool "Synchronous serial port 0 enabled"
  254. depends on ETRAX_SYNCHRONOUS_SERIAL
  255. help
  256. Enabled synchronous serial port 0.
  257. config ETRAX_SYNCHRONOUS_SERIAL0_DMA
  258. bool "Enable DMA on synchronous serial port 0."
  259. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
  260. help
  261. A synchronous serial port can run in manual or DMA mode.
  262. Selecting this option will make it run in DMA mode.
  263. config ETRAX_SYNCHRONOUS_SERIAL_PORT1
  264. bool "Synchronous serial port 1 enabled"
  265. depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
  266. help
  267. Enabled synchronous serial port 1.
  268. config ETRAX_SYNCHRONOUS_SERIAL1_DMA
  269. bool "Enable DMA on synchronous serial port 1."
  270. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
  271. help
  272. A synchronous serial port can run in manual or DMA mode.
  273. Selecting this option will make it run in DMA mode.
  274. choice
  275. prompt "Network LED behavior"
  276. depends on ETRAX_ETHERNET
  277. default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  278. config ETRAX_NETWORK_LED_ON_WHEN_LINK
  279. bool "LED_on_when_link"
  280. help
  281. Selecting LED_on_when_link will light the LED when there is a
  282. connection and will flash off when there is activity.
  283. Selecting LED_on_when_activity will light the LED only when
  284. there is activity.
  285. This setting will also affect the behaviour of other activity LEDs
  286. e.g. Bluetooth.
  287. config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  288. bool "LED_on_when_activity"
  289. help
  290. Selecting LED_on_when_link will light the LED when there is a
  291. connection and will flash off when there is activity.
  292. Selecting LED_on_when_activity will light the LED only when
  293. there is activity.
  294. This setting will also affect the behaviour of other activity LEDs
  295. e.g. Bluetooth.
  296. endchoice
  297. choice
  298. prompt "Ser0 DMA out channel"
  299. depends on ETRAX_SERIAL_PORT0
  300. default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
  301. default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
  302. config ETRAX_SERIAL_PORT0_NO_DMA_OUT
  303. bool "Ser0 uses no DMA for output"
  304. help
  305. Do not use DMA for ser0 output.
  306. config ETRAX_SERIAL_PORT0_DMA6_OUT
  307. bool "Ser0 uses DMA6 for output"
  308. depends on ETRAXFS
  309. help
  310. Enables the DMA6 output channel for ser0 (ttyS0).
  311. If you do not enable DMA, an interrupt for each character will be
  312. used when transmitting data.
  313. Normally you want to use DMA, unless you use the DMA channel for
  314. something else.
  315. config ETRAX_SERIAL_PORT0_DMA0_OUT
  316. bool "Ser0 uses DMA0 for output"
  317. depends on CRIS_MACH_ARTPEC3
  318. help
  319. Enables the DMA0 output channel for ser0 (ttyS0).
  320. If you do not enable DMA, an interrupt for each character will be
  321. used when transmitting data.
  322. Normally you want to use DMA, unless you use the DMA channel for
  323. something else.
  324. endchoice
  325. choice
  326. prompt "Ser0 DMA in channel "
  327. depends on ETRAX_SERIAL_PORT0
  328. default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
  329. default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
  330. help
  331. What DMA channel to use for ser0.
  332. config ETRAX_SERIAL_PORT0_NO_DMA_IN
  333. bool "Ser0 uses no DMA for input"
  334. help
  335. Do not use DMA for ser0 input.
  336. config ETRAX_SERIAL_PORT0_DMA7_IN
  337. bool "Ser0 uses DMA7 for input"
  338. depends on ETRAXFS
  339. help
  340. Enables the DMA7 input channel for ser0 (ttyS0).
  341. If you do not enable DMA, an interrupt for each character will be
  342. used when receiving data.
  343. Normally you want to use DMA, unless you use the DMA channel for
  344. something else.
  345. config ETRAX_SERIAL_PORT0_DMA1_IN
  346. bool "Ser0 uses DMA1 for input"
  347. depends on CRIS_MACH_ARTPEC3
  348. help
  349. Enables the DMA1 input channel for ser0 (ttyS0).
  350. If you do not enable DMA, an interrupt for each character will be
  351. used when receiving data.
  352. Normally you want to use DMA, unless you use the DMA channel for
  353. something else.
  354. endchoice
  355. choice
  356. prompt "Ser1 DMA in channel "
  357. depends on ETRAX_SERIAL_PORT1
  358. default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
  359. default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
  360. help
  361. What DMA channel to use for ser1.
  362. config ETRAX_SERIAL_PORT1_NO_DMA_IN
  363. bool "Ser1 uses no DMA for input"
  364. help
  365. Do not use DMA for ser1 input.
  366. config ETRAX_SERIAL_PORT1_DMA5_IN
  367. bool "Ser1 uses DMA5 for input"
  368. depends on ETRAX_ARCH_V32
  369. help
  370. Enables the DMA5 input channel for ser1 (ttyS1).
  371. If you do not enable DMA, an interrupt for each character will be
  372. used when receiving data.
  373. Normally you want this on, unless you use the DMA channel for
  374. something else.
  375. config ETRAX_SERIAL_PORT1_DMA9_IN
  376. depends on ETRAX_ARCH_V10
  377. bool "Ser1 uses DMA9 for input"
  378. endchoice
  379. choice
  380. prompt "Ser1 DMA out channel"
  381. depends on ETRAX_SERIAL_PORT1
  382. default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
  383. default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
  384. help
  385. What DMA channel to use for ser1.
  386. config ETRAX_SERIAL_PORT1_NO_DMA_OUT
  387. bool "Ser1 uses no DMA for output"
  388. help
  389. Do not use DMA for ser1 output.
  390. config ETRAX_SERIAL_PORT1_DMA8_OUT
  391. depends on ETRAX_ARCH_V10
  392. bool "Ser1 uses DMA8 for output"
  393. config ETRAX_SERIAL_PORT1_DMA4_OUT
  394. depends on ETRAX_ARCH_V32
  395. bool "Ser1 uses DMA4 for output"
  396. help
  397. Enables the DMA4 output channel for ser1 (ttyS1).
  398. If you do not enable DMA, an interrupt for each character will be
  399. used when transmitting data.
  400. Normally you want this on, unless you use the DMA channel for
  401. something else.
  402. endchoice
  403. choice
  404. prompt "Ser2 DMA out channel"
  405. depends on ETRAX_SERIAL_PORT2
  406. default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
  407. default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
  408. config ETRAX_SERIAL_PORT2_NO_DMA_OUT
  409. bool "Ser2 uses no DMA for output"
  410. help
  411. Do not use DMA for ser2 output.
  412. config ETRAX_SERIAL_PORT2_DMA2_OUT
  413. bool "Ser2 uses DMA2 for output"
  414. depends on ETRAXFS || ETRAX_ARCH_V10
  415. help
  416. Enables the DMA2 output channel for ser2 (ttyS2).
  417. If you do not enable DMA, an interrupt for each character will be
  418. used when transmitting data.
  419. Normally you want to use DMA, unless you use the DMA channel for
  420. something else.
  421. config ETRAX_SERIAL_PORT2_DMA6_OUT
  422. bool "Ser2 uses DMA6 for output"
  423. depends on CRIS_MACH_ARTPEC3
  424. help
  425. Enables the DMA6 output channel for ser2 (ttyS2).
  426. If you do not enable DMA, an interrupt for each character will be
  427. used when transmitting data.
  428. Normally you want to use DMA, unless you use the DMA channel for
  429. something else.
  430. endchoice
  431. choice
  432. prompt "Ser2 DMA in channel"
  433. depends on ETRAX_SERIAL_PORT2
  434. default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
  435. default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
  436. help
  437. What DMA channel to use for ser2.
  438. config ETRAX_SERIAL_PORT2_NO_DMA_IN
  439. bool "Ser2 uses no DMA for input"
  440. help
  441. Do not use DMA for ser2 input.
  442. config ETRAX_SERIAL_PORT2_DMA3_IN
  443. bool "Ser2 uses DMA3 for input"
  444. depends on ETRAXFS || ETRAX_ARCH_V10
  445. help
  446. Enables the DMA3 input channel for ser2 (ttyS2).
  447. If you do not enable DMA, an interrupt for each character will be
  448. used when receiving data.
  449. Normally you want to use DMA, unless you use the DMA channel for
  450. something else.
  451. config ETRAX_SERIAL_PORT2_DMA7_IN
  452. bool "Ser2 uses DMA7 for input"
  453. depends on CRIS_MACH_ARTPEC3
  454. help
  455. Enables the DMA7 input channel for ser2 (ttyS2).
  456. If you do not enable DMA, an interrupt for each character will be
  457. used when receiving data.
  458. Normally you want to use DMA, unless you use the DMA channel for
  459. something else.
  460. endchoice
  461. choice
  462. prompt "Ser3 DMA in channel"
  463. depends on ETRAX_SERIAL_PORT3
  464. default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
  465. default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
  466. help
  467. What DMA channel to use for ser3.
  468. config ETRAX_SERIAL_PORT3_NO_DMA_IN
  469. bool "Ser3 uses no DMA for input"
  470. help
  471. Do not use DMA for ser3 input.
  472. config ETRAX_SERIAL_PORT3_DMA5_IN
  473. depends on ETRAX_ARCH_V10
  474. bool "DMA 5"
  475. config ETRAX_SERIAL_PORT3_DMA9_IN
  476. bool "Ser3 uses DMA9 for input"
  477. depends on ETRAXFS
  478. help
  479. Enables the DMA9 input channel for ser3 (ttyS3).
  480. If you do not enable DMA, an interrupt for each character will be
  481. used when receiving data.
  482. Normally you want to use DMA, unless you use the DMA channel for
  483. something else.
  484. config ETRAX_SERIAL_PORT3_DMA3_IN
  485. bool "Ser3 uses DMA3 for input"
  486. depends on CRIS_MACH_ARTPEC3
  487. help
  488. Enables the DMA3 input channel for ser3 (ttyS3).
  489. If you do not enable DMA, an interrupt for each character will be
  490. used when receiving data.
  491. Normally you want to use DMA, unless you use the DMA channel for
  492. something else.
  493. endchoice
  494. choice
  495. prompt "Ser3 DMA out channel"
  496. depends on ETRAX_SERIAL_PORT3
  497. default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
  498. default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
  499. config ETRAX_SERIAL_PORT3_NO_DMA_OUT
  500. bool "Ser3 uses no DMA for output"
  501. help
  502. Do not use DMA for ser3 output.
  503. config ETRAX_SERIAL_PORT3_DMA4_OUT
  504. depends on ETRAX_ARCH_V10
  505. bool "DMA 4"
  506. config ETRAX_SERIAL_PORT3_DMA8_OUT
  507. bool "Ser3 uses DMA8 for output"
  508. depends on ETRAXFS
  509. help
  510. Enables the DMA8 output channel for ser3 (ttyS3).
  511. If you do not enable DMA, an interrupt for each character will be
  512. used when transmitting data.
  513. Normally you want to use DMA, unless you use the DMA channel for
  514. something else.
  515. config ETRAX_SERIAL_PORT3_DMA2_OUT
  516. bool "Ser3 uses DMA2 for output"
  517. depends on CRIS_MACH_ARTPEC3
  518. help
  519. Enables the DMA2 output channel for ser3 (ttyS3).
  520. If you do not enable DMA, an interrupt for each character will be
  521. used when transmitting data.
  522. Normally you want to use DMA, unless you use the DMA channel for
  523. something else.
  524. endchoice
  525. endmenu
  526. source "drivers/base/Kconfig"
  527. # standard linux drivers
  528. source "drivers/mtd/Kconfig"
  529. source "drivers/parport/Kconfig"
  530. source "drivers/pnp/Kconfig"
  531. source "drivers/block/Kconfig"
  532. source "drivers/ide/Kconfig"
  533. source "drivers/net/Kconfig"
  534. source "drivers/i2c/Kconfig"
  535. source "drivers/rtc/Kconfig"
  536. #
  537. # input before char - char/joystick depends on it. As does USB.
  538. #
  539. source "drivers/input/Kconfig"
  540. source "drivers/char/Kconfig"
  541. source "fs/Kconfig"
  542. source "drivers/usb/Kconfig"
  543. source "drivers/uwb/Kconfig"
  544. source "drivers/staging/Kconfig"
  545. source "arch/cris/Kconfig.debug"
  546. source "security/Kconfig"
  547. source "crypto/Kconfig"
  548. source "lib/Kconfig"