Kconfig 598 B

12345678910111213141516171819202122232425262728293031
  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 "../.."
  10. # you can change the RTT_ROOT default "../.." to your rtthread_root,
  11. # example : default "F:/git_repositories/rt-thread"
  12. config PKGS_DIR
  13. string
  14. option env="PKGS_ROOT"
  15. default "packages"
  16. source "$RTT_DIR/Kconfig"
  17. source "$PKGS_DIR/Kconfig"
  18. config SOC_TINA
  19. bool
  20. select ARCH_ARM_ARM9
  21. select RT_USING_COMPONENTS_INIT
  22. select RT_USING_USER_MAIN
  23. default y
  24. source "$BSP_DIR/drivers/Kconfig"