Kconfig 839 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. if RALINK
  2. choice
  3. prompt "Ralink SoC selection"
  4. default SOC_RT305X
  5. help
  6. Select Ralink MIPS SoC type.
  7. config SOC_RT288X
  8. bool "RT288x"
  9. config SOC_RT305X
  10. bool "RT305x"
  11. select USB_ARCH_HAS_HCD
  12. select USB_ARCH_HAS_OHCI
  13. select USB_ARCH_HAS_EHCI
  14. config SOC_RT3883
  15. bool "RT3883"
  16. select USB_ARCH_HAS_OHCI
  17. select USB_ARCH_HAS_EHCI
  18. config SOC_MT7620
  19. bool "MT7620"
  20. endchoice
  21. choice
  22. prompt "Devicetree selection"
  23. default DTB_RT_NONE
  24. help
  25. Select the devicetree.
  26. config DTB_RT_NONE
  27. bool "None"
  28. config DTB_RT2880_EVAL
  29. bool "RT2880 eval kit"
  30. depends on SOC_RT288X
  31. config DTB_RT305X_EVAL
  32. bool "RT305x eval kit"
  33. depends on SOC_RT305X
  34. config DTB_RT3883_EVAL
  35. bool "RT3883 eval kit"
  36. depends on SOC_RT3883
  37. config DTB_MT7620A_EVAL
  38. bool "MT7620A eval kit"
  39. depends on SOC_MT7620
  40. endchoice
  41. endif