diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-08-15 16:05:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-08-15 16:05:12 -0400 |
commit | fa1b5d09d0771247d407df89228b3902de8e2ce6 (patch) | |
tree | 9cf03889625662c234dfc476371a181a76631776 /arch/Kconfig | |
parent | 01f0e5cdedea448ea48eaddc1366593126b0fe98 (diff) | |
parent | 59e0b520c75c8b4588395aea6170e551c4189fd8 (diff) |
Merge tag 'kconfig-v4.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild
Pull Kconfig consolidation from Masahiro Yamada:
"Consolidation of Kconfig files by Christoph Hellwig.
Move the source statements of arch-independent Kconfig files instead
of duplicating the includes in every arch/$(SRCARCH)/Kconfig"
* tag 'kconfig-v4.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
kconfig: add a Memory Management options" menu
kconfig: move the "Executable file formats" menu to fs/Kconfig.binfmt
kconfig: use a menu in arch/Kconfig to reduce clutter
kconfig: include kernel/Kconfig.preempt from init/Kconfig
Kconfig: consolidate the "Kernel hacking" menu
kconfig: include common Kconfig files from top-level Kconfig
kconfig: remove duplicate SWAP symbol defintions
um: create a proper drivers Kconfig
um: cleanup Kconfig files
um: stop abusing KBUILD_KCONFIG
Diffstat (limited to 'arch/Kconfig')
-rw-r--r-- | arch/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/Kconfig b/arch/Kconfig index 8543bc3c21fe..c6148166a7b4 100644 --- a/arch/Kconfig +++ b/arch/Kconfig | |||
@@ -3,6 +3,14 @@ | |||
3 | # General architecture dependent options | 3 | # General architecture dependent options |
4 | # | 4 | # |
5 | 5 | ||
6 | # | ||
7 | # Note: arch/$(SRCARCH)/Kconfig needs to be included first so that it can | ||
8 | # override the default values in this file. | ||
9 | # | ||
10 | source "arch/$(SRCARCH)/Kconfig" | ||
11 | |||
12 | menu "General architecture-dependent options" | ||
13 | |||
6 | config CRASH_CORE | 14 | config CRASH_CORE |
7 | bool | 15 | bool |
8 | 16 | ||
@@ -734,6 +742,9 @@ config COMPAT_32BIT_TIME | |||
734 | config ARCH_NO_COHERENT_DMA_MMAP | 742 | config ARCH_NO_COHERENT_DMA_MMAP |
735 | bool | 743 | bool |
736 | 744 | ||
745 | config ARCH_NO_PREEMPT | ||
746 | bool | ||
747 | |||
737 | config CPU_NO_EFFICIENT_FFS | 748 | config CPU_NO_EFFICIENT_FFS |
738 | def_bool n | 749 | def_bool n |
739 | 750 | ||
@@ -833,3 +844,5 @@ config REFCOUNT_FULL | |||
833 | source "kernel/gcov/Kconfig" | 844 | source "kernel/gcov/Kconfig" |
834 | 845 | ||
835 | source "scripts/gcc-plugins/Kconfig" | 846 | source "scripts/gcc-plugins/Kconfig" |
847 | |||
848 | endmenu | ||