Kconfig 501 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 "SPEAr3XX"
  10. select ARM_VIC
  11. select CPU_ARM926T
  12. help
  13. Supports for ARM's SPEAR3XX family
  14. config ARCH_SPEAR6XX
  15. bool "SPEAr6XX"
  16. select ARM_VIC
  17. select CPU_ARM926T
  18. help
  19. Supports for ARM's SPEAR6XX family
  20. endchoice
  21. # Adding SPEAr machine specific configuration files
  22. source "arch/arm/mach-spear3xx/Kconfig"
  23. source "arch/arm/mach-spear6xx/Kconfig"
  24. endif