Kconfig 837 B

123456789101112131415161718192021222324252627282930313233
  1. menu "Versatile platform type"
  2. depends on ARCH_VERSATILE
  3. config ARCH_VERSATILE_PB
  4. bool "Support Versatile Platform Baseboard for ARM926EJ-S"
  5. default y
  6. select CPU_ARM926T
  7. select MIGHT_HAVE_PCI
  8. help
  9. Include support for the ARM(R) Versatile Platform Baseboard
  10. for the ARM926EJ-S.
  11. config MACH_VERSATILE_AB
  12. bool "Support Versatile Application Baseboard for ARM926EJ-S"
  13. select CPU_ARM926T
  14. help
  15. Include support for the ARM(R) Versatile Application Baseboard
  16. for the ARM926EJ-S.
  17. config MACH_VERSATILE_DT
  18. bool "Support Versatile platform from device tree"
  19. select CPU_ARM926T
  20. select USE_OF
  21. help
  22. Include support for the ARM(R) Versatile/PB platform,
  23. using the device tree for discovery
  24. config MACH_VERSATILE_AUTO
  25. def_bool y
  26. depends on !ARCH_VERSATILE_PB && !MACH_VERSATILE_AB
  27. select MACH_VERSATILE_DT
  28. endmenu