summaryrefslogtreecommitdiffstats
path: root/prebuilt/common/bin/verify_cache_partition_size.sh
blob: 9f8ea6495bb9d75d5463250c302816c81c155080 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
#
# Force /system dalvik-cache on /data instead of /cache if is not large enough
#

CACHESIZE=$(df -k /cache | tail -n1 | tr -s ' ' | cut -d ' ' -f2)
if [ $CACHESIZE -lt 60000 ]
then
  echo "dalvik.vm.dexopt-data-only=1" >> /system/build.prop
fi