Make raw-xz faster by using xz threads (patch #2)
This patch only enabled xz threads -T0, and maximum compresion -9. This patch removed the -f (--force) in previous patch. Koji PR #380 Signed-off-by: jdisnard <jdisnard@redhat.com>
This commit is contained in:
parent
b0c6d3d42d
commit
d988ff67be
1 changed files with 1 additions and 1 deletions
|
|
@ -3698,7 +3698,7 @@ class BaseImageTask(OzImageTask):
|
|||
'xz-cp-%s-%s.log' % (format, self.arch))
|
||||
log_output(self.session, cmd[0], cmd, conlog, self.getUploadDir(),
|
||||
logerror=1)
|
||||
cmd = ['/usr/bin/xz', '-z9fT0', rawimg]
|
||||
cmd = ['/usr/bin/xz', '-z9T0', rawimg]
|
||||
conlog = os.path.join(self.workdir,
|
||||
'xz-%s-%s.log' % (format, self.arch))
|
||||
log_output(self.session, cmd[0], cmd, conlog, self.getUploadDir(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue