2018-12-20 21:24:51 +01: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 14:14:39 +02:00
|
|
|
depends on MTD_CONFIG
|
2018-12-20 21:24:51 +01:00
|
|
|
---help---
|
|
|
|
Enable support for the CFGDATA tool.
|
|
|
|
|
|
|
|
if SYSTEM_CFGDATA
|
2019-01-22 15:56:56 +01:00
|
|
|
|
|
|
|
config SYSTEM_CFGDATA_STACKSIZE
|
|
|
|
int "Builtin task stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2019-01-22 15:56:56 +01: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 21:24:51 +01:00
|
|
|
endif
|