xref: /OK3568_Linux_fs/external/rkscript/S50usbdevice (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2### BEGIN INIT INFO
3# Provides:       usbdevice
4# Required-Start: $local_fs $syslog
5# Required-Stop:  $local_fs
6# Default-Start:  S
7# Default-Stop:   K
8# Description:    Manage USB device functions
9### END INIT INFO
10
11case "$1" in
12	start|stop|restart)
13		/usr/bin/usbdevice $1
14		;;
15	*)
16		echo "Usage: [start|stop|restart]" >&2
17		exit 3
18		;;
19esac
20
21:
22