Kconfig 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see the Configure script.
  4. #
  5. mainmenu "Linux/CRIS Kernel Configuration"
  6. config MMU
  7. bool
  8. default y
  9. config ZONE_DMA
  10. bool
  11. default y
  12. config RWSEM_GENERIC_SPINLOCK
  13. bool
  14. default y
  15. config RWSEM_XCHGADD_ALGORITHM
  16. bool
  17. config GENERIC_IOMAP
  18. bool
  19. default y
  20. config ARCH_HAS_ILOG2_U32
  21. bool
  22. default n
  23. config ARCH_HAS_ILOG2_U64
  24. bool
  25. default n
  26. config GENERIC_FIND_NEXT_BIT
  27. bool
  28. default y
  29. config GENERIC_HWEIGHT
  30. bool
  31. default y
  32. config GENERIC_CALIBRATE_DELAY
  33. bool
  34. default y
  35. config NO_IOPORT
  36. def_bool y
  37. config FORCE_MAX_ZONEORDER
  38. int
  39. default 6
  40. config CRIS
  41. bool
  42. default y
  43. config HZ
  44. int
  45. default 100
  46. source "init/Kconfig"
  47. menu "General setup"
  48. source "fs/Kconfig.binfmt"
  49. config GENERIC_HARDIRQS
  50. bool
  51. default y
  52. config ETRAX_CMDLINE
  53. string "Kernel command line"
  54. default "root=/dev/mtdblock3"
  55. help
  56. Pass additional commands to the kernel.
  57. config ETRAX_WATCHDOG
  58. bool "Enable ETRAX watchdog"
  59. help
  60. Enable the built-in watchdog timer support on ETRAX based embedded
  61. network computers.
  62. config ETRAX_WATCHDOG_NICE_DOGGY
  63. bool "Disable watchdog during Oops printouts"
  64. depends on ETRAX_WATCHDOG
  65. help
  66. By enabling this you make sure that the watchdog does not bite while
  67. printing oopses. Recommended for development systems but not for
  68. production releases.
  69. config ETRAX_FAST_TIMER
  70. bool "Enable ETRAX fast timer API"
  71. help
  72. This options enables the API to a fast timer implementation using
  73. timer1 to get sub jiffie resolution timers (primarily one-shot
  74. timers).
  75. This is needed if CONFIG_ETRAX_SERIAL_FAST_TIMER is enabled.
  76. config ETRAX_KMALLOCED_MODULES
  77. bool "Enable module allocation with kmalloc"
  78. help
  79. Enable module allocation with kmalloc instead of vmalloc.
  80. config OOM_REBOOT
  81. bool "Enable reboot at out of memory"
  82. source "kernel/Kconfig.preempt"
  83. source mm/Kconfig
  84. endmenu
  85. menu "Hardware setup"
  86. choice
  87. prompt "Processor type"
  88. default ETRAX100LX
  89. config ETRAX100LX
  90. bool "ETRAX-100LX-v1"
  91. help
  92. Support version 1 of the ETRAX 100LX.
  93. config ETRAX100LX_V2
  94. bool "ETRAX-100LX-v2"
  95. help
  96. Support version 2 of the ETRAX 100LX.
  97. config SVINTO_SIM
  98. bool "ETRAX-100LX-for-xsim-simulator"
  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_VCS_SIM
  111. bool "VCS Simulator"
  112. help
  113. Setup hardware to be run in the VCS simulator.
  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_PARTITIONS
  213. select MTD_CONCAT
  214. select MTD_COMPLEX_MAPPINGS
  215. help
  216. This option enables MTD mapping of flash devices. Needed to use
  217. flash memories. If unsure, say Y.
  218. config ETRAX_RTC
  219. bool "Real Time Clock support"
  220. depends on ETRAX_I2C
  221. help
  222. Enables drivers for the Real-Time Clock battery-backed chips on
  223. some products. The kernel reads the time when booting, and
  224. the date can be set using ioctl(fd, RTC_SET_TIME, &rt) with rt a
  225. rtc_time struct (see <file:include/asm-cris/rtc.h>) on the /dev/rtc
  226. device. You can check the time with cat /proc/rtc, but
  227. normal time reading should be done using libc function time and
  228. friends.
  229. choice
  230. prompt "RTC chip"
  231. depends on ETRAX_RTC
  232. default ETRAX_PCF8563 if ETRAX_ARCH_V32
  233. default ETRAX_DS1302 if ETRAX_ARCH_V10
  234. config ETRAX_DS1302
  235. depends on ETRAX_ARCH_V10
  236. bool "DS1302"
  237. help
  238. Enables the driver for the DS1302 Real-Time Clock battery-backed
  239. chip on some products.
  240. config ETRAX_PCF8563
  241. bool "PCF8563"
  242. help
  243. Enables the driver for the PCF8563 Real-Time Clock battery-backed
  244. chip on some products.
  245. endchoice
  246. config ETRAX_SYNCHRONOUS_SERIAL
  247. bool "Synchronous serial-port support"
  248. help
  249. Select this to enable the synchronous serial port driver.
  250. config ETRAX_SYNCHRONOUS_SERIAL_PORT0
  251. bool "Synchronous serial port 0 enabled"
  252. depends on ETRAX_SYNCHRONOUS_SERIAL
  253. help
  254. Enabled synchronous serial port 0.
  255. config ETRAX_SYNCHRONOUS_SERIAL0_DMA
  256. bool "Enable DMA on synchronous serial port 0."
  257. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT0
  258. help
  259. A synchronous serial port can run in manual or DMA mode.
  260. Selecting this option will make it run in DMA mode.
  261. config ETRAX_SYNCHRONOUS_SERIAL_PORT1
  262. bool "Synchronous serial port 1 enabled"
  263. depends on ETRAX_SYNCHRONOUS_SERIAL && (ETRAXFS || ETRAX_ARCH_V10)
  264. help
  265. Enabled synchronous serial port 1.
  266. config ETRAX_SYNCHRONOUS_SERIAL1_DMA
  267. bool "Enable DMA on synchronous serial port 1."
  268. depends on ETRAX_SYNCHRONOUS_SERIAL_PORT1
  269. help
  270. A synchronous serial port can run in manual or DMA mode.
  271. Selecting this option will make it run in DMA mode.
  272. choice
  273. prompt "Network LED behavior"
  274. depends on ETRAX_ETHERNET
  275. default ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  276. config ETRAX_NETWORK_LED_ON_WHEN_LINK
  277. bool "LED_on_when_link"
  278. help
  279. Selecting LED_on_when_link will light the LED when there is a
  280. connection and will flash off when there is activity.
  281. Selecting LED_on_when_activity will light the LED only when
  282. there is activity.
  283. This setting will also affect the behaviour of other activity LEDs
  284. e.g. Bluetooth.
  285. config ETRAX_NETWORK_LED_ON_WHEN_ACTIVITY
  286. bool "LED_on_when_activity"
  287. help
  288. Selecting LED_on_when_link will light the LED when there is a
  289. connection and will flash off when there is activity.
  290. Selecting LED_on_when_activity will light the LED only when
  291. there is activity.
  292. This setting will also affect the behaviour of other activity LEDs
  293. e.g. Bluetooth.
  294. endchoice
  295. choice
  296. prompt "Ser0 DMA out channel"
  297. depends on ETRAX_SERIAL_PORT0
  298. default ETRAX_SERIAL_PORT0_DMA6_OUT if ETRAX_ARCH_V32
  299. default ETRAX_SERIAL_PORT0_NO_DMA_OUT if ETRAX_ARCH_V10
  300. config ETRAX_SERIAL_PORT0_NO_DMA_OUT
  301. bool "Ser0 uses no DMA for output"
  302. help
  303. Do not use DMA for ser0 output.
  304. config ETRAX_SERIAL_PORT0_DMA6_OUT
  305. bool "Ser0 uses DMA6 for output"
  306. depends on ETRAXFS
  307. help
  308. Enables the DMA6 output channel for ser0 (ttyS0).
  309. If you do not enable DMA, an interrupt for each character will be
  310. used when transmitting data.
  311. Normally you want to use DMA, unless you use the DMA channel for
  312. something else.
  313. config ETRAX_SERIAL_PORT0_DMA0_OUT
  314. bool "Ser0 uses DMA0 for output"
  315. depends on CRIS_MACH_ARTPEC3
  316. help
  317. Enables the DMA0 output channel for ser0 (ttyS0).
  318. If you do not enable DMA, an interrupt for each character will be
  319. used when transmitting data.
  320. Normally you want to use DMA, unless you use the DMA channel for
  321. something else.
  322. endchoice
  323. choice
  324. prompt "Ser0 DMA in channel "
  325. depends on ETRAX_SERIAL_PORT0
  326. default ETRAX_SERIAL_PORT0_NO_DMA_IN if ETRAX_ARCH_V32
  327. default ETRAX_SERIAL_PORT0_DMA7_IN if ETRAX_ARCH_V10
  328. help
  329. What DMA channel to use for ser0.
  330. config ETRAX_SERIAL_PORT0_NO_DMA_IN
  331. bool "Ser0 uses no DMA for input"
  332. help
  333. Do not use DMA for ser0 input.
  334. config ETRAX_SERIAL_PORT0_DMA7_IN
  335. bool "Ser0 uses DMA7 for input"
  336. depends on ETRAXFS
  337. help
  338. Enables the DMA7 input channel for ser0 (ttyS0).
  339. If you do not enable DMA, an interrupt for each character will be
  340. used when receiving data.
  341. Normally you want to use DMA, unless you use the DMA channel for
  342. something else.
  343. config ETRAX_SERIAL_PORT0_DMA1_IN
  344. bool "Ser0 uses DMA1 for input"
  345. depends on CRIS_MACH_ARTPEC3
  346. help
  347. Enables the DMA1 input channel for ser0 (ttyS0).
  348. If you do not enable DMA, an interrupt for each character will be
  349. used when receiveing data.
  350. Normally you want to use DMA, unless you use the DMA channel for
  351. something else.
  352. endchoice
  353. choice
  354. prompt "Ser1 DMA in channel "
  355. depends on ETRAX_SERIAL_PORT1
  356. default ETRAX_SERIAL_PORT1_NO_DMA_IN if ETRAX_ARCH_V32
  357. default ETRAX_SERIAL_PORT1_DMA9_IN if ETRAX_ARCH_V10
  358. help
  359. What DMA channel to use for ser1.
  360. config ETRAX_SERIAL_PORT1_NO_DMA_IN
  361. bool "Ser1 uses no DMA for input"
  362. help
  363. Do not use DMA for ser1 input.
  364. config ETRAX_SERIAL_PORT1_DMA5_IN
  365. bool "Ser1 uses DMA5 for input"
  366. depends on ETRAX_ARCH_V32
  367. help
  368. Enables the DMA5 input channel for ser1 (ttyS1).
  369. If you do not enable DMA, an interrupt for each character will be
  370. used when receiving data.
  371. Normally you want this on, unless you use the DMA channel for
  372. something else.
  373. config ETRAX_SERIAL_PORT1_DMA9_IN
  374. depends on ETRAX_ARCH_V10
  375. bool "Ser1 uses DMA9 for input"
  376. endchoice
  377. choice
  378. prompt "Ser1 DMA out channel"
  379. depends on ETRAX_SERIAL_PORT1
  380. default ETRAX_SERIAL_PORT1_NO_DMA_OUT if ETRAX_ARCH_V32
  381. default ETRAX_SERIAL_PORT1_DMA8_OUT if ETRAX_ARCH_V10
  382. help
  383. What DMA channel to use for ser1.
  384. config ETRAX_SERIAL_PORT1_NO_DMA_OUT
  385. bool "Ser1 uses no DMA for output"
  386. help
  387. Do not use DMA for ser1 output.
  388. config ETRAX_SERIAL_PORT1_DMA8_OUT
  389. depends on ETRAX_ARCH_V10
  390. bool "Ser1 uses DMA8 for output"
  391. config ETRAX_SERIAL_PORT1_DMA4_OUT
  392. depends on ETRAX_ARCH_V32
  393. bool "Ser1 uses DMA4 for output"
  394. help
  395. Enables the DMA4 output channel for ser1 (ttyS1).
  396. If you do not enable DMA, an interrupt for each character will be
  397. used when transmitting data.
  398. Normally you want this on, unless you use the DMA channel for
  399. something else.
  400. endchoice
  401. choice
  402. prompt "Ser2 DMA out channel"
  403. depends on ETRAX_SERIAL_PORT2
  404. default ETRAX_SERIAL_PORT2_NO_DMA_OUT if ETRAX_ARCH_V32
  405. default ETRAX_SERIAL_PORT2_DMA2_OUT if ETRAX_ARCH_V10
  406. config ETRAX_SERIAL_PORT2_NO_DMA_OUT
  407. bool "Ser2 uses no DMA for output"
  408. help
  409. Do not use DMA for ser2 output.
  410. config ETRAX_SERIAL_PORT2_DMA2_OUT
  411. bool "Ser2 uses DMA2 for output"
  412. depends on ETRAXFS || ETRAX_ARCH_V10
  413. help
  414. Enables the DMA2 output channel for ser2 (ttyS2).
  415. If you do not enable DMA, an interrupt for each character will be
  416. used when transmitting data.
  417. Normally you want to use DMA, unless you use the DMA channel for
  418. something else.
  419. config ETRAX_SERIAL_PORT2_DMA6_OUT
  420. bool "Ser2 uses DMA6 for output"
  421. depends on CRIS_MACH_ARTPEC3
  422. help
  423. Enables the DMA6 output channel for ser2 (ttyS2).
  424. If you do not enable DMA, an interrupt for each character will be
  425. used when transmitting data.
  426. Normally you want to use DMA, unless you use the DMA channel for
  427. something else.
  428. endchoice
  429. choice
  430. prompt "Ser2 DMA in channel"
  431. depends on ETRAX_SERIAL_PORT2
  432. default ETRAX_SERIAL_PORT2_NO_DMA_IN if ETRAX_ARCH_V32
  433. default ETRAX_SERIAL_PORT2_DMA3_IN if ETRAX_ARCH_V10
  434. help
  435. What DMA channel to use for ser2.
  436. config ETRAX_SERIAL_PORT2_NO_DMA_IN
  437. bool "Ser2 uses no DMA for input"
  438. help
  439. Do not use DMA for ser2 input.
  440. config ETRAX_SERIAL_PORT2_DMA3_IN
  441. bool "Ser2 uses DMA3 for input"
  442. depends on ETRAXFS || ETRAX_ARCH_V10
  443. help
  444. Enables the DMA3 input channel for ser2 (ttyS2).
  445. If you do not enable DMA, an interrupt for each character will be
  446. used when receiving data.
  447. Normally you want to use DMA, unless you use the DMA channel for
  448. something else.
  449. config ETRAX_SERIAL_PORT2_DMA7_IN
  450. bool "Ser2 uses DMA7 for input"
  451. depends on CRIS_MACH_ARTPEC3
  452. help
  453. Enables the DMA7 input channel for ser2 (ttyS2).
  454. If you do not enable DMA, an interrupt for each character will be
  455. used when receiveing data.
  456. Normally you want to use DMA, unless you use the DMA channel for
  457. something else.
  458. endchoice
  459. choice
  460. prompt "Ser3 DMA in channel"
  461. depends on ETRAX_SERIAL_PORT3
  462. default ETRAX_SERIAL_PORT3_NO_DMA_IN if ETRAX_ARCH_V32
  463. default ETRAX_SERIAL_PORT3_DMA5_IN if ETRAX_ARCH_V10
  464. help
  465. What DMA channel to use for ser3.
  466. config ETRAX_SERIAL_PORT3_NO_DMA_IN
  467. bool "Ser3 uses no DMA for input"
  468. help
  469. Do not use DMA for ser3 input.
  470. config ETRAX_SERIAL_PORT3_DMA5_IN
  471. depends on ETRAX_ARCH_V10
  472. bool "DMA 5"
  473. config ETRAX_SERIAL_PORT3_DMA9_IN
  474. bool "Ser3 uses DMA9 for input"
  475. depends on ETRAXFS
  476. help
  477. Enables the DMA9 input channel for ser3 (ttyS3).
  478. If you do not enable DMA, an interrupt for each character will be
  479. used when receiving data.
  480. Normally you want to use DMA, unless you use the DMA channel for
  481. something else.
  482. config ETRAX_SERIAL_PORT3_DMA3_IN
  483. bool "Ser3 uses DMA3 for input"
  484. depends on CRIS_MACH_ARTPEC3
  485. help
  486. Enables the DMA3 input channel for ser3 (ttyS3).
  487. If you do not enable DMA, an interrupt for each character will be
  488. used when receiveing data.
  489. Normally you want to use DMA, unless you use the DMA channel for
  490. something else.
  491. endchoice
  492. choice
  493. prompt "Ser3 DMA out channel"
  494. depends on ETRAX_SERIAL_PORT3
  495. default ETRAX_SERIAL_PORT3_NO_DMA_OUT if ETRAX_ARCH_V32
  496. default ETRAX_SERIAL_PORT3_DMA4_OUT if ETRAX_ARCH_V10
  497. config ETRAX_SERIAL_PORT3_NO_DMA_OUT
  498. bool "Ser3 uses no DMA for output"
  499. help
  500. Do not use DMA for ser3 output.
  501. config ETRAX_SERIAL_PORT3_DMA4_OUT
  502. depends on ETRAX_ARCH_V10
  503. bool "DMA 4"
  504. config ETRAX_SERIAL_PORT3_DMA8_OUT
  505. bool "Ser3 uses DMA8 for output"
  506. depends on ETRAXFS
  507. help
  508. Enables the DMA8 output channel for ser3 (ttyS3).
  509. If you do not enable DMA, an interrupt for each character will be
  510. used when transmitting data.
  511. Normally you want to use DMA, unless you use the DMA channel for
  512. something else.
  513. config ETRAX_SERIAL_PORT3_DMA2_OUT
  514. bool "Ser3 uses DMA2 for output"
  515. depends on CRIS_MACH_ARTPEC3
  516. help
  517. Enables the DMA2 output channel for ser3 (ttyS3).
  518. If you do not enable DMA, an interrupt for each character will be
  519. used when transmitting data.
  520. Normally you want to use DMA, unless you use the DMA channel for
  521. something else.
  522. endchoice
  523. endmenu
  524. source "drivers/base/Kconfig"
  525. # standard linux drivers
  526. source "drivers/mtd/Kconfig"
  527. source "drivers/parport/Kconfig"
  528. source "drivers/pnp/Kconfig"
  529. source "drivers/block/Kconfig"
  530. source "drivers/ide/Kconfig"
  531. source "drivers/net/Kconfig"
  532. source "drivers/i2c/Kconfig"
  533. source "drivers/rtc/Kconfig"
  534. #
  535. # input before char - char/joystick depends on it. As does USB.
  536. #
  537. source "drivers/input/Kconfig"
  538. source "drivers/char/Kconfig"
  539. source "fs/Kconfig"
  540. source "drivers/usb/Kconfig"
  541. source "arch/cris/Kconfig.debug"
  542. source "security/Kconfig"
  543. source "crypto/Kconfig"
  544. source "lib/Kconfig"