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 @@
+#!/bin/sh
+
+case "$1" in
+ start)
+ /sbin/depmod -a
+ /sbin/modprobe g_ether
+ ifconfig usb0 192.168.1.120
+ ;;
+
+ stop)
+
+ ;;
+
+ *)
+ echo "usage: $0 { start | stop }"
+ ;;
+esac
+
+exit 0