-
Notifications
You must be signed in to change notification settings - Fork 6
/
Kconfig
executable file
·55 lines (37 loc) · 992 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SPDX-License-Identifier: GPL-2.0
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
comment "Compiler: $(CC_VERSION_TEXT)"
#ifdef VENDOR_EDIT
#Wen.Luo@Bsp.Kernel.Stability, 2018/12/05, Add for aging test, slub debug config
config OPPO_SLUB_TEST
string
default "$(OPPO_SLUB_TEST)"
config OPPO_KASAN_TEST
string
default "$(OPPO_KASAN_TEST)"
config OPPO_KMEMLEAK_TEST
string
default "$(OPPO_KMEMLEAK_TEST)"
config OPPO_AGING_TEST
string
default "$(OPPO_AGING_TEST)"
config OPPO_PAGEOWNER_TEST
string
default "$(OPPO_PAGEOWNER_TEST)"
#endif
source "scripts/Kconfig.include"
source "init/Kconfig"
source "kernel/Kconfig.freezer"
source "fs/Kconfig.binfmt"
source "mm/Kconfig"
source "net/Kconfig"
source "drivers/Kconfig"
source "fs/Kconfig"
source "security/Kconfig"
source "crypto/Kconfig"
source "lib/Kconfig"
source "lib/Kconfig.debug"