Kconfig 670 B

123456789101112131415161718192021222324252627282930313233
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. # you can change the RTT_ROOT default "../../.." to your rtthread_root,
  5. # example : default "F:/git_repositories/rt-thread"
  6. PKGS_DIR := packages
  7. source "$(RTT_DIR)/Kconfig"
  8. source "$(RTT_DIR)/libcpu/mips/common/Kconfig"
  9. osource "$PKGS_DIR/Kconfig"
  10. config SOC_LS2K1000
  11. bool
  12. select ARCH_MIPS64
  13. select RT_USING_CACHE
  14. select RT_USING_COMPONENTS_INIT
  15. select RT_USING_USER_MAIN
  16. select RT_USING_DEVICE
  17. default y
  18. if RT_USING_SERIAL
  19. config RT_USING_UART0
  20. bool "Using RT_USING_UART0"
  21. default y
  22. config RT_USING_UART4
  23. bool "Using RT_USING_UART4"
  24. default y
  25. endif