linuxOS_AP05/buildroot/backup-output/init.d/S02gpu
2025-06-02 13:59:07 +08:00

29 lines
317 B
Bash
Executable File

#!/bin/sh
#
# start gldemo
#
export XDG_RUNTIME_DIR=/var/run
if [ -f "/usr/sbin/slt_gpu_light" ]
then
GLDEMO="/usr/sbin/slt_gpu_light"
fi
case "$1" in
start)
$GLDEMO &
;;
stop)
;;
restart|reload)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart}"
;;
esac
exit 0