-
Notifications
You must be signed in to change notification settings - Fork 17
/
Kconfig
67 lines (43 loc) · 1.02 KB
/
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
59
60
61
62
63
64
65
66
67
mainmenu "Curie BSP build configuration"
config PROJECT_PATH
string
option env="PROJECT_PATH"
menu "Project"
-source "$PROJECT_PATH/project.Kconfig"
endmenu
menu "Services"
source "framework/src/services/Kconfig"
-source "$PROJECT_PATH/services.Kconfig"
endmenu
menu "Packages"
config PKG_OUT
string
option env="PKG_OUT"
-source "packages/*/*/package.Kconfig"
-source "packages/*/*/*/package.Kconfig"
-source "$PKG_OUT/Kconfig"
endmenu
menu "Advanced Settings"
source "bsp/Kconfig"
source "framework/Kconfig"
endmenu
menu "Debug Settings"
config OS_UNIT_TESTS
bool "OS Unit Tests"
help
Caution when selecting this option, as it will dramatically
increase the output binary size.
config QUARK_DRIVER_TESTS
bool "Quark driver tests"
config ARC_DRIVER_TESTS
bool "Arc driver tests"
config ARC_OS_UNIT_TESTS
bool "Arc OS unit tests"
config FACTORY_TESTS
bool "Factory tests"
config GPIO_DRIVER_TESTS
depends on GPIO
depends on QUARK_DRIVER_TESTS || ARC_DRIVER_TESTS
default y
bool "GPIO driver tests"
endmenu