From 1a9a83c393b2773b197155815463dbc960bfd680 Mon Sep 17 00:00:00 2001 From: Will Woods Date: Wed, 11 May 2011 18:16:34 -0400 Subject: [PATCH] img building fixup: show mksquashfs progress --- src/pylorax/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pylorax/__init__.py b/src/pylorax/__init__.py index 4bd1ff52..3c571db6 100644 --- a/src/pylorax/__init__.py +++ b/src/pylorax/__init__.py @@ -341,8 +341,7 @@ def create_runtime(inroot, outdir): imgutils.mkext4img(inroot, joinpaths(livedir, rootfs), label="Anaconda", size=fssize) # squash the live image - imgutils.mksquashfs(livedir, joinpaths(outdir, runtime), - compressargs=["-no-progress"]) + imgutils.mksquashfs(livedir, joinpaths(outdir, runtime)) remove(livedir) # make the cmdline file os.makedirs(joinpaths(outdir, os.path.dirname(cmdline)))