-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathKconfig
More file actions
32 lines (26 loc) · 655 Bytes
/
Copy pathKconfig
File metadata and controls
32 lines (26 loc) · 655 Bytes
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
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "MYAPP Configuration"
#config SRCARCH
# string
# option env="SRCARCH"
#source "arch/$SRCARCH/Kconfig"
config CROSS_COMPILE
string "Cross-compiler tool prefix"
help
Same as running 'make CROSS_COMPILE=prefix-' but stored for
default make runs in this kernel build directory. You don't
need to set this unless you want the configured kernel build
directory to select the cross-compiler automatically.
source "lib/Kconfig"
config FOO
bool "Foo"
help
foo.
config BAR
bool "Bar"
depends on FOO
help
bar.