nuttx-apps/system/nsh/Kconfig

32 lines
652 B
Plaintext
Raw Normal View History

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_NSH
tristate "NuttShell (NSH) example"
default n
select NSH_LIBRARY
select SYSTEM_READLINE
---help---
Enable the NuttShell (NSH) example
if SYSTEM_NSH
config SYSTEM_NSH_PRIORITY
int "NuttX shell thread priority"
default 100
config SYSTEM_NSH_STACKSIZE
int "NuttX shell stack size"
default DEFAULT_TASK_STACKSIZE
config SYSTEM_NSH_PROGNAME
string "Program name"
default "nsh"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
endif