docs/livecd-creator.pod | 2 +- tools/livecd-creator | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit e22f4b776f5630752b78ca32f9d46d94953fe871 Author: Bruno Wolff III <[email protected]> Date: Tue Sep 21 01:04:02 2010 -0500 Note that lzo can be used as a compressor. diff --git a/docs/livecd-creator.pod b/docs/livecd-creator.pod index e80a119..2c78892 100644 --- a/docs/livecd-creator.pod +++ b/docs/livecd-creator.pod @@ -43,7 +43,7 @@ Defines the file system label. The default is based on the configuration name. =item --compression-type=COMPRESSOR Specify a compressor recognized by mksquashfs. The default is gzip. lzma -currently requires a custom kernel to produce a functional image. If gzip +currently requires a custom kernel to produce a functional image. lzo works with 2.6.36+ kernels, but will generally take up more space than using gzip. If gzip is used, the -comp option is not passed to mksquashfs to allow the use of older versions of mksquashfs. diff --git a/tools/livecd-creator b/tools/livecd-creator index d1727c5..d352d74 100755 --- a/tools/livecd-creator +++ b/tools/livecd-creator @@ -42,7 +42,7 @@ def parse_options(args): imgopt.add_option("-f", "--fslabel", type="string", dest="fs_label", help="File system label (default based on config name)") imgopt.add_option("", "--compression-type", type="string", dest="compress_type", - help="Compression type recognized by mksquashfs (default gzip, lzma needs custom kernel)", + help="Compression type recognized by mksquashfs (default gzip, lzma needs custom kernel, lzo needs a 2.6.36+ kernel)", default="gzip") parser.add_option_group(imgopt) -- livecd mailing list [email protected] https://admin.fedoraproject.org/mailman/listinfo/livecd
