Kconfig 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. mainmenu "RT-Thread Project 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. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$PKGS_DIR/Kconfig"
  16. config SOC_IMX6ULL
  17. bool
  18. select ARCH_ARM_CORTEX_A7
  19. select RT_USING_CACHE
  20. select ARCH_ARM_MMU
  21. select RT_USING_COMPONENTS_INIT
  22. select RT_USING_USER_MAIN
  23. select RT_USING_FPU
  24. select RT_USING_GIC_V2
  25. default y
  26. if SOC_IMX6ULL
  27. config CPU_MCIMX6Y2CVM05
  28. bool
  29. default y
  30. config FSL_SDK_ENABLE_DRIVER_CACHE_CONTROL
  31. depends on RT_USING_CACHE
  32. int
  33. default 1
  34. config FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL
  35. int "Disable Clock control in fsl files"
  36. default 1
  37. endif
  38. source "$BSP_DIR/drivers/Kconfig"