Kconfig 858 B

12345678910111213141516171819202122232425262728293031323334353637
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. # you can change the RTT_ROOT default "rt-thread"
  4. # example : default "F:/git_repositories/rt-thread"
  5. PKGS_DIR := packages
  6. ENV_DIR := /
  7. config SOC_S100
  8. bool
  9. select RT_USING_COMPONENTS_INIT
  10. select RT_USING_USER_MAIN
  11. default y
  12. menu "S100 BSP Options"
  13. config RT_USING_FPU
  14. bool "Enable Cortex-R52 VFP/FPU support"
  15. default y
  16. help
  17. Enable hardware floating-point support for the S100 BSP.
  18. When enabled, the BSP builds with hard-float ABI and enables
  19. the VFP context save/restore path.
  20. When disabled, the BSP switches to a soft-float build so O2 can
  21. remain enabled without generating VFP instructions.
  22. endmenu
  23. source "$(RTT_DIR)/Kconfig"
  24. osource "$PKGS_DIR/Kconfig"
  25. # rsource "$(BSP_DIR)/board/Kconfig"
  26. source "$(BSP_DIR)/drivers/Kconfig"