Kconfig 508 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0
  2. if ARCH_DOVE
  3. menu "Marvell Dove Implementations"
  4. config DOVE_LEGACY
  5. bool
  6. config MACH_DOVE_DB
  7. bool "Marvell DB-MV88AP510 Development Board"
  8. select DOVE_LEGACY
  9. select I2C_BOARDINFO if I2C
  10. help
  11. Say 'Y' here if you want your kernel to support the
  12. Marvell DB-MV88AP510 Development Board.
  13. config MACH_CM_A510
  14. bool "CompuLab CM-A510 Board"
  15. select DOVE_LEGACY
  16. help
  17. Say 'Y' here if you want your kernel to support the
  18. CompuLab CM-A510 Board.
  19. endmenu
  20. endif