summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-06-15 13:39:36 +0000
committerChris Lumens <clumens@redhat.com>2007-06-15 13:39:36 +0000
commit1eaf742b772cf6053f583ece8de4cb58fcba2fb6 (patch)
treee520325e81a4ddeaf240c594cb02c9568c3cbd95 /scripts
parent28ac8d90cdca3148aa5a7ef13e35b07eff12b476 (diff)
mksquashfs is stupid and wants its arguments in a particular order.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mk-images4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index c415fb858..dabf880fc 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -679,8 +679,8 @@ makeinstimage () {
echo "Running mkcramfs $CRAMBS $tmp $INSTIMGPATH/${imagename}2.img"
mkfs.cramfs $CRAMBS $tmp $TMPDIR/${imagename}2.img.$$
elif [ "$type" = "squashfs" ]; then
- echo "Running mksquashfs $tmp $TMPDIR/${imagename}2.img -all-root -no-fragments"
- mksquashfs -no-progress $tmp $TMPDIR/${imagename}2.img.$$ -all-root -no-fragments
+ echo "Running mksquashfs $tmp $TMPDIR/${imagename}2.img -all-root -no-fragments -no-progress"
+ mksquashfs $tmp $TMPDIR/${imagename}2.img.$$ -all-root -no-fragments -no-progress
chmod 0644 $TMPDIR/${imagename}2.img.$$
fi
cp $TMPDIR/${imagename}2.img.$$ $INSTIMGPATH/${imagename}2.img