Kconfig 545 B

123456789101112131415161718192021222324252627282930
  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: "rt-thread"
  11. config PKGS_DIR
  12. string
  13. option env="PKGS_ROOT"
  14. default "packages"
  15. source "$RTT_DIR/Kconfig"
  16. source "$PKGS_DIR/Kconfig"
  17. source "board/Kconfig"
  18. config SOC_SAML10
  19. bool
  20. select ARCH_ARM
  21. select ARCH_ARM_CORTEX_M
  22. select RT_USING_COMPONENTS_INIT
  23. select RT_USING_USER_MAIN
  24. default y