2012-04-06 16:33:17 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:14:53 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 16:33:17 +00:00
|
|
|
#
|
2012-04-13 02:14:09 +00:00
|
|
|
|
2018-08-18 09:04:43 -06:00
|
|
|
config SYSTEM_NSH
|
2018-08-23 11:06:15 -06:00
|
|
|
tristate "NuttShell (NSH) example"
|
2012-04-13 02:14:09 +00:00
|
|
|
default n
|
2012-09-05 12:45:35 +00:00
|
|
|
select NSH_LIBRARY
|
|
|
|
select SYSTEM_READLINE
|
2012-04-13 02:14:09 +00:00
|
|
|
---help---
|
|
|
|
Enable the NuttShell (NSH) example
|
|
|
|
|
2018-08-18 09:04:43 -06:00
|
|
|
if SYSTEM_NSH
|
2013-06-21 09:32:57 -06:00
|
|
|
|
2018-08-23 11:06:15 -06:00
|
|
|
config SYSTEM_NSH_PRIORITY
|
2020-10-19 11:14:35 +08:00
|
|
|
int "NuttX shell thread priority"
|
2018-08-23 11:06:15 -06:00
|
|
|
default 100
|
|
|
|
|
|
|
|
config SYSTEM_NSH_STACKSIZE
|
2020-10-19 11:14:35 +08:00
|
|
|
int "NuttX shell stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2018-08-23 11:06:15 -06:00
|
|
|
|
2018-08-18 09:04:43 -06:00
|
|
|
config SYSTEM_NSH_PROGNAME
|
2014-09-06 11:17:05 -06:00
|
|
|
string "Program name"
|
|
|
|
default "nsh"
|
|
|
|
---help---
|
2019-08-23 11:59:28 -06:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2014-09-06 11:17:05 -06:00
|
|
|
program is installed.
|
|
|
|
|
2012-04-13 02:14:09 +00:00
|
|
|
endif
|