Kconfig 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. config DEFCONFIG_LIST
  2. string
  3. depends on !UML
  4. option defconfig_list
  5. default "/lib/modules/$UNAME_RELEASE/.config"
  6. default "/etc/kernel-config"
  7. default "/boot/config-$UNAME_RELEASE"
  8. default "arch/$ARCH/defconfig"
  9. menu "Code maturity level options"
  10. config EXPERIMENTAL
  11. bool "Prompt for development and/or incomplete code/drivers"
  12. ---help---
  13. Some of the various things that Linux supports (such as network
  14. drivers, file systems, network protocols, etc.) can be in a state
  15. of development where the functionality, stability, or the level of
  16. testing is not yet high enough for general use. This is usually
  17. known as the "alpha-test" phase among developers. If a feature is
  18. currently in alpha-test, then the developers usually discourage
  19. uninformed widespread use of this feature by the general public to
  20. avoid "Why doesn't this work?" type mail messages. However, active
  21. testing and use of these systems is welcomed. Just be aware that it
  22. may not meet the normal level of reliability or it may fail to work
  23. in some special cases. Detailed bug reports from people familiar
  24. with the kernel internals are usually welcomed by the developers
  25. (before submitting bug reports, please read the documents
  26. <file:README>, <file:MAINTAINERS>, <file:REPORTING-BUGS>,
  27. <file:Documentation/BUG-HUNTING>, and
  28. <file:Documentation/oops-tracing.txt> in the kernel source).
  29. This option will also make obsoleted drivers available. These are
  30. drivers that have been replaced by something else, and/or are
  31. scheduled to be removed in a future kernel release.
  32. Unless you intend to help test and develop a feature or driver that
  33. falls into this category, or you have a situation that requires
  34. using these features, you should probably say N here, which will
  35. cause the configurator to present you with fewer choices. If
  36. you say Y here, you will be offered the choice of using features or
  37. drivers that are currently considered to be in the alpha-test phase.
  38. config BROKEN
  39. bool
  40. config BROKEN_ON_SMP
  41. bool
  42. depends on BROKEN || !SMP
  43. default y
  44. config LOCK_KERNEL
  45. bool
  46. depends on SMP || PREEMPT
  47. default y
  48. config INIT_ENV_ARG_LIMIT
  49. int
  50. default 32 if !UML
  51. default 128 if UML
  52. help
  53. Maximum of each of the number of arguments and environment
  54. variables passed to init from the kernel command line.
  55. endmenu
  56. menu "General setup"
  57. config LOCALVERSION
  58. string "Local version - append to kernel release"
  59. help
  60. Append an extra string to the end of your kernel version.
  61. This will show up when you type uname, for example.
  62. The string you set here will be appended after the contents of
  63. any files with a filename matching localversion* in your
  64. object and source tree, in that order. Your total string can
  65. be a maximum of 64 characters.
  66. config LOCALVERSION_AUTO
  67. bool "Automatically append version information to the version string"
  68. default y
  69. help
  70. This will try to automatically determine if the current tree is a
  71. release tree by looking for git tags that belong to the current
  72. top of tree revision.
  73. A string of the format -gxxxxxxxx will be added to the localversion
  74. if a git-based tree is found. The string generated by this will be
  75. appended after any matching localversion* files, and after the value
  76. set in CONFIG_LOCALVERSION.
  77. (The actual string used here is the first eight characters produced
  78. by running the command:
  79. $ git rev-parse --verify HEAD
  80. which is done within the script "scripts/setlocalversion".)
  81. config SWAP
  82. bool "Support for paging of anonymous memory (swap)"
  83. depends on MMU && BLOCK
  84. default y
  85. help
  86. This option allows you to choose whether you want to have support
  87. for so called swap devices or swap files in your kernel that are
  88. used to provide more virtual memory than the actual RAM present
  89. in your computer. If unsure say Y.
  90. config SYSVIPC
  91. bool "System V IPC"
  92. ---help---
  93. Inter Process Communication is a suite of library functions and
  94. system calls which let processes (running programs) synchronize and
  95. exchange information. It is generally considered to be a good thing,
  96. and some programs won't run unless you say Y here. In particular, if
  97. you want to run the DOS emulator dosemu under Linux (read the
  98. DOSEMU-HOWTO, available from <http://www.tldp.org/docs.html#howto>),
  99. you'll need to say Y here.
  100. You can find documentation about IPC with "info ipc" and also in
  101. section 6.4 of the Linux Programmer's Guide, available from
  102. <http://www.tldp.org/guides.html>.
  103. config IPC_NS
  104. bool "IPC Namespaces"
  105. depends on SYSVIPC
  106. default n
  107. help
  108. Support ipc namespaces. This allows containers, i.e. virtual
  109. environments, to use ipc namespaces to provide different ipc
  110. objects for different servers. If unsure, say N.
  111. config SYSVIPC_SYSCTL
  112. bool
  113. depends on SYSVIPC
  114. depends on SYSCTL
  115. default y
  116. config POSIX_MQUEUE
  117. bool "POSIX Message Queues"
  118. depends on NET && EXPERIMENTAL
  119. ---help---
  120. POSIX variant of message queues is a part of IPC. In POSIX message
  121. queues every message has a priority which decides about succession
  122. of receiving it by a process. If you want to compile and run
  123. programs written e.g. for Solaris with use of its POSIX message
  124. queues (functions mq_*) say Y here. To use this feature you will
  125. also need mqueue library, available from
  126. <http://www.mat.uni.torun.pl/~wrona/posix_ipc/>
  127. POSIX message queues are visible as a filesystem called 'mqueue'
  128. and can be mounted somewhere if you want to do filesystem
  129. operations on message queues.
  130. If unsure, say Y.
  131. config BSD_PROCESS_ACCT
  132. bool "BSD Process Accounting"
  133. help
  134. If you say Y here, a user level program will be able to instruct the
  135. kernel (via a special system call) to write process accounting
  136. information to a file: whenever a process exits, information about
  137. that process will be appended to the file by the kernel. The
  138. information includes things such as creation time, owning user,
  139. command name, memory usage, controlling terminal etc. (the complete
  140. list is in the struct acct in <file:include/linux/acct.h>). It is
  141. up to the user level program to do useful things with this
  142. information. This is generally a good idea, so say Y.
  143. config BSD_PROCESS_ACCT_V3
  144. bool "BSD Process Accounting version 3 file format"
  145. depends on BSD_PROCESS_ACCT
  146. default n
  147. help
  148. If you say Y here, the process accounting information is written
  149. in a new file format that also logs the process IDs of each
  150. process and it's parent. Note that this file format is incompatible
  151. with previous v0/v1/v2 file formats, so you will need updated tools
  152. for processing it. A preliminary version of these tools is available
  153. at <http://www.physik3.uni-rostock.de/tim/kernel/utils/acct/>.
  154. config TASKSTATS
  155. bool "Export task/process statistics through netlink (EXPERIMENTAL)"
  156. depends on NET
  157. default n
  158. help
  159. Export selected statistics for tasks/processes through the
  160. generic netlink interface. Unlike BSD process accounting, the
  161. statistics are available during the lifetime of tasks/processes as
  162. responses to commands. Like BSD accounting, they are sent to user
  163. space on task exit.
  164. Say N if unsure.
  165. config TASK_DELAY_ACCT
  166. bool "Enable per-task delay accounting (EXPERIMENTAL)"
  167. depends on TASKSTATS
  168. help
  169. Collect information on time spent by a task waiting for system
  170. resources like cpu, synchronous block I/O completion and swapping
  171. in pages. Such statistics can help in setting a task's priorities
  172. relative to other tasks for cpu, io, rss limits etc.
  173. Say N if unsure.
  174. config TASK_XACCT
  175. bool "Enable extended accounting over taskstats (EXPERIMENTAL)"
  176. depends on TASKSTATS
  177. help
  178. Collect extended task accounting data and send the data
  179. to userland for processing over the taskstats interface.
  180. Say N if unsure.
  181. config TASK_IO_ACCOUNTING
  182. bool "Enable per-task storage I/O accounting (EXPERIMENTAL)"
  183. depends on TASK_XACCT
  184. help
  185. Collect information on the number of bytes of storage I/O which this
  186. task has caused.
  187. Say N if unsure.
  188. config UTS_NS
  189. bool "UTS Namespaces"
  190. default n
  191. help
  192. Support uts namespaces. This allows containers, i.e.
  193. vservers, to use uts namespaces to provide different
  194. uts info for different servers. If unsure, say N.
  195. config AUDIT
  196. bool "Auditing support"
  197. depends on NET
  198. help
  199. Enable auditing infrastructure that can be used with another
  200. kernel subsystem, such as SELinux (which requires this for
  201. logging of avc messages output). Does not do system-call
  202. auditing without CONFIG_AUDITSYSCALL.
  203. config AUDITSYSCALL
  204. bool "Enable system-call auditing support"
  205. depends on AUDIT && (X86 || PPC || PPC64 || S390 || IA64 || UML || SPARC64)
  206. default y if SECURITY_SELINUX
  207. help
  208. Enable low-overhead system-call auditing infrastructure that
  209. can be used independently or with another kernel subsystem,
  210. such as SELinux. To use audit's filesystem watch feature, please
  211. ensure that INOTIFY is configured.
  212. config IKCONFIG
  213. tristate "Kernel .config support"
  214. ---help---
  215. This option enables the complete Linux kernel ".config" file
  216. contents to be saved in the kernel. It provides documentation
  217. of which kernel options are used in a running kernel or in an
  218. on-disk kernel. This information can be extracted from the kernel
  219. image file with the script scripts/extract-ikconfig and used as
  220. input to rebuild the current kernel or to build another kernel.
  221. It can also be extracted from a running kernel by reading
  222. /proc/config.gz if enabled (below).
  223. config IKCONFIG_PROC
  224. bool "Enable access to .config through /proc/config.gz"
  225. depends on IKCONFIG && PROC_FS
  226. ---help---
  227. This option enables access to the kernel configuration file
  228. through /proc/config.gz.
  229. config LOG_BUF_SHIFT
  230. int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
  231. range 12 21
  232. default 17 if S390 || LOCKDEP
  233. default 16 if X86_NUMAQ || IA64
  234. default 15 if SMP
  235. default 14
  236. help
  237. Select kernel log buffer size as a power of 2.
  238. Defaults and Examples:
  239. 17 => 128 KB for S/390
  240. 16 => 64 KB for x86 NUMAQ or IA-64
  241. 15 => 32 KB for SMP
  242. 14 => 16 KB for uniprocessor
  243. 13 => 8 KB
  244. 12 => 4 KB
  245. config CPUSETS
  246. bool "Cpuset support"
  247. depends on SMP
  248. help
  249. This option will let you create and manage CPUSETs which
  250. allow dynamically partitioning a system into sets of CPUs and
  251. Memory Nodes and assigning tasks to run only within those sets.
  252. This is primarily useful on large SMP or NUMA systems.
  253. Say N if unsure.
  254. config SYSFS_DEPRECATED
  255. bool "Create deprecated sysfs files"
  256. default y
  257. help
  258. This option creates deprecated symlinks such as the
  259. "device"-link, the <subsystem>:<name>-link, and the
  260. "bus"-link. It may also add deprecated key in the
  261. uevent environment.
  262. None of these features or values should be used today, as
  263. they export driver core implementation details to userspace
  264. or export properties which can't be kept stable across kernel
  265. releases.
  266. If enabled, this option will also move any device structures
  267. that belong to a class, back into the /sys/class heirachy, in
  268. order to support older versions of udev.
  269. If you are using a distro that was released in 2006 or later,
  270. it should be safe to say N here.
  271. config RELAY
  272. bool "Kernel->user space relay support (formerly relayfs)"
  273. help
  274. This option enables support for relay interface support in
  275. certain file systems (such as debugfs).
  276. It is designed to provide an efficient mechanism for tools and
  277. facilities to relay large amounts of data from kernel space to
  278. user space.
  279. If unsure, say N.
  280. config BLK_DEV_INITRD
  281. bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support"
  282. depends on BROKEN || !FRV
  283. help
  284. The initial RAM filesystem is a ramfs which is loaded by the
  285. boot loader (loadlin or lilo) and that is mounted as root
  286. before the normal boot procedure. It is typically used to
  287. load modules needed to mount the "real" root file system,
  288. etc. See <file:Documentation/initrd.txt> for details.
  289. If RAM disk support (BLK_DEV_RAM) is also included, this
  290. also enables initial RAM disk (initrd) support and adds
  291. 15 Kbytes (more on some other architectures) to the kernel size.
  292. If unsure say Y.
  293. if BLK_DEV_INITRD
  294. source "usr/Kconfig"
  295. endif
  296. config CC_OPTIMIZE_FOR_SIZE
  297. bool "Optimize for size (Look out for broken compilers!)"
  298. default y
  299. depends on ARM || H8300 || EXPERIMENTAL
  300. help
  301. Enabling this option will pass "-Os" instead of "-O2" to gcc
  302. resulting in a smaller kernel.
  303. WARNING: some versions of gcc may generate incorrect code with this
  304. option. If problems are observed, a gcc upgrade may be needed.
  305. If unsure, say N.
  306. config SYSCTL
  307. bool
  308. menuconfig EMBEDDED
  309. bool "Configure standard kernel features (for small systems)"
  310. help
  311. This option allows certain base kernel options and settings
  312. to be disabled or tweaked. This is for specialized
  313. environments which can tolerate a "non-standard" kernel.
  314. Only use this if you really know what you are doing.
  315. config UID16
  316. bool "Enable 16-bit UID system calls" if EMBEDDED
  317. depends on ARM || BFIN || CRIS || FRV || H8300 || X86_32 || M68K || (S390 && !64BIT) || SUPERH || SPARC32 || (SPARC64 && SPARC32_COMPAT) || UML || (X86_64 && IA32_EMULATION)
  318. default y
  319. help
  320. This enables the legacy 16-bit UID syscall wrappers.
  321. config SYSCTL_SYSCALL
  322. bool "Sysctl syscall support" if EMBEDDED
  323. default y
  324. select SYSCTL
  325. ---help---
  326. sys_sysctl uses binary paths that have been found challenging
  327. to properly maintain and use. The interface in /proc/sys
  328. using paths with ascii names is now the primary path to this
  329. information.
  330. Almost nothing using the binary sysctl interface so if you are
  331. trying to save some space it is probably safe to disable this,
  332. making your kernel marginally smaller.
  333. If unsure say Y here.
  334. config KALLSYMS
  335. bool "Load all symbols for debugging/ksymoops" if EMBEDDED
  336. default y
  337. help
  338. Say Y here to let the kernel print out symbolic crash information and
  339. symbolic stack backtraces. This increases the size of the kernel
  340. somewhat, as all symbols have to be loaded into the kernel image.
  341. config KALLSYMS_ALL
  342. bool "Include all symbols in kallsyms"
  343. depends on DEBUG_KERNEL && KALLSYMS
  344. help
  345. Normally kallsyms only contains the symbols of functions, for nicer
  346. OOPS messages. Some debuggers can use kallsyms for other
  347. symbols too: say Y here to include all symbols, if you need them
  348. and you don't care about adding 300k to the size of your kernel.
  349. Say N.
  350. config KALLSYMS_EXTRA_PASS
  351. bool "Do an extra kallsyms pass"
  352. depends on KALLSYMS
  353. help
  354. If kallsyms is not working correctly, the build will fail with
  355. inconsistent kallsyms data. If that occurs, log a bug report and
  356. turn on KALLSYMS_EXTRA_PASS which should result in a stable build.
  357. Always say N here unless you find a bug in kallsyms, which must be
  358. reported. KALLSYMS_EXTRA_PASS is only a temporary workaround while
  359. you wait for kallsyms to be fixed.
  360. config HOTPLUG
  361. bool "Support for hot-pluggable devices" if EMBEDDED
  362. default y
  363. help
  364. This option is provided for the case where no hotplug or uevent
  365. capabilities is wanted by the kernel. You should only consider
  366. disabling this option for embedded systems that do not use modules, a
  367. dynamic /dev tree, or dynamic device discovery. Just say Y.
  368. config PRINTK
  369. default y
  370. bool "Enable support for printk" if EMBEDDED
  371. help
  372. This option enables normal printk support. Removing it
  373. eliminates most of the message strings from the kernel image
  374. and makes the kernel more or less silent. As this makes it
  375. very difficult to diagnose system problems, saying N here is
  376. strongly discouraged.
  377. config BUG
  378. bool "BUG() support" if EMBEDDED
  379. default y
  380. help
  381. Disabling this option eliminates support for BUG and WARN, reducing
  382. the size of your kernel image and potentially quietly ignoring
  383. numerous fatal conditions. You should only consider disabling this
  384. option for embedded systems with no facilities for reporting errors.
  385. Just say Y.
  386. config ELF_CORE
  387. default y
  388. bool "Enable ELF core dumps" if EMBEDDED
  389. help
  390. Enable support for generating core dumps. Disabling saves about 4k.
  391. config BASE_FULL
  392. default y
  393. bool "Enable full-sized data structures for core" if EMBEDDED
  394. help
  395. Disabling this option reduces the size of miscellaneous core
  396. kernel data structures. This saves memory on small machines,
  397. but may reduce performance.
  398. config FUTEX
  399. bool "Enable futex support" if EMBEDDED
  400. default y
  401. select RT_MUTEXES
  402. help
  403. Disabling this option will cause the kernel to be built without
  404. support for "fast userspace mutexes". The resulting kernel may not
  405. run glibc-based applications correctly.
  406. config EPOLL
  407. bool "Enable eventpoll support" if EMBEDDED
  408. default y
  409. help
  410. Disabling this option will cause the kernel to be built without
  411. support for epoll family of system calls.
  412. config SHMEM
  413. bool "Use full shmem filesystem" if EMBEDDED
  414. default y
  415. depends on MMU
  416. help
  417. The shmem is an internal filesystem used to manage shared memory.
  418. It is backed by swap and manages resource limits. It is also exported
  419. to userspace as tmpfs if TMPFS is enabled. Disabling this
  420. option replaces shmem and tmpfs with the much simpler ramfs code,
  421. which may be appropriate on small systems without swap.
  422. config VM_EVENT_COUNTERS
  423. default y
  424. bool "Enable VM event counters for /proc/vmstat" if EMBEDDED
  425. help
  426. VM event counters are needed for event counts to be shown.
  427. This option allows the disabling of the VM event counters
  428. on EMBEDDED systems. /proc/vmstat will only show page counts
  429. if VM event counters are disabled.
  430. choice
  431. prompt "Choose SLAB allocator"
  432. default SLAB
  433. help
  434. This option allows to select a slab allocator.
  435. config SLAB
  436. bool "SLAB"
  437. help
  438. The regular slab allocator that is established and known to work
  439. well in all environments. It organizes chache hot objects in
  440. per cpu and per node queues. SLAB is the default choice for
  441. slab allocator.
  442. config SLUB
  443. depends on EXPERIMENTAL && !ARCH_USES_SLAB_PAGE_STRUCT
  444. bool "SLUB (Unqueued Allocator)"
  445. help
  446. SLUB is a slab allocator that minimizes cache line usage
  447. instead of managing queues of cached objects (SLAB approach).
  448. Per cpu caching is realized using slabs of objects instead
  449. of queues of objects. SLUB can use memory efficiently
  450. way and has enhanced diagnostics.
  451. config SLOB
  452. #
  453. # SLOB cannot support SMP because SLAB_DESTROY_BY_RCU does not work
  454. # properly.
  455. #
  456. depends on EMBEDDED && !SMP && !SPARSEMEM
  457. bool "SLOB (Simple Allocator)"
  458. help
  459. SLOB replaces the SLAB allocator with a drastically simpler
  460. allocator. SLOB is more space efficient that SLAB but does not
  461. scale well (single lock for all operations) and is more susceptible
  462. to fragmentation. SLOB it is a great choice to reduce
  463. memory usage and code size for embedded systems.
  464. endchoice
  465. endmenu # General setup
  466. config RT_MUTEXES
  467. boolean
  468. select PLIST
  469. config TINY_SHMEM
  470. default !SHMEM
  471. bool
  472. config BASE_SMALL
  473. int
  474. default 0 if BASE_FULL
  475. default 1 if !BASE_FULL
  476. menu "Loadable module support"
  477. config MODULES
  478. bool "Enable loadable module support"
  479. help
  480. Kernel modules are small pieces of compiled code which can
  481. be inserted in the running kernel, rather than being
  482. permanently built into the kernel. You use the "modprobe"
  483. tool to add (and sometimes remove) them. If you say Y here,
  484. many parts of the kernel can be built as modules (by
  485. answering M instead of Y where indicated): this is most
  486. useful for infrequently used options which are not required
  487. for booting. For more information, see the man pages for
  488. modprobe, lsmod, modinfo, insmod and rmmod.
  489. If you say Y here, you will need to run "make
  490. modules_install" to put the modules under /lib/modules/
  491. where modprobe can find them (you may need to be root to do
  492. this).
  493. If unsure, say Y.
  494. config MODULE_UNLOAD
  495. bool "Module unloading"
  496. depends on MODULES
  497. help
  498. Without this option you will not be able to unload any
  499. modules (note that some modules may not be unloadable
  500. anyway), which makes your kernel slightly smaller and
  501. simpler. If unsure, say Y.
  502. config MODULE_FORCE_UNLOAD
  503. bool "Forced module unloading"
  504. depends on MODULE_UNLOAD && EXPERIMENTAL
  505. help
  506. This option allows you to force a module to unload, even if the
  507. kernel believes it is unsafe: the kernel will remove the module
  508. without waiting for anyone to stop using it (using the -f option to
  509. rmmod). This is mainly for kernel developers and desperate users.
  510. If unsure, say N.
  511. config MODVERSIONS
  512. bool "Module versioning support"
  513. depends on MODULES
  514. help
  515. Usually, you have to use modules compiled with your kernel.
  516. Saying Y here makes it sometimes possible to use modules
  517. compiled for different kernels, by adding enough information
  518. to the modules to (hopefully) spot any changes which would
  519. make them incompatible with the kernel you are running. If
  520. unsure, say N.
  521. config MODULE_SRCVERSION_ALL
  522. bool "Source checksum for all modules"
  523. depends on MODULES
  524. help
  525. Modules which contain a MODULE_VERSION get an extra "srcversion"
  526. field inserted into their modinfo section, which contains a
  527. sum of the source files which made it. This helps maintainers
  528. see exactly which source was used to build a module (since
  529. others sometimes change the module source without updating
  530. the version). With this option, such a "srcversion" field
  531. will be created for all modules. If unsure, say N.
  532. config KMOD
  533. bool "Automatic kernel module loading"
  534. depends on MODULES
  535. help
  536. Normally when you have selected some parts of the kernel to
  537. be created as kernel modules, you must load them (using the
  538. "modprobe" command) before you can use them. If you say Y
  539. here, some parts of the kernel will be able to load modules
  540. automatically: when a part of the kernel needs a module, it
  541. runs modprobe with the appropriate arguments, thereby
  542. loading the module if it is available. If unsure, say Y.
  543. config STOP_MACHINE
  544. bool
  545. default y
  546. depends on (SMP && MODULE_UNLOAD) || HOTPLUG_CPU
  547. help
  548. Need stop_machine() primitive.
  549. endmenu
  550. menu "Block layer"
  551. source "block/Kconfig"
  552. endmenu