Kconfig 466 B

1234567891011121314151617181920212223242526
  1. mainmenu "RT-Thread Project 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. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. config LIBRARIES_DIR
  15. string
  16. option env="LIBRARIES_DIR"
  17. default "../libraries"
  18. source "$RTT_DIR/Kconfig"
  19. source "$PKGS_DIR/Kconfig"
  20. source "board/Kconfig"
  21. source "$LIBRARIES_DIR/Kconfig"