15 lines
215 B
Plaintext
15 lines
215 B
Plaintext
|
#!/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
|