blob: 427826a68452c80234ea1dbceafb2e901b997ade [file] [log] [blame]
#!/bin/sh
# Only work son TV boxes
if ! is-tv-box; then
exit 0
fi
. /etc/utils.sh
case "$1" in
start)
/app/client/runmiracast 2>&1 | logos miracast &
;;
stop)
pkillwait -x StandaloneWFDPlayer
pkillwait -x runmiracast
;;
restart)
$0 stop; $0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac