Kconfig 16 KB

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