forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
73 lines (55 loc) · 856 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
mainmenu "SOF $(PROJECTVERSION) Configuration"
comment "Compiler: $(CC_VERSION_TEXT)"
config HOST_PTABLE
bool
default n
config TASK_HAVE_PRIORITY_MEDIUM
bool
default n
config TASK_HAVE_PRIORITY_LOW
bool
default n
config BOOT_LOADER
bool
default n
config IRQ_MAP
bool
default n
config DMA_GW
bool
default n
config MEM_WND
bool
default n
config DW_SPI
bool
default n
config INTEL_IOMUX
bool
default n
config DW_GPIO
bool
default n
source "src/Kconfig"
menu "Debug"
config GDB_DEBUG
bool "GDB Stub"
default n
help
Select for GDB debugging
config DEBUG_HEAP
bool "Heap debug"
default n
help
Select for enable heap alloc debugging
config DEBUG
bool "Debug build"
default n
help
Select for debug build
config BUILD_VM_ROM
bool "Build VM ROM"
default n
help
Select if you want to build VM ROM
endmenu