This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
generated from Neutree/c_cpp_project_framework
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Kconfig
61 lines (52 loc) · 1.51 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 "C/CPP CMake project framework Kconfig configuration"
menu "Toolchain configuration"
config TOOLCHAIN_PATH
string "toolchain path"
default "/opt/toolchain-sunxi-musl/toolchain/bin"
config TOOLCHAIN_PREFIX
string "toolchain prefix"
default "arm-openwrt-linux-muslgnueabi-"
endmenu
menu "Target chip configuration"
choice ARCH
prompt "Chip architecture"
help
"select compile platform architecture"
config ARCH_V831
bool "compile for arch V831"
config ARCH_V833
bool "compile for arch V833"
config ARCH_R329
bool "compile for arch R329"
config ARCH_AXPI
bool "compile for arch AXPI"
config ARCH_Desktop
bool "compile for arch Linux Desktop"
endchoice
menu "upload dist configuration, only need if you use python3 project.py upload command"
config TARGET_IP
string "target's ip address"
default "192.168.0.123"
help
"only need if you use python3 project.py upload command"
config TARGET_USER
string "target's username"
default "root"
help
"only need if you use python3 project.py upload command"
config TARGET_DIST_DIR
string "which directory the dist files copy to"
default "/root/maix_dist"
help
"only need if you use python3 project.py upload command"
config TARGET_USER_PASSWD
string "target's user password"
default ""
help
"only need if you use python3 project.py upload command"
endmenu
endmenu
menu "Components configuration"
osource "${SDK_PATH}/components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
endmenu