#!/bin/bash start=8192 middle=532479 # start ~ middle is 256MBytes, this is boot partition # end=6291456 end=614400 total_size=$(expr $end \/ 2048) #Unit is MBytes echo total size is $total_size MBytes
echo "Deleting old image" sudo rm ${total_size}MB -r
echo "Unmounting everything that could be mounted" sudo umount * > /dev/null 2>&1 sudo losetup -d /dev/loop101 > /dev/null 2>&1
echo "Recreating mount points" mkdir rootfs mkdir boot