-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 249606 b: refs/heads/master c: 64e6242 h: refs/heads/master v: v3
- Loading branch information
matt mooney
authored and
Greg Kroah-Hartman
committed
May 12, 2011
1 parent
14c31c3
commit 5ce6ea1
Showing
7 changed files
with
39 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 7aaacb43ed97714ff0f7f77f306f24b6e564ad03 | ||
refs/heads/master: 64e62426f40d1017a7ced93ee71d333529196365 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,45 @@ | ||
config USB_IP_COMMON | ||
tristate "USB IP support (EXPERIMENTAL)" | ||
config USBIP_CORE | ||
tristate "USB/IP support (EXPERIMENTAL)" | ||
depends on USB && NET && EXPERIMENTAL | ||
default N | ||
---help--- | ||
This enables pushing USB packets over IP to allow remote | ||
machines access to USB devices directly. For more details, | ||
and links to the userspace utility programs to let this work | ||
properly, see http://usbip.sourceforge.net/. | ||
machines direct access to USB devices. It provides the | ||
USB/IP core that is required by both drivers. | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called usbip_common_mod. | ||
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 USB_IP_VHCI_HCD | ||
tristate "USB IP client driver" | ||
depends on USB_IP_COMMON | ||
config USBIP_VHCI_HCD | ||
tristate "VHCI hcd" | ||
depends on USBIP_CORE | ||
default N | ||
---help--- | ||
This enables the USB IP host controller driver which will | ||
run on the client machine. | ||
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. | ||
To compile this driver as a module, choose M here: the | ||
module will be called vhci-hcd. | ||
|
||
config USB_IP_HOST | ||
tristate "USB IP host driver" | ||
depends on USB_IP_COMMON | ||
config USBIP_HOST | ||
tristate "Host driver" | ||
depends on USBIP_CORE | ||
default N | ||
---help--- | ||
This enables the USB IP device driver which will run on the | ||
host machine. | ||
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. | ||
To compile this driver as a module, choose M here: the | ||
module will be called usbip-host. | ||
|
||
config USB_IP_DEBUG | ||
bool "USB/IP debug messages" | ||
depends on USB_IP_COMMON | ||
config USBIP_DEBUG | ||
bool "Debug messages for USB/IP" | ||
depends on USBIP_CORE | ||
default N | ||
---help--- | ||
This enables the debug messages from the USB-IP drivers. | ||
This enables the debug messages from the USB/IP drivers. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
ccflags-$(CONFIG_USB_IP_DEBUG) := -DDEBUG | ||
ccflags-$(CONFIG_USBIP_DEBUG) := -DDEBUG | ||
|
||
obj-$(CONFIG_USB_IP_COMMON) += usbip_common_mod.o | ||
usbip_common_mod-y := usbip_common.o usbip_event.o | ||
obj-$(CONFIG_USBIP_CORE) += usbip-core.o | ||
usbip-core-y := usbip_common.o usbip_event.o | ||
|
||
obj-$(CONFIG_USB_IP_VHCI_HCD) += vhci-hcd.o | ||
obj-$(CONFIG_USBIP_VHCI_HCD) += vhci-hcd.o | ||
vhci-hcd-y := vhci_sysfs.o vhci_tx.o vhci_rx.o vhci_hcd.o | ||
|
||
obj-$(CONFIG_USB_IP_HOST) += usbip.o | ||
usbip-y := stub_dev.o stub_main.o stub_rx.o stub_tx.o | ||
obj-$(CONFIG_USBIP_HOST) += usbip-host.o | ||
usbip-host-y := stub_dev.o stub_main.o stub_rx.o stub_tx.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters