Kconfig 16 KB

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