Kconfig 16 KB

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