Kconfig 823 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. config MACH_TAVOREVB
  16. bool "Marvell's PXA910 TavorEVB Development Board"
  17. select CPU_PXA910
  18. help
  19. Say 'Y' here if you want to support the Marvell PXA910-based
  20. TavorEVB Development Board.
  21. endmenu
  22. config CPU_PXA168
  23. bool
  24. select CPU_MOHAWK
  25. help
  26. Select code specific to PXA168
  27. config CPU_PXA910
  28. bool
  29. select CPU_MOHAWK
  30. help
  31. Select code specific to PXA910
  32. endif