| 123456789101112131415161718192021222324252627282930313233 |
- mainmenu "RT-Thread Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- # you can change the RTT_ROOT default "../../.." to your rtthread_root,
- # example : default "F:/git_repositories/rt-thread"
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- source "$(RTT_DIR)/libcpu/mips/common/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- config SOC_LS2K1000
- bool
- select ARCH_MIPS64
- select RT_USING_CACHE
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select RT_USING_DEVICE
- default y
- if RT_USING_SERIAL
- config RT_USING_UART0
- bool "Using RT_USING_UART0"
- default y
- config RT_USING_UART4
- bool "Using RT_USING_UART4"
- default y
- endif
|