Kconfig 432 B

1234567891011121314151617181920212223242526
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../../..
  4. PKGS_DIR := packages
  5. source "$(RTT_DIR)/Kconfig"
  6. osource "$PKGS_DIR/Kconfig"
  7. config BCM2836_SOC
  8. bool
  9. select ARCH_ARMV8
  10. select RT_USING_COMPONENTS_INIT
  11. select RT_USING_USER_MAIN
  12. select ARCH_CPU_64BIT
  13. select RT_USING_CACHE
  14. select SOC_BCM283x
  15. default y
  16. config SOC_BCM283x
  17. bool
  18. default y
  19. rsource "driver/Kconfig"