You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
243 B

#!/system/bin/sh
#
# Compcache handler
# Decides whether or not Compcache is enabled
#
PROP=$(cat /data/property/persist.service.compcache)
if [ $PROP == 1 ]
then
`dirname $0`/compcache start
else
`dirname $0`/compcache stop
fi
exit 0