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

29 lines
317 B
Plaintext
Raw Normal View History

2025-06-02 05:59:07 +00:00
#!/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