Kconfig 629 B

123456789101112131415161718192021222324252627282930313233
  1. if ARCH_MMP
  2. menu "Marvell PXA168/910 Implmentations"
  3. config MACH_ASPENITE
  4. bool "Marvell's PXA168 Aspenite Development Board"
  5. select CPU_PXA168
  6. help
  7. Say 'Y' here if you want to support the Marvell PXA168-based
  8. Aspenite Development Board.
  9. config MACH_ZYLONITE2
  10. bool "Marvell's PXA168 Zylonite2 Development Board"
  11. select CPU_PXA168
  12. help
  13. Say 'Y' here if you want to support the Marvell PXA168-based
  14. Zylonite2 Development Board.
  15. endmenu
  16. config CPU_PXA168
  17. bool
  18. select CPU_MOHAWK
  19. help
  20. Select code specific to PXA168
  21. config CPU_PXA910
  22. bool
  23. select CPU_MOHAWK
  24. help
  25. Select code specific to PXA910
  26. endif