diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2018-07-31 13:39:33 +0200 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-08-02 08:06:54 +0900 |
commit | 22471e1313f2b5ec698069206f3a310d6d35b1d4 (patch) | |
tree | 47bd642e7c66c8d544e9defc86a626b71b66683a /arch/Kconfig | |
parent | 87a4c375995ed8eaa721b08825cf73d0b02b3145 (diff) | |
download | linux-22471e1313f2b5ec698069206f3a310d6d35b1d4.tar.bz2 |
kconfig: use a menu in arch/Kconfig to reduce clutter
Put everything in arch/Kconfig into a General options menu
so that they don't clutter up the main/major/primary list of
menu options.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index cddd0faae4cb..6cf1b17a8df2 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -9,6 +9,8 @@ # source "arch/$(SRCARCH)/Kconfig" +menu "General architecture-dependent options" + config CRASH_CORE bool @@ -981,3 +983,5 @@ config REFCOUNT_FULL security flaw exploits. source "kernel/gcov/Kconfig" + +endmenu |