-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKconfig
More file actions
32 lines (23 loc) · 706 Bytes
/
Kconfig
File metadata and controls
32 lines (23 loc) · 706 Bytes
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
# Kconfig file for package onps
menuconfig PKG_USING_ONPS
bool "Onps: An open-source network protocol stack."
default n
if PKG_USING_ONPS
config PKG_ONPS_PATH
string
default "/packages/system/onps"
choice
prompt "Onps Version"
default PKG_USING_ONPS_LATEST_VERSION
help
Select the package version
config PKG_USING_ONPS_V110
bool "v1.1.0"
config PKG_USING_ONPS_LATEST_VERSION
bool "latest"
endchoice
config PKG_ONPS_VER
string
default "v1.1.0" if PKG_USING_ONPS_V110
default "latest" if PKG_USING_ONPS_LATEST_VERSION
endif