add support to resize and create image from trcard
This commit is contained in:
parent
48d175607e
commit
7d4bd18564
56
pishrink.sh
56
pishrink.sh
|
@ -161,7 +161,7 @@ EOF1
|
||||||
help() {
|
help() {
|
||||||
local help
|
local help
|
||||||
read -r -d '' help << EOM
|
read -r -d '' help << EOM
|
||||||
Usage: $0 [-adhrsvzZ] imagefile.img [newimagefile.img]
|
Usage: $0 [-adhrsvzZn] imagefile.img [newimagefile.img]
|
||||||
|
|
||||||
-s Don't expand filesystem when image is booted the first time
|
-s Don't expand filesystem when image is booted the first time
|
||||||
-v Be verbose
|
-v Be verbose
|
||||||
|
@ -170,6 +170,7 @@ Usage: $0 [-adhrsvzZ] imagefile.img [newimagefile.img]
|
||||||
-Z Compress image after shrinking with xz
|
-Z Compress image after shrinking with xz
|
||||||
-a Compress image in parallel using multiple cores
|
-a Compress image in parallel using multiple cores
|
||||||
-d Write debug messages in a debug log file
|
-d Write debug messages in a debug log file
|
||||||
|
-n Accept an input that is not a file (e.g. a tf card)
|
||||||
EOM
|
EOM
|
||||||
echo "$help"
|
echo "$help"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -181,8 +182,9 @@ repair=false
|
||||||
parallel=false
|
parallel=false
|
||||||
verbose=false
|
verbose=false
|
||||||
ziptool=""
|
ziptool=""
|
||||||
|
notfile=false
|
||||||
|
|
||||||
while getopts ":adhrsvzZ" opt; do
|
while getopts ":adhrsvzZn" opt; do
|
||||||
case "${opt}" in
|
case "${opt}" in
|
||||||
a) parallel=true;;
|
a) parallel=true;;
|
||||||
d) debug=true;;
|
d) debug=true;;
|
||||||
|
@ -192,6 +194,7 @@ while getopts ":adhrsvzZ" opt; do
|
||||||
v) verbose=true;;
|
v) verbose=true;;
|
||||||
z) ziptool="gzip";;
|
z) ziptool="gzip";;
|
||||||
Z) ziptool="xz";;
|
Z) ziptool="xz";;
|
||||||
|
n) notfile=true;;
|
||||||
*) help;;
|
*) help;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
@ -215,10 +218,14 @@ if [[ -z "$img" ]]; then
|
||||||
help
|
help
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -f "$img" ]]; then
|
if [ "$notfile" = false ]; then
|
||||||
|
echo "$notfile"
|
||||||
|
if [[ ! -f "$img" ]]; then
|
||||||
error $LINENO "$img is not a file..."
|
error $LINENO "$img is not a file..."
|
||||||
exit 2
|
exit 2
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if (( EUID != 0 )); then
|
if (( EUID != 0 )); then
|
||||||
error $LINENO "You need to be running as root."
|
error $LINENO "You need to be running as root."
|
||||||
exit 3
|
exit 3
|
||||||
|
@ -257,6 +264,7 @@ done
|
||||||
|
|
||||||
#Copy to new file if requested
|
#Copy to new file if requested
|
||||||
if [ -n "$2" ]; then
|
if [ -n "$2" ]; then
|
||||||
|
if [ "$notfile" = false ]; then #Skip copy if input is device
|
||||||
f="$2"
|
f="$2"
|
||||||
if [[ -n $ziptool && "${f##*.}" == "${ZIPEXTENSIONS[$ziptool]}" ]]; then # remove zip extension if zip requested because zip tool will complain about extension
|
if [[ -n $ziptool && "${f##*.}" == "${ZIPEXTENSIONS[$ziptool]}" ]]; then # remove zip extension if zip requested because zip tool will complain about extension
|
||||||
f="${f%.*}"
|
f="${f%.*}"
|
||||||
|
@ -270,6 +278,7 @@ if [ -n "$2" ]; then
|
||||||
old_owner=$(stat -c %u:%g "$1")
|
old_owner=$(stat -c %u:%g "$1")
|
||||||
chown "$old_owner" "$f"
|
chown "$old_owner" "$f"
|
||||||
img="$f"
|
img="$f"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# cleanup at script exit
|
# cleanup at script exit
|
||||||
|
@ -292,7 +301,11 @@ if [ -z "$(parted -s "$img" unit B print | grep "$partstart" | grep logical)" ];
|
||||||
else
|
else
|
||||||
parttype="logical"
|
parttype="logical"
|
||||||
fi
|
fi
|
||||||
loopback="$(losetup -f --show -o "$partstart" "$img")"
|
if [ "$notfile" = false ]; then
|
||||||
|
loopback="$(losetup -f --show -o "$partstart" "$img")"
|
||||||
|
else
|
||||||
|
loopback=""$img""2""
|
||||||
|
fi
|
||||||
tune2fs_output="$(tune2fs -l "$loopback")"
|
tune2fs_output="$(tune2fs -l "$loopback")"
|
||||||
rc=$?
|
rc=$?
|
||||||
if (( $rc )); then
|
if (( $rc )); then
|
||||||
|
@ -374,21 +387,36 @@ if (( $rc )); then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#Truncate the file
|
#Truncate the file
|
||||||
info "Shrinking image"
|
if [ "$notfile" = false ]; then
|
||||||
endresult=$(parted -ms "$img" unit B print free)
|
info "Shrinking image"
|
||||||
rc=$?
|
endresult=$(parted -ms "$img" unit B print free)
|
||||||
if (( $rc )); then
|
rc=$?
|
||||||
|
if (( $rc )); then
|
||||||
error $LINENO "parted failed with rc $rc"
|
error $LINENO "parted failed with rc $rc"
|
||||||
exit 15
|
exit 15
|
||||||
fi
|
fi
|
||||||
|
|
||||||
endresult=$(tail -1 <<< "$endresult" | cut -d ':' -f 2 | tr -d 'B')
|
endresult=$(tail -1 <<< "$endresult" | cut -d ':' -f 2 | tr -d 'B')
|
||||||
logVariables $LINENO endresult
|
logVariables $LINENO endresult
|
||||||
truncate -s "$endresult" "$img"
|
truncate -s "$endresult" "$img"
|
||||||
rc=$?
|
rc=$?
|
||||||
if (( $rc )); then
|
if (( $rc )); then
|
||||||
error $LINENO "trunate failed with rc $rc"
|
error $LINENO "trunate failed with rc $rc"
|
||||||
exit 16
|
exit 16
|
||||||
|
fi
|
||||||
|
else #Skip truncate if input is device
|
||||||
|
if [ -n "$2" ]; then
|
||||||
|
target="$2"
|
||||||
|
info "Creating image"
|
||||||
|
fdiskresult=$(fdisk -l "$img")
|
||||||
|
count=$(tail -1 <<< "$fdiskresult" | tr -s ' ' | cut -d ' ' -f 3)
|
||||||
|
bs=$(head -3 <<< "$fdiskresult" | tail -1 | tr -s ' ' | rev | cut -d ' ' -f 2 | rev)
|
||||||
|
dd if="$img" of="$target" bs="$bs" count="$count"
|
||||||
|
img="$target"
|
||||||
|
else
|
||||||
|
info "File system shrinked from $beforesize to $aftersize, no image created"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# handle compression
|
# handle compression
|
||||||
|
|
Loading…
Reference in New Issue