Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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_PRIORITY
  16. int "The priority level value of finsh thread"
  17. default 20
  18. config FINSH_THREAD_STACK_SIZE
  19. int "The stack size for finsh thread"
  20. default 4096
  21. config FINSH_CMD_SIZE
  22. int "The command line size for shell"
  23. default 80
  24. config FINSH_USING_AUTH
  25. bool "shell support authentication"
  26. default n
  27. if FINSH_USING_AUTH
  28. config FINSH_DEFAULT_PASSWORD
  29. string "The default password for shell authentication"
  30. default "rtthread"
  31. endif
  32. config FINSH_USING_MSH
  33. bool "Using module shell"
  34. default y
  35. if FINSH_USING_MSH
  36. config FINSH_USING_MSH_DEFAULT
  37. bool "Using module shell in default"
  38. default y
  39. config FINSH_USING_MSH_ONLY
  40. bool "Only using module shell"
  41. default n
  42. endif
  43. endif
  44. endmenu