Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681
  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 HAVE_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_CHAR
  211. select MTD_BLOCK
  212. select MTD_COMPLEX_MAPPINGS
  213. help
  214. This option enables MTD mapping of flash devices. Needed to use
  215. flash memories. If unsure, say Y.
  216. config ETRAX_RTC
  217. bool "Real Time Clock support"
  218. depends on ETRAX_I2C
  219. help
  220. Enables drivers for the Real-Time Clock battery-backed chips on
  221. some products. The kernel reads the time when booting, and
  222. the date can be set using ioctl(fd, RTC_SET_TIME, &rt) with rt a
  223. rtc_time struct (see <file:arch/cris/include/asm/rtc.h>) on the
  224. /dev/rtc device. You can check the time with cat /proc/rtc, but
  225. normal time reading should be done using libc function time and
  226. friends.
  227. choice
  228. prompt "RTC chip"
  229. depends on ETRAX_RTC
  230. default ETRAX_DS1302
  231. config ETRAX_DS1302
  232. depends on ETRAX_ARCH_V10
  233. bool "DS1302"
  234. help
  235. Enables the driver for the DS1302 Real-Time Clock battery-backed
  236. chip on some products.
  237. config ETRAX_PCF8563
  238. bool "PCF8563"
  239. help
  240. Enables the driver for the PCF8563 Real-Time Clock battery-backed
  241. chip on some products.
  242. endchoice
  243. config ETRAX_SYNCHRONOUS_SERIAL
  244. bool "Synchronous serial-port support"
  245. help
  246. Select this to enable the synchronous serial port driver.
  247. config ETRAX_SYNCHRONOUS_SERIAL_PORT0
  248. bool "Synchronous serial port 0 enabled"
  249. depends on ETRAX_SYNCHRONOUS_SERIAL
  250. help
  251. Enabled synchronous serial port 0.
  252. config ETRAX_SYNCHRONOUS_SERIAL0_DMA
  253. bool "Enable DMA on synchronous serial port 0."
  254. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
  255. help
  256. A synchronous serial port can run in manual or DMA mode.
  257. Selecting this option will make it run in DMA mode.
  258. config ETRAX_SYNCHRONOUS_SERIAL_PORT1
  259. bool "Synchronous serial port 1 enabled"
  260. depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
  261. help
  262. Enabled synchronous serial port 1.
  263. config ETRAX_SYNCHRONOUS_SERIAL1_DMA
  264. bool "Enable DMA on synchronous serial port 1."
  265. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
  266. help
  267. A synchronous serial port can run in manual or DMA mode.
  268. Selecting this option will make it run in DMA mode.
  269. choice
  270. prompt "Network LED behavior"
  271. depends on ETRAX_ETHERNET
  272. default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  273. config ETRAX_NETWORK_LED_ON_WHEN_LINK
  274. bool "LED_on_when_link"
  275. help
  276. Selecting LED_on_when_link will light the LED when there is a
  277. connection and will flash off when there is activity.
  278. Selecting LED_on_when_activity will light the LED only when
  279. there is activity.
  280. This setting will also affect the behaviour of other activity LEDs
  281. e.g. Bluetooth.
  282. config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  283. bool "LED_on_when_activity"
  284. help
  285. Selecting LED_on_when_link will light the LED when there is a
  286. connection and will flash off when there is activity.
  287. Selecting LED_on_when_activity will light the LED only when
  288. there is activity.
  289. This setting will also affect the behaviour of other activity LEDs
  290. e.g. Bluetooth.
  291. endchoice
  292. choice
  293. prompt "Ser0 DMA out channel"
  294. depends on ETRAX_SERIAL_PORT0
  295. default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
  296. default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
  297. config ETRAX_SERIAL_PORT0_NO_DMA_OUT
  298. bool "Ser0 uses no DMA for output"
  299. help
  300. Do not use DMA for ser0 output.
  301. config ETRAX_SERIAL_PORT0_DMA6_OUT
  302. bool "Ser0 uses DMA6 for output"
  303. depends on ETRAXFS
  304. help
  305. Enables the DMA6 output channel for ser0 (ttyS0).
  306. If you do not enable DMA, an interrupt for each character will be
  307. used when transmitting data.
  308. Normally you want to use DMA, unless you use the DMA channel for
  309. something else.
  310. config ETRAX_SERIAL_PORT0_DMA0_OUT
  311. bool "Ser0 uses DMA0 for output"
  312. depends on CRIS_MACH_ARTPEC3
  313. help
  314. Enables the DMA0 output channel for ser0 (ttyS0).
  315. If you do not enable DMA, an interrupt for each character will be
  316. used when transmitting data.
  317. Normally you want to use DMA, unless you use the DMA channel for
  318. something else.
  319. endchoice
  320. choice
  321. prompt "Ser0 DMA in channel "
  322. depends on ETRAX_SERIAL_PORT0
  323. default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
  324. default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
  325. help
  326. What DMA channel to use for ser0.
  327. config ETRAX_SERIAL_PORT0_NO_DMA_IN
  328. bool "Ser0 uses no DMA for input"
  329. help
  330. Do not use DMA for ser0 input.
  331. config ETRAX_SERIAL_PORT0_DMA7_IN
  332. bool "Ser0 uses DMA7 for input"
  333. depends on ETRAXFS
  334. help
  335. Enables the DMA7 input channel for ser0 (ttyS0).
  336. If you do not enable DMA, an interrupt for each character will be
  337. used when receiving data.
  338. Normally you want to use DMA, unless you use the DMA channel for
  339. something else.
  340. config ETRAX_SERIAL_PORT0_DMA1_IN
  341. bool "Ser0 uses DMA1 for input"
  342. depends on CRIS_MACH_ARTPEC3
  343. help
  344. Enables the DMA1 input channel for ser0 (ttyS0).
  345. If you do not enable DMA, an interrupt for each character will be
  346. used when receiving data.
  347. Normally you want to use DMA, unless you use the DMA channel for
  348. something else.
  349. endchoice
  350. choice
  351. prompt "Ser1 DMA in channel "
  352. depends on ETRAX_SERIAL_PORT1
  353. default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
  354. default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
  355. help
  356. What DMA channel to use for ser1.
  357. config ETRAX_SERIAL_PORT1_NO_DMA_IN
  358. bool "Ser1 uses no DMA for input"
  359. help
  360. Do not use DMA for ser1 input.
  361. config ETRAX_SERIAL_PORT1_DMA5_IN
  362. bool "Ser1 uses DMA5 for input"
  363. depends on ETRAX_ARCH_V32
  364. help
  365. Enables the DMA5 input channel for ser1 (ttyS1).
  366. If you do not enable DMA, an interrupt for each character will be
  367. used when receiving data.
  368. Normally you want this on, unless you use the DMA channel for
  369. something else.
  370. config ETRAX_SERIAL_PORT1_DMA9_IN
  371. depends on ETRAX_ARCH_V10
  372. bool "Ser1 uses DMA9 for input"
  373. endchoice
  374. choice
  375. prompt "Ser1 DMA out channel"
  376. depends on ETRAX_SERIAL_PORT1
  377. default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
  378. default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
  379. help
  380. What DMA channel to use for ser1.
  381. config ETRAX_SERIAL_PORT1_NO_DMA_OUT
  382. bool "Ser1 uses no DMA for output"
  383. help
  384. Do not use DMA for ser1 output.
  385. config ETRAX_SERIAL_PORT1_DMA8_OUT
  386. depends on ETRAX_ARCH_V10
  387. bool "Ser1 uses DMA8 for output"
  388. config ETRAX_SERIAL_PORT1_DMA4_OUT
  389. depends on ETRAX_ARCH_V32
  390. bool "Ser1 uses DMA4 for output"
  391. help
  392. Enables the DMA4 output channel for ser1 (ttyS1).
  393. If you do not enable DMA, an interrupt for each character will be
  394. used when transmitting data.
  395. Normally you want this on, unless you use the DMA channel for
  396. something else.
  397. endchoice
  398. choice
  399. prompt "Ser2 DMA out channel"
  400. depends on ETRAX_SERIAL_PORT2
  401. default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
  402. default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
  403. config ETRAX_SERIAL_PORT2_NO_DMA_OUT
  404. bool "Ser2 uses no DMA for output"
  405. help
  406. Do not use DMA for ser2 output.
  407. config ETRAX_SERIAL_PORT2_DMA2_OUT
  408. bool "Ser2 uses DMA2 for output"
  409. depends on ETRAXFS || ETRAX_ARCH_V10
  410. help
  411. Enables the DMA2 output channel for ser2 (ttyS2).
  412. If you do not enable DMA, an interrupt for each character will be
  413. used when transmitting data.
  414. Normally you want to use DMA, unless you use the DMA channel for
  415. something else.
  416. config ETRAX_SERIAL_PORT2_DMA6_OUT
  417. bool "Ser2 uses DMA6 for output"
  418. depends on CRIS_MACH_ARTPEC3
  419. help
  420. Enables the DMA6 output channel for ser2 (ttyS2).
  421. If you do not enable DMA, an interrupt for each character will be
  422. used when transmitting data.
  423. Normally you want to use DMA, unless you use the DMA channel for
  424. something else.
  425. endchoice
  426. choice
  427. prompt "Ser2 DMA in channel"
  428. depends on ETRAX_SERIAL_PORT2
  429. default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
  430. default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
  431. help
  432. What DMA channel to use for ser2.
  433. config ETRAX_SERIAL_PORT2_NO_DMA_IN
  434. bool "Ser2 uses no DMA for input"
  435. help
  436. Do not use DMA for ser2 input.
  437. config ETRAX_SERIAL_PORT2_DMA3_IN
  438. bool "Ser2 uses DMA3 for input"
  439. depends on ETRAXFS || ETRAX_ARCH_V10
  440. help
  441. Enables the DMA3 input channel for ser2 (ttyS2).
  442. If you do not enable DMA, an interrupt for each character will be
  443. used when receiving data.
  444. Normally you want to use DMA, unless you use the DMA channel for
  445. something else.
  446. config ETRAX_SERIAL_PORT2_DMA7_IN
  447. bool "Ser2 uses DMA7 for input"
  448. depends on CRIS_MACH_ARTPEC3
  449. help
  450. Enables the DMA7 input channel for ser2 (ttyS2).
  451. If you do not enable DMA, an interrupt for each character will be
  452. used when receiving data.
  453. Normally you want to use DMA, unless you use the DMA channel for
  454. something else.
  455. endchoice
  456. choice
  457. prompt "Ser3 DMA in channel"
  458. depends on ETRAX_SERIAL_PORT3
  459. default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
  460. default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
  461. help
  462. What DMA channel to use for ser3.
  463. config ETRAX_SERIAL_PORT3_NO_DMA_IN
  464. bool "Ser3 uses no DMA for input"
  465. help
  466. Do not use DMA for ser3 input.
  467. config ETRAX_SERIAL_PORT3_DMA5_IN
  468. depends on ETRAX_ARCH_V10
  469. bool "DMA 5"
  470. config ETRAX_SERIAL_PORT3_DMA9_IN
  471. bool "Ser3 uses DMA9 for input"
  472. depends on ETRAXFS
  473. help
  474. Enables the DMA9 input channel for ser3 (ttyS3).
  475. If you do not enable DMA, an interrupt for each character will be
  476. used when receiving data.
  477. Normally you want to use DMA, unless you use the DMA channel for
  478. something else.
  479. config ETRAX_SERIAL_PORT3_DMA3_IN
  480. bool "Ser3 uses DMA3 for input"
  481. depends on CRIS_MACH_ARTPEC3
  482. help
  483. Enables the DMA3 input channel for ser3 (ttyS3).
  484. If you do not enable DMA, an interrupt for each character will be
  485. used when receiving data.
  486. Normally you want to use DMA, unless you use the DMA channel for
  487. something else.
  488. endchoice
  489. choice
  490. prompt "Ser3 DMA out channel"
  491. depends on ETRAX_SERIAL_PORT3
  492. default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
  493. default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
  494. config ETRAX_SERIAL_PORT3_NO_DMA_OUT
  495. bool "Ser3 uses no DMA for output"
  496. help
  497. Do not use DMA for ser3 output.
  498. config ETRAX_SERIAL_PORT3_DMA4_OUT
  499. depends on ETRAX_ARCH_V10
  500. bool "DMA 4"
  501. config ETRAX_SERIAL_PORT3_DMA8_OUT
  502. bool "Ser3 uses DMA8 for output"
  503. depends on ETRAXFS
  504. help
  505. Enables the DMA8 output channel for ser3 (ttyS3).
  506. If you do not enable DMA, an interrupt for each character will be
  507. used when transmitting data.
  508. Normally you want to use DMA, unless you use the DMA channel for
  509. something else.
  510. config ETRAX_SERIAL_PORT3_DMA2_OUT
  511. bool "Ser3 uses DMA2 for output"
  512. depends on CRIS_MACH_ARTPEC3
  513. help
  514. Enables the DMA2 output channel for ser3 (ttyS3).
  515. If you do not enable DMA, an interrupt for each character will be
  516. used when transmitting data.
  517. Normally you want to use DMA, unless you use the DMA channel for
  518. something else.
  519. endchoice
  520. endmenu
  521. source "drivers/base/Kconfig"
  522. # standard linux drivers
  523. source "drivers/mtd/Kconfig"
  524. source "drivers/parport/Kconfig"
  525. source "drivers/pnp/Kconfig"
  526. source "drivers/block/Kconfig"
  527. source "drivers/ide/Kconfig"
  528. source "drivers/net/Kconfig"
  529. source "drivers/i2c/Kconfig"
  530. source "drivers/rtc/Kconfig"
  531. #
  532. # input before char - char/joystick depends on it. As does USB.
  533. #
  534. source "drivers/input/Kconfig"
  535. source "drivers/char/Kconfig"
  536. source "fs/Kconfig"
  537. source "drivers/usb/Kconfig"
  538. source "drivers/uwb/Kconfig"
  539. source "drivers/staging/Kconfig"
  540. source "arch/cris/Kconfig.debug"
  541. source "security/Kconfig"
  542. source "crypto/Kconfig"
  543. source "lib/Kconfig"