summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 14:46:37 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 17:25:58 +0100
commitccea277caf476cdfef4c0f953df5a97062d8be42 (patch)
tree6e1df0ead639f6c8da6547a36b5d8d206283d33e /bin
parent3d52fbcb4fe70132ade14759d76573b471294800 (diff)
downloadlive-boot-ccea277caf476cdfef4c0f953df5a97062d8be42.tar.gz
live-boot-ccea277caf476cdfef4c0f953df5a97062d8be42.zip
Adding live-initramfs 1.87.4-1.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/live-snapshot8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/live-snapshot b/bin/live-snapshot
index b803b15..0c24f00 100755
--- a/bin/live-snapshot
+++ b/bin/live-snapshot
@@ -94,7 +94,7 @@ Help ()
echo " -d, --device: specifies the output snapshot device (default: none)."
echo " -o, --output: specifies the output image file (default: $type dependent)."
echo " -r, --resync-string: internally used to resync previous made snapshots."
- echo " -t, --type: specifies the snapshot type between \"squashfs\", \"ext2\" or \"cpio\".gz archive (default: cpio)"
+ echo " -t, --type: specifies the snapshot type between \"squashfs\", \"ext2\", \"ext3\" or \"cpio\".gz archive (default: cpio)"
echo -e "\nLook at live-snapshot(1) man page for more information."
exit 0
}
@@ -138,7 +138,7 @@ Do_snapshot ()
cpio)
( cd "${COW}" && find . -path '*.wh.*' -prune -o -print0 | cpio --quiet -o0 -H newc | gzip -9c > "${DEST}" ) || exit 1
;;
- ext2)
+ ext2|ext3)
DU_DIM="`du -ks ${COW} | cut -f1`"
REAL_DIM="`expr ${DU_DIM} + ${DU_DIM} / 20`" # Just 5% more to be sure, need something more sophistcated here...
genext2fs --size-in-blocks=${REAL_DIM} --reserved-blocks=0 --root="${COW}" "${DEST}" || exit 1
@@ -242,7 +242,7 @@ Defaults ()
TYPE="squashfs" ;;
"")
TYPE="ext2" ;;
- *.ext2)
+ *.ext2|*.ext3)
TYPE="ext2" ;;
*)
Usage "Unregognized String" ;;
@@ -257,7 +257,7 @@ Defaults ()
fi
case "${SNAP_TYPE}" in
- "cpio"|"squashfs"|"ext2")
+ "cpio"|"squashfs"|"ext2"|"ext3")
TYPE="${SNAP_TYPE}"
;;
"")