diff --git a/makedumpfile.8 b/makedumpfile.8
index 4733420..f607bf5 100644
--- a/makedumpfile.8
+++ b/makedumpfile.8
@@ -121,8 +121,8 @@ configuration, you need to use --diskset option.
.SH OPTIONS
.TP
-fB-cfR
-Compress dump data by each page.
+fB-c,-lfR
+Compress dump data by each page using zlib for -c option or lzo for -l option.
.br
A user cannot specify this option with -E option, because the ELF format does
not support compressed data.
@@ -196,7 +196,7 @@ by dump_level 11, makedumpfile retries it by dump_level 31.
fB-EfR
Create fIDUMPFILEfR in the ELF format.
.br
-This option cannot be specified with -c option, because the ELF format does not
+This option cannot be specified with either of -c option or -l option, because the ELF format does not
support compressed data.
.br
.B Example:
diff --git a/print_info.c b/print_info.c
index 31460b7..237892e 100644
--- a/print_info.c
+++ b/print_info.c
@@ -35,15 +35,15 @@ print_usage(void)
MSG("
");
MSG("Usage:
");
MSG(" Creating DUMPFILE:
");
- MSG(" # makedumpfile [-c|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE DUMPFILE
");
+ MSG(" # makedumpfile [-c|-l|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE DUMPFILE
");
MSG("
");
MSG(" Creating DUMPFILE with filtered kernel data specified through filter config
");
MSG(" file:
");
- MSG(" # makedumpfile [-c|-E] [-d DL] -x VMLINUX --config FILTERCONFIGFILE VMCORE
");
+ MSG(" # makedumpfile [-c|-l|-E] [-d DL] -x VMLINUX --config FILTERCONFIGFILE VMCORE
");
MSG(" DUMPFILE
");
MSG("
");
MSG(" Outputting the dump data in the flattened format to the standard output:
");
- MSG(" # makedumpfile -F [-c|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE
");
+ MSG(" # makedumpfile -F [-c|-l|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE
");
MSG("
");
MSG(" Rearranging the dump data in the flattened format to a readable DUMPFILE:
");
MSG(" # makedumpfile -R DUMPFILE
");
@@ -70,14 +70,14 @@ print_usage(void)
MSG("
");
MSG("
");
MSG(" Creating DUMPFILE from multiple VMCOREs generated on sadump diskset configuration:
");
- MSG(" # makedumpfile [-c] [-d DL] -x VMLINUX --diskset=VMCORE1 --diskset=VMCORE2
");
+ MSG(" # makedumpfile [-c|-l] [-d DL] -x VMLINUX --diskset=VMCORE1 --diskset=VMCORE2
");
MSG(" [--diskset=VMCORE3 ..] DUMPFILE
");
MSG("
");
MSG("
");
MSG("Available options:
");
- MSG(" [-c]:
");
- MSG(" Compress dump data by each page.
");
- MSG(" A user cannot specify this option with -E option, because the ELF format
");
+ MSG(" [-c|-l]:
");
+ MSG(" Compress dump data by each page using zlib for -c option and lzo for -l option.
");
+ MSG(" A user cannot specify either of these options with -E option, because the ELF format
");
MSG(" does not support compressed data.
");
MSG(" THIS IS ONLY FOR THE CRASH UTILITY.
");
MSG("
");
@@ -103,7 +103,7 @@ print_usage(void)
MSG("
");
MSG(" [-E]:
");
MSG(" Create DUMPFILE in the ELF format.
");
- MSG(" This option cannot be specified with -c option, because the ELF
");
+ MSG(" This option cannot be specified with either of -c option or -l option, because the ELF
");
MSG(" format does not support compressed data.
");
MSG("
");
MSG(" [-x VMLINUX]:
");
--
Crash-utility mailing list
Crash-utility@redhat.com
https://www.redhat.com/mailman/listinfo/crash-utility
02-23-2012, 12:34 AM
HATAYAMA Daisuke
Add help and manual messages about LZO compression support
diff --git a/makedumpfile.8 b/makedumpfile.8
index 4733420..f607bf5 100644
--- a/makedumpfile.8
+++ b/makedumpfile.8
@@ -121,8 +121,8 @@ configuration, you need to use --diskset option.
.SH OPTIONS
.TP
-fB-cfR
-Compress dump data by each page.
+fB-c,-lfR
+Compress dump data by each page using zlib for -c option or lzo for -l option.
.br
A user cannot specify this option with -E option, because the ELF format does
not support compressed data.
@@ -196,7 +196,7 @@ by dump_level 11, makedumpfile retries it by dump_level 31.
fB-EfR
Create fIDUMPFILEfR in the ELF format.
.br
-This option cannot be specified with -c option, because the ELF format does not
+This option cannot be specified with either of -c option or -l option, because the ELF format does not
support compressed data.
.br
.B Example:
diff --git a/print_info.c b/print_info.c
index 31460b7..237892e 100644
--- a/print_info.c
+++ b/print_info.c
@@ -35,15 +35,15 @@ print_usage(void)
MSG("
");
MSG("Usage:
");
MSG(" Creating DUMPFILE:
");
- MSG(" # makedumpfile [-c|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE DUMPFILE
");
+ MSG(" # makedumpfile [-c|-l|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE DUMPFILE
");
MSG("
");
MSG(" Creating DUMPFILE with filtered kernel data specified through filter config
");
MSG(" file:
");
- MSG(" # makedumpfile [-c|-E] [-d DL] -x VMLINUX --config FILTERCONFIGFILE VMCORE
");
+ MSG(" # makedumpfile [-c|-l|-E] [-d DL] -x VMLINUX --config FILTERCONFIGFILE VMCORE
");
MSG(" DUMPFILE
");
MSG("
");
MSG(" Outputting the dump data in the flattened format to the standard output:
");
- MSG(" # makedumpfile -F [-c|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE
");
+ MSG(" # makedumpfile -F [-c|-l|-E] [-d DL] [-x VMLINUX|-i VMCOREINFO] VMCORE
");
MSG("
");
MSG(" Rearranging the dump data in the flattened format to a readable DUMPFILE:
");
MSG(" # makedumpfile -R DUMPFILE
");
@@ -70,14 +70,14 @@ print_usage(void)
MSG("
");
MSG("
");
MSG(" Creating DUMPFILE from multiple VMCOREs generated on sadump diskset configuration:
");
- MSG(" # makedumpfile [-c] [-d DL] -x VMLINUX --diskset=VMCORE1 --diskset=VMCORE2
");
+ MSG(" # makedumpfile [-c|-l] [-d DL] -x VMLINUX --diskset=VMCORE1 --diskset=VMCORE2
");
MSG(" [--diskset=VMCORE3 ..] DUMPFILE
");
MSG("
");
MSG("
");
MSG("Available options:
");
- MSG(" [-c]:
");
- MSG(" Compress dump data by each page.
");
- MSG(" A user cannot specify this option with -E option, because the ELF format
");
+ MSG(" [-c|-l]:
");
+ MSG(" Compress dump data by each page using zlib for -c option and lzo for -l option.
");
+ MSG(" A user cannot specify either of these options with -E option, because the ELF format
");
MSG(" does not support compressed data.
");
MSG(" THIS IS ONLY FOR THE CRASH UTILITY.
");
MSG("
");
@@ -103,7 +103,7 @@ print_usage(void)
MSG("
");
MSG(" [-E]:
");
MSG(" Create DUMPFILE in the ELF format.
");
- MSG(" This option cannot be specified with -c option, because the ELF
");
+ MSG(" This option cannot be specified with either of -c option or -l option, because the ELF
");
MSG(" format does not support compressed data.
");
MSG("
");
MSG(" [-x VMLINUX]:
");
--
Crash-utility mailing list
Crash-utility@redhat.com
https://www.redhat.com/mailman/listinfo/crash-utility