Kconfig 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 "$RTT_DIR/libcpu/mips/common/Kconfig"
  18. source "$PKGS_DIR/Kconfig"
  19. config SOC_LS2K1000
  20. bool
  21. select ARCH_MIPS64
  22. select RT_USING_COMPONENTS_INIT
  23. select RT_USING_USER_MAIN
  24. select RT_USING_DEVICE
  25. default y
  26. if RT_USING_SERIAL
  27. config RT_USING_UART0
  28. bool "Using RT_USING_UART0"
  29. default y
  30. config RT_USING_UART4
  31. bool "Using RT_USING_UART4"
  32. default y
  33. endif