2018-12-20 14:24:51 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config SYSTEM_CFGDATA
|
|
|
|
tristate "Cfgdata Command"
|
|
|
|
default n
|
2019-10-06 06:14:39 -06:00
|
|
|
depends on MTD_CONFIG
|
2018-12-20 14:24:51 -06:00
|
|
|
---help---
|
|
|
|
Enable support for the CFGDATA tool.
|
|
|
|
|
|
|
|
if SYSTEM_CFGDATA
|
2019-01-22 08:56:56 -06:00
|
|
|
|
|
|
|
config SYSTEM_CFGDATA_STACKSIZE
|
|
|
|
int "Builtin task stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2019-01-22 08:56:56 -06:00
|
|
|
---help---
|
|
|
|
Size of the task to configure when started cfgdata from NSH
|
|
|
|
|
|
|
|
config SYSTEM_CFGDATA_PRIORITY
|
|
|
|
int "Builtin task priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
Priority of the task to configure when started cfgdata from NSH
|
|
|
|
|
2018-12-20 14:24:51 -06:00
|
|
|
endif
|