Merge "cm: updated 'download space check' init script" into gingerbread
This commit is contained in:
commit
cfe5a9e6e2
@ -5,7 +5,15 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
CACHESIZE=$(df -k /cache | tail -n1 | tr -s ' ' | cut -d ' ' -f2)
|
CACHESIZE=$(df -k /cache | tail -n1 | tr -s ' ' | cut -d ' ' -f2)
|
||||||
if [ $CACHESIZE -lt 20000 ]
|
DATAONLY=$(getprop dalvik.vm.dexopt-data-only)
|
||||||
|
if [ $DATAONLY -eq 1 ]
|
||||||
|
then
|
||||||
|
NEEDED=60000
|
||||||
|
else
|
||||||
|
NEEDED=105000
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ $CACHESIZE -lt $NEEDED ]
|
||||||
then
|
then
|
||||||
mount -o bind /data/local/download /cache/download
|
mount -o bind /data/local/download /cache/download
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user