Kconfig 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "RT-Thread Components"
  2. config RT_USING_COMPONENTS_INIT
  3. bool "Use components automatically initialization"
  4. default y
  5. if RT_USING_COMPONENTS_INIT
  6. config RT_USING_USER_MAIN
  7. bool "The main() function as user entry function"
  8. default y
  9. if RT_USING_USER_MAIN
  10. config RT_MAIN_THREAD_STACK_SIZE
  11. int "Set main thread stack size"
  12. default 2048
  13. endif
  14. endif
  15. source "$RTT_DIR/components/cplusplus/Kconfig"
  16. source "$RTT_DIR/components/finsh/Kconfig"
  17. source "$RTT_DIR/components/dfs/Kconfig"
  18. source "$RTT_DIR/components/drivers/Kconfig"
  19. source "$RTT_DIR/components/libc/Kconfig"
  20. source "$RTT_DIR/components/net/Kconfig"
  21. source "$RTT_DIR/components/vbus/Kconfig"
  22. source "$RTT_DIR/components/utilities/Kconfig"
  23. source "$RTT_DIR/components/CMSIS/Kconfig"
  24. endmenu