linuxOS_AP05/buildroot/package/ti-sgx-um/S80ti-sgx

15 lines
215 B
Plaintext
Raw Normal View History

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