Kconfig 16 KB

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