Kconfig 506 B

12345678910111213141516171819202122232425262728
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. PKGS_DIR := packages
  5. SOC_DM_DIR := $BSP_DIR/../dm/
  6. source "$(SOC_DM_DIR)/Kconfig"
  7. source "$(RTT_DIR)/Kconfig"
  8. osource "$PKGS_DIR/Kconfig"
  9. config SOC_RK3300
  10. bool
  11. select ARCH_ARMV8
  12. select ARCH_CPU_64BIT
  13. select ARCH_ARM_MMU
  14. select RT_USING_CACHE
  15. select RT_USING_COMPONENTS_INIT
  16. select RT_USING_USER_MAIN
  17. select RT_USING_STDC_ATOMIC
  18. default y
  19. config RT_USING_AMBA_BUS
  20. bool
  21. default y