Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249711
b: refs/heads/master
c: 220973d
h: refs/heads/master
i:
  249709: 32314be
  249707: 7c5e2a7
  249703: a0a92d2
  249695: a86eb8c
v: v3
  • Loading branch information
matt mooney authored and Greg Kroah-Hartman committed May 17, 2011
1 parent d52872c commit 6a5cea2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9abec45232e0716ce4c4c67c566596ad88d7105d
refs/heads/master: 220973dd23570a40395dfe6d594a5746f336511f
16 changes: 8 additions & 8 deletions trunk/drivers/staging/usbip/userspace/README
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
[Usage]
server:# (Attach your USB device physically.)

server:# insmod usbip_common_mod.ko
server:# insmod usbip.ko
server:# insmod usbip-core.ko
server:# insmod usbip-host.ko
- It was formerly named as stub.ko.

server:# usbipd -D
Expand All @@ -45,13 +45,13 @@
- List driver assignments for usb devices.

server:# usbip_bind_driver --usbip 1-2
- Bind usbip.ko to the device of busid 1-2.
- Bind usbip-host.ko to the device of busid 1-2.
- A usb device 1-2 is now exportable to other hosts!
- Use 'usbip_bind_driver --other 1-2' when you want to shutdown exporting
and use the device locally.


client:# insmod usbip_common_mod.ko
client:# insmod usbip-core.ko
client:# insmod vhci-hcd.ko
- It was formerly named as vhci.ko.

Expand All @@ -72,8 +72,8 @@
--------------------------------------------------------------------------------------------------------
- SERVER SIDE (physically attach your USB devices to this host) ----------------------------------------
--------------------------------------------------------------------------------------------------------
trois:# insmod (somewhere)/usbip_common_mod.ko
trois:# insmod (somewhere)/usbip.ko
trois:# insmod (somewhere)/usbip-core.ko
trois:# insmod (somewhere)/usbip-host.ko
trois:# usbipd -D

--------------------------------------------------------------------------------------------------------
Expand Down Expand Up @@ -132,7 +132,7 @@ Iterate the above operation for other devices if you like.
First, let's list available remote devices which are marked as exportable in
the server host.

deux:# insmod (somewhere)/usbip_common_mod.ko
deux:# insmod (somewhere)/usbip-core.ko
deux:# insmod (somewhere)/vhci_hcd.ko

deux:# usbip --list 10.0.0.3
Expand Down Expand Up @@ -200,7 +200,7 @@ Detach the imported device.
[Check List]
- See Debug Tips in the project wiki.
- http://usbip.wiki.sourceforge.net/how-to-debug-usbip
- usbip.ko must be bound to the target device.
- usbip-host.ko must be bound to the target device.
- See /proc/bus/usb/devices and find "Driver=..." lines of the device.
- Shutdown firewall.
- usbip now uses TCP port 3240.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Print usb devices and their drivers in parseable mode
- List driver assignments for usb devices.

server:# usbip_bind_driver --usbip 1-2
- Bind usbip.ko to the device of busid 1-2.
- Bind usbip-host.ko to the device of busid 1-2.
- A usb device 1-2 is now exportable to other hosts!

server:# usbip_bind_driver --other 1-2
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/usbip/userspace/doc/usbipd.8
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ USB/IP client can connect and use exported devices.
- List driver assignments for usb devices.

server:# usbip_bind_driver --usbip 1-2
- Bind usbip.ko to the device of busid 1-2.
- Bind usbip-host.ko to the device of busid 1-2.
- A usb device 1-2 is now exportable to other hosts!
- Use 'usbip_bind_driver --other 1-2' when you want to shutdown exporting and use the device locally.

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/usbip/userspace/libsrc/stub_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static struct sysfs_driver *open_sysfs_stub_driver(void)

stub_driver = sysfs_open_driver_path(stub_driver_path);
if (!stub_driver) {
err("usbip_common_mod.ko and usbip.ko must be loaded");
err("usbip-core.ko and usbip-host.ko must be loaded");
return NULL;
}

Expand Down Expand Up @@ -199,7 +199,7 @@ static int refresh_exported_devices(void)

suinf_list = sysfs_get_driver_devices(stub_driver->sysfs_driver);
if (!suinf_list) {
printf("Bind usbip.ko to a usb device to be exportable!\n");
printf("Bind usbip-host.ko to a usb device to be exportable!\n");
goto bye;
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/usbip/userspace/libsrc/vhci_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static int get_hc_busid(char *sysfs_mntpath, char *hc_busid)
sdriver = sysfs_open_driver_path(sdriver_path);
if (!sdriver) {
info("%s is not found", sdriver_path);
info("load usbip_common_mod.ko and vhci-hcd.ko !");
info("load usbip-core.ko and vhci-hcd.ko !");
return -1;
}

Expand Down

0 comments on commit 6a5cea2

Please sign in to comment.