KConfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_HISTORY
  7. bool "Enable command history feature"
  8. default y
  9. config FINSH_USING_SYMTAB
  10. bool "Using symbol table for commands"
  11. default y
  12. config FINSH_USING_DESCRIPTION
  13. bool "Keeping description in symbol table"
  14. default y
  15. config FINSH_THREAD_STACK_SIZE
  16. int "The stack size for finsh thread"
  17. default 4096
  18. config FINSH_CMD_SIZE
  19. int "The command line size for shell"
  20. default 80
  21. config FINSH_USING_AUTH
  22. bool "shell support authentication"
  23. default n
  24. if FINSH_USING_AUTH
  25. config FINSH_DEFAULT_PASSWORD
  26. string "The default password for shell authentication"
  27. default "rtthread"
  28. endif
  29. config FINSH_USING_MSH
  30. bool "Using module shell"
  31. default y
  32. if FINSH_USING_MSH
  33. config FINSH_USING_MSH_DEFAULT
  34. bool "Using module shell in default"
  35. default y
  36. config FINSH_USING_MSH_ONLY
  37. bool "Only using module shell"
  38. default n
  39. endif
  40. endif
  41. endmenu