Kconfig 811 B

123456789101112131415161718192021222324252627282930313233
  1. if ARCH_INTEGRATOR
  2. menu "Integrator Options"
  3. config ARCH_INTEGRATOR_AP
  4. bool "Support Integrator/AP and Integrator/PP2 platforms"
  5. help
  6. Include support for the ARM(R) Integrator/AP and
  7. Integrator/PP2 platforms.
  8. config ARCH_INTEGRATOR_CP
  9. bool "Support Integrator/CP platform"
  10. select ARCH_CINTEGRATOR
  11. help
  12. Include support for the ARM(R) Integrator CP platform.
  13. config ARCH_CINTEGRATOR
  14. bool
  15. config INTEGRATOR_IMPD1
  16. tristate "Include support for Integrator/IM-PD1"
  17. depends on ARCH_INTEGRATOR_AP
  18. help
  19. The IM-PD1 is an add-on logic module for the Integrator which
  20. allows ARM(R) Ltd PrimeCells to be developed and evaluated.
  21. The IM-PD1 can be found on the Integrator/PP2 platform.
  22. To compile this driver as a module, choose M here: the
  23. module will be called impd1.
  24. endmenu
  25. endif