Kconfig 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. # Shell configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # Copyright (c) 2016 Intel Corporation
  4. # Copyright (c) 2018 Nordic Semiconductor ASA
  5. # SPDX-License-Identifier: Apache-2.0
  6. menuconfig SHELL
  7. bool "Shell"
  8. imply LOG_RUNTIME_FILTERING
  9. select POLL
  10. if SHELL
  11. module = SHELL
  12. module-str = Shell
  13. source "subsys/logging/Kconfig.template.log_config"
  14. source "subsys/shell/Kconfig.backends"
  15. config SHELL_MINIMAL
  16. bool "Default config to reduce flash and memory requirements"
  17. help
  18. This is a meta-configuration option to significantly reduce the flash
  19. and memory requirements of the shell. Enabling it will choose Kconfig
  20. defaults which favor reduced flash or memory requirements over extra
  21. features.
  22. config SHELL_THREAD_PRIORITY_OVERRIDE
  23. bool "Override default shell thread priority"
  24. help
  25. Option to change the default value of shell thread priority.
  26. if SHELL_THREAD_PRIORITY_OVERRIDE
  27. config SHELL_THREAD_PRIORITY
  28. int "Shell thread priority"
  29. default 0
  30. help
  31. Set thread priority of the shell
  32. endif
  33. config SHELL_STACK_SIZE
  34. int "Shell thread stack size"
  35. default 3168 if OPENTHREAD_SHELL && OPENTHREAD_JOINER
  36. default 2616 if OPENTHREAD_SHELL
  37. default 2048 if MULTITHREADING
  38. default 0 if !MULTITHREADING
  39. help
  40. Stack size for thread created for each instance.
  41. config SHELL_BACKSPACE_MODE_DELETE
  42. bool "Default escape code for backspace is DELETE (0x7F)"
  43. default y
  44. help
  45. Terminals have different escape code settings for backspace button.
  46. Some terminals send code: 0x08 (backspace) other 0x7F (delete). When
  47. this option is set shell will expect 0x7F for backspace key.
  48. config SHELL_CMD_BUFF_SIZE
  49. int "Shell command buffer size"
  50. default 128 if SHELL_MINIMAL
  51. default 256
  52. help
  53. Maximum command size in bytes. One byte is reserved for the string
  54. terminator character.
  55. config SHELL_PRINTF_BUFF_SIZE
  56. int "Shell print buffer size"
  57. default 30
  58. help
  59. Maximum text buffer size for fprintf function.
  60. It is working like stdio buffering in Linux systems
  61. to limit number of peripheral access calls.
  62. config SHELL_DEFAULT_TERMINAL_WIDTH
  63. int "Default terminal width"
  64. default 80
  65. help
  66. Default terminal width is used to break lines.
  67. config SHELL_DEFAULT_TERMINAL_HEIGHT
  68. int "Default terminal height"
  69. default 24
  70. config SHELL_ARGC_MAX
  71. int "Maximum arguments in shell command"
  72. range 3 255
  73. default 12
  74. help
  75. Maximum number of arguments that can build a command.
  76. config SHELL_TAB
  77. bool "Enable the Tab button support in shell"
  78. default y if !SHELL_MINIMAL
  79. help
  80. Enable using the Tab button in the shell. The button
  81. can be used for prompting commands, or for autocompletion.
  82. This feature has high impact on flash usage.
  83. config SHELL_TAB_AUTOCOMPLETION
  84. bool "Enable commands autocompletion with the Tab button"
  85. depends on SHELL_TAB
  86. default y if !SHELL_MINIMAL
  87. help
  88. Enable commands and subcommands autocompletion with the Tab
  89. key. This function can be deactivated to save some flash.
  90. config SHELL_WILDCARD
  91. bool "Enable wildcard support in shell"
  92. select FNMATCH
  93. default y if !SHELL_MINIMAL
  94. help
  95. Enables using wildcards: * and ? in the shell.
  96. config SHELL_ECHO_STATUS
  97. bool "Enable echo on shell"
  98. default y
  99. help
  100. If enabled shell prints back every input byte.
  101. config SHELL_START_OBSCURED
  102. bool "Display asterisk when echoing"
  103. default n
  104. help
  105. If enabled, don't echo actual character, but echo * instead.
  106. This is used for login prompts.
  107. config SHELL_VT100_COMMANDS
  108. bool "Enable VT100 commands in shell"
  109. default y
  110. help
  111. Enables VT100 commands in shell (e.g. cursor position, clear screen etc.).
  112. config SHELL_VT100_COLORS
  113. bool "Enable colors in shell"
  114. depends on SHELL_VT100_COMMANDS
  115. default y if !SHELL_MINIMAL
  116. help
  117. If enabled VT100 colors are used in shell (e.g. print errors in red).
  118. config SHELL_GETOPT
  119. bool "Enable getopt support"
  120. select GETOPT
  121. help
  122. Enables getopt support in the shell.
  123. config SHELL_METAKEYS
  124. bool "Enable metakeys"
  125. default y if !SHELL_MINIMAL
  126. help
  127. Enables shell meta keys: Ctrl+a, Ctrl+b, Ctrl+c, Ctrl+d, Ctrl+e,
  128. Ctrl+f, Ctrl+k, Ctrl+l, Ctrl+u, Ctrl+w, Alt+b, Alt+f
  129. Meta keys will not be active when shell echo is set to off.
  130. config SHELL_HELP
  131. bool "Enable help message"
  132. default y if !SHELL_MINIMAL
  133. help
  134. Enables shell functions for printing formatted help message.
  135. config SHELL_HELP_OPT_PARSE
  136. bool "Parse -h and --help options"
  137. depends on SHELL_HELP
  138. depends on !SHELL_GETOPT
  139. default y
  140. help
  141. Shell parses command to find '-h' or '--help' string. If the shell
  142. finds the string, it will automatically print a help message
  143. for a command.
  144. config SHELL_HELP_ON_WRONG_ARGUMENT_COUNT
  145. bool "Enable printing help on wrong argument count"
  146. depends on SHELL_HELP
  147. default y if !SHELL_MINIMAL
  148. config SHELL_HISTORY
  149. bool "Enable history in shell"
  150. default y if !SHELL_MINIMAL
  151. select RING_BUFFER
  152. help
  153. Enable commands history. History can be accessed using up and down
  154. arrows or Ctrl+n and Ctrl+p meta keys.
  155. config SHELL_HISTORY_BUFFER
  156. int "History buffer in bytes"
  157. default 128 if SHELL_MINIMAL
  158. default 512
  159. depends on SHELL_HISTORY
  160. help
  161. Number of bytes dedicated for storing executed commands.
  162. config SHELL_STATS
  163. bool "Enable shell statistics"
  164. default y if !SHELL_MINIMAL
  165. config SHELL_CMDS
  166. bool "Enable built-in commands"
  167. default y if !SHELL_MINIMAL
  168. help
  169. Enable built-in commands like 'clear', 'history', etc.
  170. config SHELL_CMDS_RESIZE
  171. bool "Enable resize command"
  172. depends on SHELL_CMDS
  173. depends on SHELL_VT100_COMMANDS
  174. default y if !SHELL_MINIMAL
  175. help
  176. By default shell assumes width of a terminal screen set to 80
  177. characters. Each time terminal screen width is changed resize command
  178. must be called to ensure correct text display on the terminal screen.
  179. The resize command can be turned off to save code memory (~0,5k).
  180. config SHELL_CMDS_SELECT
  181. bool "Enable select command"
  182. depends on SHELL_CMDS
  183. help
  184. This option enables select command. It can be used to set new root
  185. command. Exit to main command tree is with alt+r.
  186. config SHELL_CMD_ROOT
  187. string "Set a root command at init"
  188. help
  189. This option sets a root command at shell init,
  190. and when exiting to main command tree with alt+r.
  191. config SHELL_LOG_BACKEND
  192. bool "Enable shell log backend"
  193. depends on LOG && !LOG_MINIMAL
  194. default y if LOG
  195. help
  196. When enabled, backend will use the shell for logging.
  197. This option is enabled by default.
  198. Disabling this option disables log output to all shell backends.
  199. Disabling log output to a specific shell backend can be achieved
  200. using the shell backend's LOG_LEVEL option
  201. (e.g. CONFIG_SHELL_TELNET_INIT_LOG_LEVEL_NONE=y).
  202. source "subsys/shell/modules/Kconfig"
  203. endif # SHELL
  204. menuconfig SHELL_DBG
  205. bool
  206. prompt "Shell DBG cmd"
  207. select SHELL
  208. help
  209. Enable shell dbg cmd.
  210. if SHELL_DBG
  211. config CMD_MEMORY
  212. bool "Enable memory commands"
  213. default y
  214. help
  215. Memeory commands.
  216. mdw - memory display by word
  217. mdh - memory display by half-word
  218. mdb - memory display by byte
  219. mww - memory write (fill) by word
  220. mwh - memory write (fill) by half-word
  221. mwb - memory write (fill) by byte
  222. config CMD_SPINOR
  223. bool "Enable SPI NOR TEST commands"
  224. default y
  225. help
  226. Memeory commands.
  227. snorr - nor display by sector
  228. snort - nor test read/write/erase speed
  229. config CMD_SPINAND
  230. bool "Enable SPI NAND TEST commands"
  231. default y
  232. help
  233. Memeory commands.
  234. snandr - nand logical read by sector
  235. snandw - nand logical write by sector
  236. snandt - nand logical test read/write speed
  237. endif #SHELL_DBG