Kconfig 870 B

123456789101112131415161718192021222324252627282930313233343536373839
  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/lwp/Kconfig"
  21. source "$RTT_DIR/components/net/Kconfig"
  22. source "$RTT_DIR/components/vbus/Kconfig"
  23. source "$RTT_DIR/components/utilities/Kconfig"
  24. source "$RTT_DIR/components/CMSIS/Kconfig"
  25. endmenu