Kconfig 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see Documentation/kbuild/kconfig-language.txt.
  4. #
  5. mainmenu "Linux/SuperH Kernel Configuration"
  6. config SUPERH
  7. bool
  8. default y
  9. select EMBEDDED
  10. help
  11. The SuperH is a RISC processor targeted for use in embedded systems
  12. and consumer electronics; it was also used in the Sega Dreamcast
  13. gaming console. The SuperH port has a home page at
  14. <http://www.linux-sh.org/>.
  15. config RWSEM_GENERIC_SPINLOCK
  16. bool
  17. default y
  18. config RWSEM_XCHGADD_ALGORITHM
  19. bool
  20. config GENERIC_BUG
  21. def_bool y
  22. depends on BUG
  23. config GENERIC_FIND_NEXT_BIT
  24. bool
  25. default y
  26. config GENERIC_HWEIGHT
  27. bool
  28. default y
  29. config GENERIC_HARDIRQS
  30. bool
  31. default y
  32. config GENERIC_IRQ_PROBE
  33. bool
  34. default y
  35. config GENERIC_CALIBRATE_DELAY
  36. bool
  37. default y
  38. config GENERIC_IOMAP
  39. bool
  40. config GENERIC_TIME
  41. def_bool n
  42. config GENERIC_CLOCKEVENTS
  43. def_bool n
  44. config SYS_SUPPORTS_APM_EMULATION
  45. bool
  46. config ARCH_MAY_HAVE_PC_FDC
  47. bool
  48. config STACKTRACE_SUPPORT
  49. bool
  50. default y
  51. config LOCKDEP_SUPPORT
  52. bool
  53. default y
  54. config ARCH_HAS_ILOG2_U32
  55. bool
  56. default n
  57. config ARCH_HAS_ILOG2_U64
  58. bool
  59. default n
  60. source "init/Kconfig"
  61. menu "System type"
  62. source "arch/sh/mm/Kconfig"
  63. menu "Processor features"
  64. choice
  65. prompt "Endianess selection"
  66. default CPU_LITTLE_ENDIAN
  67. help
  68. Some SuperH machines can be configured for either little or big
  69. endian byte order. These modes require different kernels.
  70. config CPU_LITTLE_ENDIAN
  71. bool "Little Endian"
  72. config CPU_BIG_ENDIAN
  73. bool "Big Endian"
  74. endchoice
  75. config SH_FPU
  76. bool "FPU support"
  77. depends on !CPU_SH3
  78. default y
  79. help
  80. Selecting this option will enable support for SH processors that
  81. have FPU units (ie, SH77xx).
  82. This option must be set in order to enable the FPU.
  83. config SH_FPU_EMU
  84. bool "FPU emulation support"
  85. depends on !SH_FPU && EXPERIMENTAL
  86. default n
  87. help
  88. Selecting this option will enable support for software FPU emulation.
  89. Most SH-3 users will want to say Y here, whereas most SH-4 users will
  90. want to say N.
  91. config SH_DSP
  92. bool "DSP support"
  93. default y if SH4AL_DSP || !CPU_SH4
  94. default n
  95. help
  96. Selecting this option will enable support for SH processors that
  97. have DSP units (ie, SH2-DSP, SH3-DSP, and SH4AL-DSP).
  98. This option must be set in order to enable the DSP.
  99. config SH_ADC
  100. bool "ADC support"
  101. depends on CPU_SH3
  102. default y
  103. help
  104. Selecting this option will allow the Linux kernel to use SH3 on-chip
  105. ADC module.
  106. If unsure, say N.
  107. config SH_STORE_QUEUES
  108. bool "Support for Store Queues"
  109. depends on CPU_SH4
  110. help
  111. Selecting this option will enable an in-kernel API for manipulating
  112. the store queues integrated in the SH-4 processors.
  113. config SPECULATIVE_EXECUTION
  114. bool "Speculative subroutine return"
  115. depends on CPU_SUBTYPE_SH7780 && EXPERIMENTAL
  116. help
  117. This enables support for a speculative instruction fetch for
  118. subroutine return. There are various pitfalls associated with
  119. this, as outlined in the SH7780 hardware manual.
  120. If unsure, say N.
  121. config CPU_HAS_INTEVT
  122. bool
  123. config CPU_HAS_PINT_IRQ
  124. bool
  125. config CPU_HAS_MASKREG_IRQ
  126. bool
  127. config CPU_HAS_INTC2_IRQ
  128. bool
  129. config CPU_HAS_IPR_IRQ
  130. bool
  131. config CPU_HAS_SR_RB
  132. bool "CPU has SR.RB"
  133. depends on CPU_SH3 || CPU_SH4
  134. default y
  135. help
  136. This will enable the use of SR.RB register bank usage. Processors
  137. that are lacking this bit must have another method in place for
  138. accomplishing what is taken care of by the banked registers.
  139. See <file:Documentation/sh/register-banks.txt> for further
  140. information on SR.RB and register banking in the kernel in general.
  141. config CPU_HAS_PTEA
  142. bool
  143. endmenu
  144. menu "Board support"
  145. config SOLUTION_ENGINE
  146. bool
  147. config SH_SOLUTION_ENGINE
  148. bool "SolutionEngine"
  149. select SOLUTION_ENGINE
  150. depends on CPU_SUBTYPE_SH7709 || CPU_SUBTYPE_SH7750
  151. help
  152. Select SolutionEngine if configuring for a Hitachi SH7709
  153. or SH7750 evaluation board.
  154. config SH_7206_SOLUTION_ENGINE
  155. bool "SolutionEngine7206"
  156. select SOLUTION_ENGINE
  157. depends on CPU_SUBTYPE_SH7206
  158. help
  159. Select 7206 SolutionEngine if configuring for a Hitachi SH7206
  160. evaluation board.
  161. config SH_7619_SOLUTION_ENGINE
  162. bool "SolutionEngine7619"
  163. select SOLUTION_ENGINE
  164. depends on CPU_SUBTYPE_SH7619
  165. help
  166. Select 7619 SolutionEngine if configuring for a Hitachi SH7619
  167. evaluation board.
  168. config SH_7722_SOLUTION_ENGINE
  169. bool "SolutionEngine7722"
  170. select SOLUTION_ENGINE
  171. depends on CPU_SUBTYPE_SH7722
  172. help
  173. Select 7722 SolutionEngine if configuring for a Hitachi SH772
  174. evaluation board.
  175. config SH_7751_SOLUTION_ENGINE
  176. bool "SolutionEngine7751"
  177. select SOLUTION_ENGINE
  178. depends on CPU_SUBTYPE_SH7751
  179. help
  180. Select 7751 SolutionEngine if configuring for a Hitachi SH7751
  181. evaluation board.
  182. config SH_7780_SOLUTION_ENGINE
  183. bool "SolutionEngine7780"
  184. select SOLUTION_ENGINE
  185. depends on CPU_SUBTYPE_SH7780
  186. help
  187. Select 7780 SolutionEngine if configuring for a Renesas SH7780
  188. evaluation board.
  189. config SH_7300_SOLUTION_ENGINE
  190. bool "SolutionEngine7300"
  191. select SOLUTION_ENGINE
  192. depends on CPU_SUBTYPE_SH7300
  193. help
  194. Select 7300 SolutionEngine if configuring for a Hitachi
  195. SH7300(SH-Mobile V) evaluation board.
  196. config SH_7343_SOLUTION_ENGINE
  197. bool "SolutionEngine7343"
  198. select SOLUTION_ENGINE
  199. depends on CPU_SUBTYPE_SH7343
  200. help
  201. Select 7343 SolutionEngine if configuring for a Hitachi
  202. SH7343 (SH-Mobile 3AS) evaluation board.
  203. config SH_73180_SOLUTION_ENGINE
  204. bool "SolutionEngine73180"
  205. select SOLUTION_ENGINE
  206. depends on CPU_SUBTYPE_SH73180
  207. help
  208. Select 73180 SolutionEngine if configuring for a Hitachi
  209. SH73180(SH-Mobile 3) evaluation board.
  210. config SH_7751_SYSTEMH
  211. bool "SystemH7751R"
  212. depends on CPU_SUBTYPE_SH7751R
  213. help
  214. Select SystemH if you are configuring for a Renesas SystemH
  215. 7751R evaluation board.
  216. config SH_HP6XX
  217. bool "HP6XX"
  218. select SYS_SUPPORTS_APM_EMULATION
  219. depends on CPU_SUBTYPE_SH7709
  220. help
  221. Select HP6XX if configuring for a HP jornada HP6xx.
  222. More information (hardware only) at
  223. <http://www.hp.com/jornada/>.
  224. config SH_SATURN
  225. bool "Saturn"
  226. depends on CPU_SUBTYPE_SH7604
  227. help
  228. Select Saturn if configuring for a SEGA Saturn.
  229. config SH_DREAMCAST
  230. bool "Dreamcast"
  231. depends on CPU_SUBTYPE_SH7091
  232. help
  233. Select Dreamcast if configuring for a SEGA Dreamcast.
  234. More information at
  235. <http://www.m17n.org/linux-sh/dreamcast/>. There is a
  236. Dreamcast project is at <http://linuxdc.sourceforge.net/>.
  237. config SH_MPC1211
  238. bool "Interface MPC1211"
  239. depends on CPU_SUBTYPE_SH7751 && BROKEN
  240. help
  241. CTP/PCI-SH02 is a CPU module computer that is produced
  242. by Interface Corporation.
  243. More information at <http://www.interface.co.jp>
  244. config SH_SH03
  245. bool "Interface CTP/PCI-SH03"
  246. depends on CPU_SUBTYPE_SH7751 && BROKEN
  247. help
  248. CTP/PCI-SH03 is a CPU module computer that is produced
  249. by Interface Corporation.
  250. More information at <http://www.interface.co.jp>
  251. config SH_SECUREEDGE5410
  252. bool "SecureEdge5410"
  253. depends on CPU_SUBTYPE_SH7751R
  254. help
  255. Select SecureEdge5410 if configuring for a SnapGear SH board.
  256. This includes both the OEM SecureEdge products as well as the
  257. SME product line.
  258. config SH_HS7751RVOIP
  259. bool "HS7751RVOIP"
  260. depends on CPU_SUBTYPE_SH7751R
  261. help
  262. Select HS7751RVOIP if configuring for a Renesas Technology
  263. Sales VoIP board.
  264. config SH_7710VOIPGW
  265. bool "SH7710-VOIP-GW"
  266. depends on CPU_SUBTYPE_SH7710
  267. help
  268. Select this option to build a kernel for the SH7710 based
  269. VOIP GW.
  270. config SH_RTS7751R2D
  271. bool "RTS7751R2D"
  272. depends on CPU_SUBTYPE_SH7751R
  273. help
  274. Select RTS7751R2D if configuring for a Renesas Technology
  275. Sales SH-Graphics board.
  276. config SH_HIGHLANDER
  277. bool "Highlander"
  278. depends on CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785
  279. config SH_EDOSK7705
  280. bool "EDOSK7705"
  281. depends on CPU_SUBTYPE_SH7705
  282. config SH_SH4202_MICRODEV
  283. bool "SH4-202 MicroDev"
  284. depends on CPU_SUBTYPE_SH4_202
  285. help
  286. Select SH4-202 MicroDev if configuring for a SuperH MicroDev board
  287. with an SH4-202 CPU.
  288. config SH_LANDISK
  289. bool "LANDISK"
  290. depends on CPU_SUBTYPE_SH7751R
  291. help
  292. I-O DATA DEVICE, INC. "LANDISK Series" support.
  293. config SH_TITAN
  294. bool "TITAN"
  295. depends on CPU_SUBTYPE_SH7751R
  296. help
  297. Select Titan if you are configuring for a Nimble Microsystems
  298. NetEngine NP51R.
  299. config SH_SHMIN
  300. bool "SHMIN"
  301. depends on CPU_SUBTYPE_SH7706
  302. help
  303. Select SHMIN if configuring for the SHMIN board.
  304. config SH_LBOX_RE2
  305. bool "L-BOX RE2"
  306. depends on CPU_SUBTYPE_SH7751R
  307. help
  308. Select L-BOX RE2 if configuring for the NTT COMWARE L-BOX RE2.
  309. endmenu
  310. source "arch/sh/boards/renesas/hs7751rvoip/Kconfig"
  311. source "arch/sh/boards/renesas/rts7751r2d/Kconfig"
  312. source "arch/sh/boards/renesas/r7780rp/Kconfig"
  313. config CF_ENABLER
  314. bool "Compact Flash Enabler support"
  315. depends on SH_SOLUTION_ENGINE || SH_SH03
  316. ---help---
  317. Compact Flash is a small, removable mass storage device introduced
  318. in 1994 originally as a PCMCIA device. If you say `Y' here, you
  319. compile in support for Compact Flash devices directly connected to
  320. a SuperH processor. A Compact Flash FAQ is available at
  321. <http://www.compactflash.org/faqs/faq.htm>.
  322. If your board has "Directly Connected" CompactFlash at area 5 or 6,
  323. you may want to enable this option. Then, you can use CF as
  324. primary IDE drive (only tested for SanDisk).
  325. If in doubt, select 'N'.
  326. choice
  327. prompt "Compact Flash Connection Area"
  328. depends on CF_ENABLER
  329. default CF_AREA6
  330. config CF_AREA5
  331. bool "Area5"
  332. help
  333. If your board has "Directly Connected" CompactFlash, You should
  334. select the area where your CF is connected to.
  335. - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
  336. - "Area6" if it is connected to Area 6 (0x18000000)
  337. "Area6" will work for most boards.
  338. config CF_AREA6
  339. bool "Area6"
  340. endchoice
  341. config CF_BASE_ADDR
  342. hex
  343. depends on CF_ENABLER
  344. default "0xb8000000" if CF_AREA6
  345. default "0xb4000000" if CF_AREA5
  346. menu "Timer and clock configuration"
  347. config SH_TMU
  348. bool "TMU timer support"
  349. depends on CPU_SH3 || CPU_SH4
  350. select GENERIC_TIME
  351. select GENERIC_CLOCKEVENTS
  352. default y
  353. help
  354. This enables the use of the TMU as the system timer.
  355. config SH_CMT
  356. bool "CMT timer support"
  357. depends on CPU_SH2
  358. default y
  359. help
  360. This enables the use of the CMT as the system timer.
  361. config SH_MTU2
  362. bool "MTU2 timer support"
  363. depends on CPU_SH2A
  364. default n
  365. help
  366. This enables the use of the MTU2 as the system timer.
  367. config SH_TIMER_IRQ
  368. int
  369. default "28" if CPU_SUBTYPE_SH7780 || CPU_SUBTYPE_SH7785
  370. default "86" if CPU_SUBTYPE_SH7619
  371. default "140" if CPU_SUBTYPE_SH7206
  372. default "16"
  373. config SH_PCLK_FREQ
  374. int "Peripheral clock frequency (in Hz)"
  375. default "27000000" if CPU_SUBTYPE_SH73180 || CPU_SUBTYPE_SH7343
  376. default "31250000" if CPU_SUBTYPE_SH7619
  377. default "32000000" if CPU_SUBTYPE_SH7722
  378. default "33333333" if CPU_SUBTYPE_SH7300 || CPU_SUBTYPE_SH7770 || \
  379. CPU_SUBTYPE_SH7760 || CPU_SUBTYPE_SH7705 || \
  380. CPU_SUBTYPE_SH7206
  381. default "60000000" if CPU_SUBTYPE_SH7751 || CPU_SUBTYPE_SH7751R
  382. default "66000000" if CPU_SUBTYPE_SH4_202
  383. default "50000000"
  384. help
  385. This option is used to specify the peripheral clock frequency.
  386. This is necessary for determining the reference clock value on
  387. platforms lacking an RTC.
  388. config SH_CLK_MD
  389. int "CPU Mode Pin Setting"
  390. default 0
  391. depends on CPU_SUBTYPE_SH7619 || CPU_SUBTYPE_SH7206
  392. help
  393. MD2 - MD0 pin setting.
  394. source "kernel/time/Kconfig"
  395. endmenu
  396. menu "CPU Frequency scaling"
  397. source "drivers/cpufreq/Kconfig"
  398. config SH_CPU_FREQ
  399. tristate "SuperH CPU Frequency driver"
  400. depends on CPU_FREQ
  401. select CPU_FREQ_TABLE
  402. help
  403. This adds the cpufreq driver for SuperH. At present, only
  404. the SH-4 is supported.
  405. For details, take a look at <file:Documentation/cpu-freq>.
  406. If unsure, say N.
  407. endmenu
  408. source "arch/sh/drivers/Kconfig"
  409. endmenu
  410. config ISA_DMA_API
  411. bool
  412. depends on SH_MPC1211
  413. default y
  414. menu "Kernel features"
  415. source kernel/Kconfig.hz
  416. config KEXEC
  417. bool "kexec system call (EXPERIMENTAL)"
  418. depends on EXPERIMENTAL
  419. help
  420. kexec is a system call that implements the ability to shutdown your
  421. current kernel, and to start another kernel. It is like a reboot
  422. but it is independent of the system firmware. And like a reboot
  423. you can start any kernel with it, not just Linux.
  424. The name comes from the similarity to the exec system call.
  425. It is an ongoing process to be certain the hardware in a machine
  426. is properly shutdown, so do not be surprised if this code does not
  427. initially work for you. It may help to enable device hotplugging
  428. support. As of this writing the exact hardware interface is
  429. strongly in flux, so no good recommendation can be made.
  430. config CRASH_DUMP
  431. bool "kernel crash dumps (EXPERIMENTAL)"
  432. depends on EXPERIMENTAL
  433. help
  434. Generate crash dump after being started by kexec.
  435. This should be normally only set in special crash dump kernels
  436. which are loaded in the main kernel with kexec-tools into
  437. a specially reserved region and then later executed after
  438. a crash by kdump/kexec. The crash dump kernel must be compiled
  439. to a memory address not used by the main kernel using
  440. MEMORY_START.
  441. For more details see Documentation/kdump/kdump.txt
  442. config SMP
  443. bool "Symmetric multi-processing support"
  444. ---help---
  445. This enables support for systems with more than one CPU. If you have
  446. a system with only one CPU, like most personal computers, say N. If
  447. you have a system with more than one CPU, say Y.
  448. If you say N here, the kernel will run on single and multiprocessor
  449. machines, but will use only one CPU of a multiprocessor machine. If
  450. you say Y here, the kernel will run on many, but not all,
  451. singleprocessor machines. On a singleprocessor machine, the kernel
  452. will run faster if you say N here.
  453. People using multiprocessor machines who say Y here should also say
  454. Y to "Enhanced Real Time Clock Support", below.
  455. See also the <file:Documentation/smp.txt>,
  456. <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available
  457. at <http://www.tldp.org/docs.html#howto>.
  458. If you don't know what to do here, say N.
  459. config NR_CPUS
  460. int "Maximum number of CPUs (2-32)"
  461. range 2 32
  462. depends on SMP
  463. default "2"
  464. help
  465. This allows you to specify the maximum number of CPUs which this
  466. kernel will support. The maximum supported value is 32 and the
  467. minimum value which makes sense is 2.
  468. This is purely to save memory - each supported CPU adds
  469. approximately eight kilobytes to the kernel image.
  470. source "kernel/Kconfig.preempt"
  471. config NODES_SHIFT
  472. int
  473. default "1"
  474. depends on NEED_MULTIPLE_NODES
  475. endmenu
  476. menu "Boot options"
  477. config ZERO_PAGE_OFFSET
  478. hex "Zero page offset"
  479. default "0x00004000" if SH_MPC1211 || SH_SH03
  480. default "0x00010000" if PAGE_SIZE_64KB
  481. default "0x00002000" if PAGE_SIZE_8KB
  482. default "0x00001000"
  483. help
  484. This sets the default offset of zero page.
  485. config BOOT_LINK_OFFSET
  486. hex "Link address offset for booting"
  487. default "0x00800000"
  488. help
  489. This option allows you to set the link address offset of the zImage.
  490. This can be useful if you are on a board which has a small amount of
  491. memory.
  492. config UBC_WAKEUP
  493. bool "Wakeup UBC on startup"
  494. help
  495. Selecting this option will wakeup the User Break Controller (UBC) on
  496. startup. Although the UBC is left in an awake state when the processor
  497. comes up, some boot loaders misbehave by putting the UBC to sleep in a
  498. power saving state, which causes issues with things like ptrace().
  499. If unsure, say N.
  500. config CMDLINE_BOOL
  501. bool "Default bootloader kernel arguments"
  502. config CMDLINE
  503. string "Initial kernel command string"
  504. depends on CMDLINE_BOOL
  505. default "console=ttySC1,115200"
  506. endmenu
  507. menu "Bus options"
  508. # Even on SuperH devices which don't have an ISA bus,
  509. # this variable helps the PCMCIA modules handle
  510. # IRQ requesting properly -- Greg Banks.
  511. #
  512. # Though we're generally not interested in it when
  513. # we're not using PCMCIA, so we make it dependent on
  514. # PCMCIA outright. -- PFM.
  515. config ISA
  516. bool
  517. default y if PCMCIA
  518. help
  519. Find out whether you have ISA slots on your motherboard. ISA is the
  520. name of a bus system, i.e. the way the CPU talks to the other stuff
  521. inside your box. Other bus systems are PCI, EISA, MicroChannel
  522. (MCA) or VESA. ISA is an older system, now being displaced by PCI;
  523. newer boards don't support it. If you have ISA, say Y, otherwise N.
  524. config EISA
  525. bool
  526. ---help---
  527. The Extended Industry Standard Architecture (EISA) bus was
  528. developed as an open alternative to the IBM MicroChannel bus.
  529. The EISA bus provided some of the features of the IBM MicroChannel
  530. bus while maintaining backward compatibility with cards made for
  531. the older ISA bus. The EISA bus saw limited use between 1988 and
  532. 1995 when it was made obsolete by the PCI bus.
  533. Say Y here if you are building a kernel for an EISA-based machine.
  534. Otherwise, say N.
  535. config MCA
  536. bool
  537. help
  538. MicroChannel Architecture is found in some IBM PS/2 machines and
  539. laptops. It is a bus system similar to PCI or ISA. See
  540. <file:Documentation/mca.txt> (and especially the web page given
  541. there) before attempting to build an MCA bus kernel.
  542. config SBUS
  543. bool
  544. config SUPERHYWAY
  545. tristate "SuperHyway Bus support"
  546. depends on CPU_SUBTYPE_SH4_202
  547. source "arch/sh/drivers/pci/Kconfig"
  548. source "drivers/pci/Kconfig"
  549. source "drivers/pcmcia/Kconfig"
  550. source "drivers/pci/hotplug/Kconfig"
  551. endmenu
  552. menu "Executable file formats"
  553. source "fs/Kconfig.binfmt"
  554. endmenu
  555. menu "Power management options (EXPERIMENTAL)"
  556. depends on EXPERIMENTAL
  557. source kernel/power/Kconfig
  558. endmenu
  559. source "net/Kconfig"
  560. source "drivers/Kconfig"
  561. source "fs/Kconfig"
  562. source "arch/sh/oprofile/Kconfig"
  563. source "arch/sh/Kconfig.debug"
  564. source "security/Kconfig"
  565. source "crypto/Kconfig"
  566. source "lib/Kconfig"