Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 632298 Details for
Bug 869300
edit-node raises stack trace
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
don't pass --comp to mksquashfs if compression is None
0001-don-t-pass-None-to-mksquashfs-869300.patch (text/plain), 882 bytes, created by
Brian Lane
on 2012-10-23 18:40:35 UTC
(
hide
)
Description:
don't pass --comp to mksquashfs if compression is None
Filename:
MIME Type:
Creator:
Brian Lane
Created:
2012-10-23 18:40:35 UTC
Size:
882 bytes
patch
obsolete
>From d100e98840401b4e0e9900e2ba64b4f0f05ff6ee Mon Sep 17 00:00:00 2001 >From: "Brian C. Lane" <bcl@redhat.com> >Date: Tue, 23 Oct 2012 11:37:56 -0700 >Subject: [PATCH] don't pass None to mksquashfs (#869300) > >If the compression type is None don't pass --comp to mksquashfs. > >Resolves: rhbz#869300 >--- > imgcreate/fs.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/imgcreate/fs.py b/imgcreate/fs.py >index d7b751b..67d4c3d 100644 >--- a/imgcreate/fs.py >+++ b/imgcreate/fs.py >@@ -42,7 +42,7 @@ def makedirs(dirname): > > def mksquashfs(in_img, out_img, compress_type): > # Allow gzip to work for older versions of mksquashfs >- if compress_type == "gzip": >+ if not compress_type or compress_type == "gzip": > args = ["/sbin/mksquashfs", in_img, out_img] > else: > args = ["/sbin/mksquashfs", in_img, out_img, "-comp", compress_type] >-- >1.7.11.7 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 869300
: 632298