Kconfig 16 KB

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