-
Notifications
You must be signed in to change notification settings - Fork 4
/
Kconfig
48 lines (43 loc) · 906 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
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "$PACKAGE_NAME/$SRCARCH $ARCH $D $COMPILER Configuration on $PLATFORM"
config ARCH
string
option env="ARCH"
config SRCARCH
string
option env="SRCARCH"
config SUBARCH
string
option env="SUBARCH"
config HOST
string
option env="HOST"
config TARGET
string
option env="TARGET"
config PLATFORM
string
option env="PLATFORM"
config DEBUG
string
option env="DEBUG"
config COMPILER
string
option env="COMPILER"
config PACKAGE_NAME
string
option env="PACKAGE_NAME"
menu "Build Options"
menu "Architecture options"
source "arch/$SRCARCH/Kconfig"
source "arch/Kconfig"
endmenu
source "scripts/Kconfig.cc"
source "scripts/Kconfig.modules"
source "scripts/Kconfig.debug"
source "scripts/Kconfig.bindings"
endmenu
source "$PACKAGE_NAME.kconfig"