nuttx-apps/interpreters/hello/Kconfig

31 lines
818 B
Plaintext

#
#For a description of the syntax of this configuration file,
#see the file kconfig-language.txt in the NuttX tools repository.
#
config CUSTOM_APPS_CUSTOM_HELLO
tristate "Custom Hello App"
default n
depends on FS_ROMFS && BUILD_FLAT
---help---
Enable the Custom Hello App
if CUSTOM_APPS_CUSTOM_HELLO
config CUSTOM_APPS_CUSTOM_HELLO_PROGNAME
string "Program name"
default "custom_hello"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config CUSTOM_APPS_CUSTOM_HELLO_PRIORITY
int "Custom Hello task priority"
default 100
config CUSTOM_APPS_CUSTOM_HELLO_STACKSIZE
int "Custom Hello stack size"
default DEFAULT_TASK_STACKSIZE
endif