Kconfig 694 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. if ARCH_MSM
  2. comment "MSM Board Type"
  3. depends on ARCH_MSM
  4. config MSM_DEBUG_UART
  5. int
  6. default 1 if MSM_DEBUG_UART1
  7. default 2 if MSM_DEBUG_UART2
  8. default 3 if MSM_DEBUG_UART3
  9. choice
  10. prompt "Debug UART"
  11. default MSM_DEBUG_UART_NONE
  12. config MSM_DEBUG_UART_NONE
  13. bool "None"
  14. config MSM_DEBUG_UART1
  15. bool "UART1"
  16. config MSM_DEBUG_UART2
  17. bool "UART2"
  18. config MSM_DEBUG_UART3
  19. bool "UART3"
  20. endchoice
  21. config MACH_HALIBUT
  22. depends on ARCH_MSM
  23. default y
  24. bool "Halibut Board (QCT SURF7201A)"
  25. help
  26. Support for the Qualcomm SURF7201A eval board.
  27. config MACH_TROUT
  28. default y
  29. bool "HTC Dream (aka trout)"
  30. help
  31. Support for the HTC Dream, T-Mobile G1, Android ADP1 devices.
  32. endif