forked from apache/nuttx-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
32 lines (26 loc) · 679 Bytes
/
Copy pathKconfig
File metadata and controls
32 lines (26 loc) · 679 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
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_NXPKG
bool "'nxpkg' lifecycle helper"
default n
select CRYPTO
select NETUTILS_CJSON
---help---
Enable the thin package lifecycle helper proposed for the
Dynamic ELF distribution work.
if SYSTEM_NXPKG
config SYSTEM_NXPKG_PROGNAME
string "Program name"
default "nxpkg"
---help---
This is the name of the program that will be used when the
nxpkg tool is installed.
config SYSTEM_NXPKG_PRIORITY
int "'nxpkg' task priority"
default 100
config SYSTEM_NXPKG_STACKSIZE
int "'nxpkg' stack size"
default 16384
endif