summaryrefslogtreecommitdiffstats
path: root/meta/packages/oh/usbinit/usb-gether
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/oh/usbinit/usb-gether')
-rwxr-xr-xmeta/packages/oh/usbinit/usb-gether19
1 files changed, 19 insertions, 0 deletions
diff --git a/meta/packages/oh/usbinit/usb-gether b/meta/packages/oh/usbinit/usb-gether
new file mode 100755
index 0000000000..590e77b22a
--- /dev/null
+++ b/meta/packages/oh/usbinit/usb-gether
@@ -0,0 +1,19 @@
1#!/bin/sh
2
3case "$1" in
4 start)
5 /sbin/depmod -a
6 /sbin/modprobe g_ether
7 ifconfig usb0 192.168.1.120
8 ;;
9
10 stop)
11
12 ;;
13
14 *)
15 echo "usage: $0 { start | stop }"
16 ;;
17esac
18
19exit 0