Kconfig 728 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. mainmenu "RT-Thread Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "rt-thread"
  10. # you can change the RTT_ROOT default "rt-thread"
  11. # example : default "F:/git_repositories/rt-thread"
  12. config PKGS_DIR
  13. string
  14. option env="PKGS_ROOT"
  15. default "packages"
  16. config ENV_DIR
  17. string
  18. option env="ENV_ROOT"
  19. default "/"
  20. source "$RTT_DIR/Kconfig"
  21. source "$PKGS_DIR/Kconfig"
  22. source "$ENV_DIR/tools/scripts/cmds/Kconfig"
  23. source "$BSP_DIR/drivers/Kconfig"
  24. config SOC_W60X
  25. bool
  26. select RT_USING_COMPONENTS_INIT
  27. select RT_USING_USER_MAIN
  28. default y
  29. config RT_PRINTF_LONGLONG
  30. bool
  31. default y