-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathKconfig
More file actions
62 lines (40 loc) · 1.04 KB
/
Kconfig
File metadata and controls
62 lines (40 loc) · 1.04 KB
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
56
57
58
59
60
61
62
# SPDX-License-Identifier: GPL-2.0
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.rst.
#
mainmenu "Linux/$(ARCH) $(KERNELVERSION) Kernel Configuration"
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"
source "Documentation/Kconfig"
choice
prompt "Google SoC Kconfig.ext to use"
default KCONFIG_EXT_NONE
config KCONFIG_EXT_NONE
bool "None"
config KCONFIG_EXT_GS201
bool "Tensor G2 (gs201)"
config KCONFIG_EXT_ZUMA
bool "Tensor G3 (zuma)"
config KCONFIG_EXT_ZUMAPRO
bool "Tensor G4 (zumapro)"
endchoice
if KCONFIG_EXT_GS201
source "google-devices/gs201/Kconfig.ext.gs201"
endif
if KCONFIG_EXT_ZUMA
source "google-devices/zuma/Kconfig.ext.zuma"
endif
if KCONFIG_EXT_ZUMAPRO
source "google-devices/zumapro/Kconfig.ext.zumapro"
endif