Kconfig 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. if ARCH_DOVE
  2. menu "Marvell Dove Implementations"
  3. config DOVE_LEGACY
  4. bool
  5. config MACH_DOVE_DB
  6. bool "Marvell DB-MV88AP510 Development Board"
  7. select DOVE_LEGACY
  8. select I2C_BOARDINFO
  9. help
  10. Say 'Y' here if you want your kernel to support the
  11. Marvell DB-MV88AP510 Development Board.
  12. config MACH_CM_A510
  13. bool "CompuLab CM-A510 Board"
  14. select DOVE_LEGACY
  15. help
  16. Say 'Y' here if you want your kernel to support the
  17. CompuLab CM-A510 Board.
  18. config MACH_DOVE_DT
  19. bool "Marvell Dove Flattened Device Tree"
  20. select DOVE_CLK
  21. select REGULATOR
  22. select REGULATOR_FIXED_VOLTAGE
  23. select USE_OF
  24. help
  25. Say 'Y' here if you want your kernel to support the
  26. Marvell Dove using flattened device tree.
  27. endmenu
  28. endif