summaryrefslogtreecommitdiffstats
path: root/prebuilt/common/bin/handle_compcache
blob: 21822d0fa510191b49826dfab89444eefd62a12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/system/bin/sh
#
# Compcache handler
# Decides whether or not Compcache is enabled
#
MEMTOTAL=$( awk '{ if ($1 eq "MemTotal:") print $2 ;exit }' </proc/meminfo )

if [ `getprop persist.service.zram` == 1 ];
then
  PROP=`getprop ro.zram.default`
  setprop persist.service.zram $PROP
fi

if [ -e /data/property/persist.service.zram ];
then
  PROP=`getprop persist.service.zram`
else
  PROP=`getprop ro.zram.default`
  setprop persist.service.zram $PROP
fi

if [ $PROP != 0 ]
then
  CCSIZE=$(($(($MEMTOTAL * $PROP)) / 100))
  `dirname $0`/compcache start $CCSIZE
else
  `dirname $0`/compcache stop
fi

exit 0