aboutsummaryrefslogtreecommitdiffstats
path: root/squashfu
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-15 11:14:59 -0500
committerDave Reisner <d@falconindy.com>2010-01-15 11:14:59 -0500
commit16851c48d41fc4931317ad3764116993fc8adda8 (patch)
tree0a4f394cfae4611409ae2d4f69a4ea4d63e5e768 /squashfu
parentdfc5d5529599deade026c350b5bb3b612e0b7925 (diff)
downloadsquashfu-16851c48d41fc4931317ad3764116993fc8adda8.tar.gz
Refine output for initial squash
Diffstat (limited to 'squashfu')
-rwxr-xr-xsquashfu5
1 files changed, 2 insertions, 3 deletions
diff --git a/squashfu b/squashfu
index 195bb39..f57b520 100755
--- a/squashfu
+++ b/squashfu
@@ -26,12 +26,11 @@ create_new_squash () {
# If making first seed, create it directly from source
if [[ $1 -eq -1 ]]; then
- info "Creating seed (this may take a while)"
+ info "Creating seed from sources (this may take a while)"
mksquashfs "${INCLUDES[@]}" "$SEED" -b 65536 -e "${EXCLUDES[@]}" >/dev/null
if [[ $? -eq 0 ]]; then
mount_squash
- info "Seed creation finished. It has been mounted at "$SQUASH_MOUNT" \
- if you would like to make sure the proper files are included"
+ info "Seed creation finished. It has been mounted at "$SQUASH_MOUNT" if you would like to make sure the proper files are included"
return 0;
else
die "There was an error creating the initial squash."