blob: c8932434f32de98f5d3387d21a0925f6da7bec81 [file] [log] [blame]
Jens Wiklanderc0bc8082018-02-27 20:25:25 +01001#!/bin/sh
2#
3# /etc/init.d/optee
4#
5# Start/stop tee-supplicant (OP-TEE normal world daemon)
6#
7case "$1" in
8 start)
9 if [ -e /usr/sbin/tee-supplicant -a -e /dev/teepriv0 ]; then
10 echo "Starting tee-supplicant..."
11 /usr/sbin/tee-supplicant &
12 exit 0
13 else
14 echo "tee-supplicant or TEE device not found"
15 exit 1
16 fi
17
18 ;;
19 stop)
20 killall tee-supplicant
21 ;;
22 status)
23 cat /dev/teepriv0 2>&1 | grep -q "Device or resource busy" || not="not "
24 echo "tee-supplicant is ${not}active"
25 ;;
26esac