summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-05-31 20:04:56 +0000
committerJeremy Katz <katzj@redhat.com>2007-05-31 20:04:56 +0000
commit8f9e6161dd8c057e50b8f123dab541f9e40a034b (patch)
treeac00420bd12a16e3c3d2ffc893f558c4002794a9 /scripts
parent8f9646a9ee947dd037e8c2594fd40afd5a42df78 (diff)
downloadanaconda-8f9e6161dd8c057e50b8f123dab541f9e40a034b.tar.gz
anaconda-8f9e6161dd8c057e50b8f123dab541f9e40a034b.tar.xz
anaconda-8f9e6161dd8c057e50b8f123dab541f9e40a034b.zip
2007-05-31 Jeremy Katz <katzj@redhat.com>
* scripts/mk-images: Shut up mksquashfs.
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 ebbba83cc..8c0558d6d 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -680,7 +680,7 @@ makeinstimage () {
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 $tmp $TMPDIR/${imagename}2.img.$$ -all-root -no-fragments
+ mksquashfs -no-progress $tmp $TMPDIR/${imagename}2.img.$$ -all-root -no-fragments
chmod 0644 $TMPDIR/${imagename}2.img.$$
fi
cp $TMPDIR/${imagename}2.img.$$ $INSTIMGPATH/${imagename}2.img
@@ -718,7 +718,7 @@ makemainimage () {
elif [ $type = "squashfs" ]; then
makeproductfile $IMGPATH
echo "Running mksquashfs $IMGPATH $mmi_tmpimage -all-root -no-fragments"
- mksquashfs $IMGPATH $mmi_tmpimage -all-root -no-fragments
+ mksquashfs -no-progress $IMGPATH $mmi_tmpimage -all-root -no-fragments
chmod 0644 $mmi_tmpimage
SIZE=$(expr `cat $mmi_tmpimage | wc -c` / 1024)
elif [ $type = "cramfs" ]; then