mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-23 22:48:20 +00:00
Download catalogs and artifacts with bounded buffers and atomic staging. Prepare storage before taking the lock so first-run syncs are safe. Signed-off-by: aviralgarg05 <gargaviral99@gmail.com>
43 lines
1.1 KiB
Text
43 lines
1.1 KiB
Text
#
|
|
# 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
|
|
|
|
config SYSTEM_NXPKG_ROOT
|
|
string "'nxpkg' storage root"
|
|
default "/var/lib/nxpkg"
|
|
---help---
|
|
Base directory used by nxpkg for its local index, installed
|
|
metadata, temporary downloads, and package payload storage.
|
|
The default follows the conventional persistent application-data
|
|
location. A board must mount persistent storage at /var or set
|
|
this to another persistent location, such as /mnt/sdcard/nxpkg,
|
|
if packages need to survive a reset.
|
|
|
|
endif
|