9360575c58
Add the driver to Kconfig to make it visible in menuconfig and allow people to compile it. This commit is a result of cooperation between Samsung R&D Institute Poland and Open Operating Systems Student Society at University of Warsaw (O2S3@UW) consisting of: Igor Kotrasinski <ikotrasinsk@gmail.com> Karol Kosik <karo9@interia.eu> Ewelina Kosmider <3w3lfin@gmail.com> Dawid Lazarczyk <lazarczyk.dawid@gmail.com> Piotr Szulc <ps347277@students.mimuw.edu.pl> Tutor and project owner: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Igor Kotrasinski <i.kotrasinsk@samsung.com> Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
config USBIP_CORE
|
|
tristate "USB/IP support"
|
|
depends on USB && NET
|
|
---help---
|
|
This enables pushing USB packets over IP to allow remote
|
|
machines direct access to USB devices. It provides the
|
|
USB/IP core that is required by both drivers.
|
|
|
|
For more details, and to get the userspace utility
|
|
programs, please see <http://usbip.sourceforge.net/>.
|
|
|
|
To compile this as a module, choose M here: the module will
|
|
be called usbip-core.
|
|
|
|
If unsure, say N.
|
|
|
|
config USBIP_VHCI_HCD
|
|
tristate "VHCI hcd"
|
|
depends on USBIP_CORE
|
|
---help---
|
|
This enables the USB/IP virtual host controller driver,
|
|
which is run on the remote machine.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called vhci-hcd.
|
|
|
|
config USBIP_HOST
|
|
tristate "Host driver"
|
|
depends on USBIP_CORE
|
|
---help---
|
|
This enables the USB/IP host driver, which is run on the
|
|
machine that is sharing the USB devices.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called usbip-host.
|
|
|
|
config USBIP_VUDC
|
|
tristate "VUDC driver"
|
|
depends on USBIP_CORE
|
|
---help---
|
|
This enables the USB/IP virtual USB device controller
|
|
driver, which is run on the host machine, allowing the
|
|
machine itself to act as a device.
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called usbip-vudc.
|
|
|
|
config USBIP_DEBUG
|
|
bool "Debug messages for USB/IP"
|
|
depends on USBIP_CORE
|
|
---help---
|
|
This enables the debug messages from the USB/IP drivers.
|