blob: 8cae52fd6e2014a6038394abdd3a38f15cb275d7 [file] [log] [blame]
#!/bin/sh
case "$1" in
start)
printf "Initializing SGX graphics driver "
/usr/bin/pvrsrvinit
[ $? = 0 ] && echo "OK" || echo "FAIL"
;;
stop)
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
;;
esac