Kconfig 562 B

123456789101112131415161718192021222324252627282930313233
  1. mainmenu "RT-Thread 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. config BOARD_IMX6UL
  15. bool
  16. select ARCH_ARM_CORTEX_A7
  17. select RT_USING_GIC_V2
  18. default y
  19. source "$RTT_DIR/Kconfig"
  20. source "$PKGS_DIR/Kconfig"
  21. source "$BSP_DIR/drivers/Kconfig"
  22. config SOC_MCIMX6X4
  23. bool
  24. select RT_USING_COMPONENTS_INIT
  25. #select RT_USING_USER_MAIN
  26. default y