KConfig 812 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menu "Command shell"
  2. config RT_USING_FINSH
  3. bool "finsh shell"
  4. default y
  5. if RT_USING_FINSH
  6. config FINSH_USING_SYMTAB
  7. bool "Using symbol table for commands"
  8. default y
  9. config FINSH_USING_DESCRIPTION
  10. bool "Keeping description in symbol table"
  11. default y
  12. config FINSH_THREAD_STACK_SIZE
  13. int "The stack size for finsh thread"
  14. default 4096
  15. config FINSH_USING_AUTH
  16. bool "shell support authentication"
  17. default n
  18. config FINSH_DEFAULT_PASSWORD
  19. string "The default password for shell authentication"
  20. default "rtthread"
  21. config FINSH_USING_MSH
  22. bool "Using module shell"
  23. default y
  24. config FINSH_USING_MSH_DEFAULT
  25. bool "Using module shell in default"
  26. default y
  27. config FINSH_USING_MSH_ONLY
  28. bool "Only using module shell"
  29. default n
  30. endif
  31. endmenu