Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. menu "Command shell"
  2. config RT_USING_FINSH
  3. bool "finsh shell"
  4. default y
  5. if RT_USING_FINSH
  6. config FINSH_THREAD_NAME
  7. string "The finsh thread name"
  8. default "tshell"
  9. config FINSH_USING_HISTORY
  10. bool "Enable command history feature"
  11. default y
  12. if FINSH_USING_HISTORY
  13. config FINSH_HISTORY_LINES
  14. int "The command history line number"
  15. default 5
  16. endif
  17. config FINSH_USING_SYMTAB
  18. bool "Using symbol table for commands"
  19. default y
  20. config FINSH_USING_DESCRIPTION
  21. bool "Keeping description in symbol table"
  22. default y
  23. config FINSH_THREAD_PRIORITY
  24. int "The priority level value of finsh thread"
  25. default 20
  26. config FINSH_THREAD_STACK_SIZE
  27. int "The stack size for finsh thread"
  28. default 4096
  29. config FINSH_CMD_SIZE
  30. int "The command line size for shell"
  31. default 80
  32. config FINSH_USING_AUTH
  33. bool "shell support authentication"
  34. default n
  35. if FINSH_USING_AUTH
  36. config FINSH_DEFAULT_PASSWORD
  37. string "The default password for shell authentication"
  38. default "rtthread"
  39. config FINSH_PASSWORD_MIN
  40. int "The password min length"
  41. default 6
  42. config FINSH_PASSWORD_MAX
  43. int "The password max length"
  44. default RT_NAME_MAX
  45. endif
  46. config FINSH_USING_MSH
  47. bool "Using module shell"
  48. default y
  49. if FINSH_USING_MSH
  50. config FINSH_USING_MSH_DEFAULT
  51. bool "Using module shell in default"
  52. default y
  53. config FINSH_USING_MSH_ONLY
  54. bool "Only using module shell"
  55. default n
  56. endif
  57. endif
  58. endmenu