Kconfig 550 B

12345678910111213141516171819202122232425262728
  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. ENV_DIR := /
  8. config SOC_R7FA4E2B9
  9. bool
  10. select SOC_SERIES_R7FA4E2
  11. select RT_USING_COMPONENTS_INIT
  12. select RT_USING_USER_MAIN
  13. select ARCH_ARM_CORTEX_SECURE
  14. default y
  15. source "$(RTT_DIR)/Kconfig"
  16. osource "$PKGS_DIR/Kconfig"
  17. rsource "../libraries/Kconfig"
  18. if !RT_USING_NANO
  19. rsource "$(BSP_DIR)/board/Kconfig"
  20. endif