summaryrefslogtreecommitdiffstats
path: root/prebuilt/common/etc/init.d/06mountdl
blob: 748171fcea3e90e16ee4fb0ad985b322df2616a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/system/bin/sh
#
# bind mount /data/local/download to /cache/download if cache
# partition is too small
#

CACHESIZE=$(df -k /cache | tail -n1 | tr -s ' ' | cut -d ' ' -f2)
if [ $CACHESIZE -lt 20000 ]
then
  mount -o bind /data/local/download /cache/download
fi

rm /cache/download/downloadfile*.apk

exit 0