Kconfig 410 B

12345678910111213141516171819202122232425262728
  1. # Kconfig - USB configuration options
  2. #
  3. # Copyright (c) 2016 Wind River Systems, Inc.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig USB_DEVICE
  8. bool "USB"
  9. default n
  10. help
  11. Enable USB device drivers.
  12. menuconfig USB_HOST
  13. bool "USB HOST"
  14. default n
  15. help
  16. Enable USB host drivers.
  17. if USB_HOST
  18. config USB_HOST_DRIVER
  19. bool
  20. select USB_HOST_STACK
  21. default n
  22. endif # USB_HOST
  23. rsource "otg/Kconfig"