Files
poky/openembedded/packages/oh/usbinit/usb-gether
2005-09-28 17:31:21 +00:00

202 B
Executable File

#!/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