-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathKconfig
59 lines (44 loc) · 867 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
56
57
58
mainmenu "Zeke Configuration"
menu "Target Config"
source "genconfig/target.kconf"
endmenu
menu "Build Config"
config configCOMMON_CCFLAGS
string "CCFLAGS common to all build targets"
default "-Wall -O2"
---help---
CCFLAGS used for all builds.
config configKERNEL_CCFLAGS
string "Kernel CCFLAGS"
default "-ggdb -Wundef -Wextra -Wno-unused-parameter"
---help---
CCFLAGS used for kernel build.
config configUSER_CCFLAGS
string "Userland CCFLAGS"
---help---
CCFALGS used for userland build.
endmenu
menu "Kernel"
source kern/Kconfig
endmenu
menu "boot"
source boot/Kconfig
endmenu
menu "bin"
source bin/Kconfig
endmenu
menu "etc"
source etc/Kconfig
endmenu
menu "lib"
source lib/Kconfig
endmenu
menu "sbin"
source sbin/Kconfig
endmenu
menu "usr"
source usr/Kconfig
endmenu
menu "opt"
source opt/Kconfig
endmenu