Kconfig 536 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # SPEAr Platform configuration file
  3. #
  4. if PLAT_SPEAR
  5. choice
  6. prompt "ST SPEAr Family"
  7. default ARCH_SPEAR3XX
  8. config ARCH_SPEAR3XX
  9. bool "ST SPEAr3xx with Device Tree"
  10. select ARM_VIC
  11. select CPU_ARM926T
  12. select USE_OF
  13. help
  14. Supports for ARM's SPEAR3XX family
  15. config ARCH_SPEAR6XX
  16. bool "SPEAr6XX"
  17. select ARM_VIC
  18. select CPU_ARM926T
  19. help
  20. Supports for ARM's SPEAR6XX family
  21. endchoice
  22. # Adding SPEAr machine specific configuration files
  23. source "arch/arm/mach-spear3xx/Kconfig"
  24. source "arch/arm/mach-spear6xx/Kconfig"
  25. endif