-
Notifications
You must be signed in to change notification settings - Fork 39
/
Kconfig
executable file
·58 lines (47 loc) · 1.23 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
mainmenu "K230 SDK Configuration"
source Kconfig.board
source Kconfig.toolchain
source Kconfig.memory
source Kconfig.storage
source Kconfig.wifi
config SUPPORT_RTSMART
bool "support rt smart on core 1"
default y
help
support rt smart on core 1;
config SUPPORT_LINUX
bool "support linux "
default y
help
support linux ;
config LINUX_RUN_CORE_ID
depends on SUPPORT_LINUX
int "support linux on core id"
default 0
help
support linux on core num;
config MPP_MIDDLEWARE
bool "make mpp middleware "
default n
help
make mpp middleware ;
####################debug /realse version begain {
choice
prompt "build debug/release version"
default BUILD_RELEASE_VER
help
build debug/release version.
config BUILD_DEBUG_VER
bool "debug"
config BUILD_RELEASE_VER
bool "release"
endchoice
config DBGLV
int "config debug level"
depends on BUILD_DEBUG_VER
help
debug level: 0...8 ;
0----release
default 0 if BUILD_RELEASE_VER
default 8 if BUILD_DEBUG_VER
####################debug /realse version end }