Kconfig 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. config USBIP_CORE
  2. tristate "USB/IP support (EXPERIMENTAL)"
  3. depends on USB && NET && EXPERIMENTAL
  4. default N
  5. ---help---
  6. This enables pushing USB packets over IP to allow remote
  7. machines direct access to USB devices. It provides the
  8. USB/IP core that is required by both drivers.
  9. For more details, and to get the userspace utility
  10. programs, please see http://usbip.sourceforge.net/.
  11. To compile this as a module, choose M here: the module will
  12. be called usbip-core.
  13. If unsure, say N.
  14. config USBIP_VHCI_HCD
  15. tristate "VHCI hcd"
  16. depends on USBIP_CORE
  17. default N
  18. ---help---
  19. This enables the USB/IP virtual host controller driver,
  20. which is run on the remote machine.
  21. To compile this driver as a module, choose M here: the
  22. module will be called vhci-hcd.
  23. config USBIP_HOST
  24. tristate "Host driver"
  25. depends on USBIP_CORE
  26. default N
  27. ---help---
  28. This enables the USB/IP host driver, which is run on the
  29. machine that is sharing the USB devices.
  30. To compile this driver as a module, choose M here: the
  31. module will be called usbip-host.
  32. config USBIP_DEBUG
  33. bool "Debug messages for USB/IP"
  34. depends on USBIP_CORE
  35. default N
  36. ---help---
  37. This enables the debug messages from the USB/IP drivers.