forked from sipeed/Maix-Speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
49 lines (33 loc) · 750 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
mainmenu "Maix-Speech configuration"
menu "Toolchain configuration"
config TOOLCHAIN_PATH
string "toolchain path"
default ""
config TOOLCHAIN_PREFIX
string "toolchain prefix"
default ""
endmenu
choice ARCH
prompt "CPU arch"
default ARCH_X86
help
"Select CPU arch"
config ARCH_X86
bool "x86 (Linux)"
config ARCH_R329
bool "r329 (AIPU)"
config ARCH_RISCV64
bool "riscv64 (D1)"
config ARCH_AARCH64
bool "aarch64 (r329)"
config ARCH_ARMV7MUSL
bool "armv7musl (v83x)"
config ARCH_ARMV7
bool "armv7 (Raspberry Pi 32bit, V3S)"
config ARCH_V83X
bool "v83x (v831/v833 AWNN)"
endchoice
menu "Components configuration"
osource "${SDK_PATH}/components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
endmenu