nuttx-apps/system/nsh/Kconfig
Xiang Xiao 0d2ef47192 nshlib: Rename CONFIG_SYSTEM_NSH_SYMTAB to CONFIG_NSH_SYMTAB
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2022-10-18 22:18:38 +02:00

32 lines
652 B
Plaintext

#
# 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