linuxOS_AP05/buildroot/backup-output/init.d/S50usbdevice

20 lines
293 B
Plaintext
Raw Permalink Normal View History

2025-06-02 05:59:07 +00:00
#!/bin/sh
### BEGIN INIT INFO
# Provides: usbdevice
# Default-Start: S
# Default-Stop: K
# Description: Manage USB device functions
### END INIT INFO
case "$1" in
start|stop|restart)
/usr/bin/usbdevice $1
;;
*)
echo "Usage: [start|stop|restart]" >&2
exit 3
;;
esac
: