Kconfig 678 B

12345678910111213141516171819202122232425262728293031
  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. endif
  10. source "$RTT_DIR/components/cplusplus/Kconfig"
  11. source "$RTT_DIR/components/finsh/Kconfig"
  12. source "$RTT_DIR/components/dfs/Kconfig"
  13. source "$RTT_DIR/components/drivers/Kconfig"
  14. source "$RTT_DIR/components/libc/Kconfig"
  15. source "$RTT_DIR/components/net/Kconfig"
  16. source "$RTT_DIR/components/gui/Kconfig"
  17. source "$RTT_DIR/components/vbus/Kconfig"
  18. source "$RTT_DIR/components/utilities/Kconfig"
  19. endmenu