Kconfig 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. config MACH_TTC_DKB
  22. bool "Marvell's PXA910 TavorEVB Development Board"
  23. select CPU_PXA910
  24. help
  25. Say 'Y' here if you want to support the Marvell PXA910-based
  26. TTC_DKB Development Board.
  27. endmenu
  28. config CPU_PXA168
  29. bool
  30. select CPU_MOHAWK
  31. help
  32. Select code specific to PXA168
  33. config CPU_PXA910
  34. bool
  35. select CPU_MOHAWK
  36. help
  37. Select code specific to PXA910
  38. endif