Kconfig 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. menu "RT-Thread Components"
  2. config RT_USING_COMPONENTS_INIT
  3. bool
  4. default n
  5. config RT_USING_USER_MAIN
  6. bool
  7. default n
  8. if RT_USING_USER_MAIN
  9. config RT_MAIN_THREAD_STACK_SIZE
  10. int "Set main thread stack size"
  11. default 6144 if ARCH_CPU_64BIT
  12. default 2048
  13. config RT_MAIN_THREAD_PRIORITY
  14. int "Set main thread priority"
  15. default 4 if RT_THREAD_PRIORITY_8
  16. default 10 if RT_THREAD_PRIORITY_32
  17. default 85 if RT_THREAD_PRIORITY_256
  18. endif
  19. config RT_USING_LEGACY
  20. bool "Support legacy version for compatibility"
  21. default n
  22. if RT_USING_CONSOLE
  23. rsource "finsh/Kconfig"
  24. endif
  25. if !RT_USING_NANO
  26. rsource "dfs/Kconfig"
  27. rsource "fal/Kconfig"
  28. rsource "drivers/Kconfig"
  29. rsource "libc/Kconfig"
  30. rsource "net/Kconfig"
  31. rsource "mprotect/Kconfig"
  32. rsource "utilities/Kconfig"
  33. rsource "vbus/Kconfig"
  34. endif
  35. if RT_USING_SMART
  36. rsource "lwp/Kconfig"
  37. rsource "mm/Kconfig"
  38. endif
  39. rsource "legacy/Kconfig"
  40. endmenu