2016-08-25 20:38:13 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_SYSTEM
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "System() example"
|
2016-08-25 20:38:13 +02:00
|
|
|
default n
|
2016-08-25 23:31:03 +02:00
|
|
|
depends on SYSTEM_SYSTEM
|
2016-08-25 20:38:13 +02:00
|
|
|
---help---
|
|
|
|
Enable the system() example
|
|
|
|
|
|
|
|
if EXAMPLES_SYSTEM
|
|
|
|
|
|
|
|
config EXAMPLES_SYSTEM_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "system"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2016-08-25 20:38:13 +02:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config EXAMPLES_SYSTEM_PRIORITY
|
|
|
|
int "System task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_SYSTEM_STACKSIZE
|
|
|
|
int "System stack size"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
endif
|