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.

12 lines
323 B

#!/system/bin/sh
# Program:
# Program packs data partition to a sparse image
# History:
# 2012-11-23 First release by cw
echo data_partition_size:$1
IMG_FILE="/mnt/sdcard/databk.img"
if [ -f "$IMG_FILE" ]; then
rm "$IMG_FILE"
fi
packdata -s -l $1 /mnt/sdcard/databk.img /data && echo "PACK_OK" || echo "PACK_ERROR"