Kconfig 16 KB

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