From: Michael Prokop Date: Fri, 14 Dec 2007 19:43:50 +0000 (+0100) Subject: Use -no-progress for Squashfs build process X-Git-Tag: 0.0.13~22 X-Git-Url: https://git.grml.org/?p=grml-live.git;a=commitdiff_plain;h=cddb53de4280f7d5b8dcfb5963929b5967ac706b Use -no-progress for Squashfs build process --- diff --git a/debian/changelog b/debian/changelog index 99a456a..18915d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ grml-live (0.0.13) unstable; urgency=low * Replace mailx with bsd-mailx in GRML_FULL. http://packages.qa.debian.org/b/bsd-mailx/news/20071209T135336Z.html * Document grml2ram bootoption in grml-cheatcodes.txt + * Use -no-progress for Squashfs build process. * Remove hwtools from GRML_FULL, see #397723 * Add new packages to GRML_MEDIUM: - truecrypt-2.6.23-grml diff --git a/grml-live b/grml-live index 67b339f..e063a4a 100755 --- a/grml-live +++ b/grml-live @@ -542,8 +542,8 @@ else [ -f "$CHROOT_OUTPUT/base.tgz" ] && rm -f "$CHROOT_OUTPUT/base.tgz" # execute squashfs: - log "mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend" - mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend $SQUASHFS_OPTIONS $SQUASHFS_ZLIB + log "mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend -no-progress" + mksquashfs $CHROOT_OUTPUT/* $BUILD_OUTPUT/live/grml.squashfs -noappend -no-progress $SQUASHFS_OPTIONS $SQUASHFS_ZLIB log "Finished execution of stage 'squashfs' [$(date)]" einfo "Finished execution of stage 'squashfs'" ; eend 0 fi