Kconfig 453 B

1234567891011121314151617181920212223242526272829303132
  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_RT305X
  8. bool "RT305x"
  9. select USB_ARCH_HAS_HCD
  10. select USB_ARCH_HAS_OHCI
  11. select USB_ARCH_HAS_EHCI
  12. endchoice
  13. choice
  14. prompt "Devicetree selection"
  15. default DTB_RT_NONE
  16. help
  17. Select the devicetree.
  18. config DTB_RT_NONE
  19. bool "None"
  20. config DTB_RT305X_EVAL
  21. bool "RT305x eval kit"
  22. depends on SOC_RT305X
  23. endchoice
  24. endif