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