diff options
author | Michael Neuling <mikey@neuling.org> | 2006-07-27 11:26:40 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2006-07-27 11:26:40 -0600 |
commit | e1c58dba0db2e10c28b511bea772e46449c5ac12 (patch) | |
tree | 51f7024f5f914f869ecabb58a09e660ff1868a9e | |
parent | 6183c476f8203a18ee2dc35b4d611078bb5bbe12 (diff) |
ppc64 add missing usage info
I had to look through the source to remember what these are one too many
times.
Patch below is against Maneesh's kexec-tools-1.101-kdump8 patches.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Signed-off-by: Maneesh Soni <maneesh@in.ibm.com>
-rw-r--r-- | kexec/arch/ppc64/kexec-ppc64.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kexec/arch/ppc64/kexec-ppc64.c b/kexec/arch/ppc64/kexec-ppc64.c index 366f186..7211203 100644 --- a/kexec/arch/ppc64/kexec-ppc64.c +++ b/kexec/arch/ppc64/kexec-ppc64.c @@ -552,6 +552,10 @@ int file_types = sizeof(file_type) / sizeof(file_type[0]); void arch_usage(void) { + fprintf(stderr, " --command-line=<Command line> command line to append.\n"); + fprintf(stderr, " --append=<Command line> same as --command-line.\n"); + fprintf(stderr, " --ramdisk=<filename> Initial RAM disk.\n"); + fprintf(stderr, " --initrd=<filename> same as --ramdisk.\n"); fprintf(stderr, " --devicetreeblob=<filename> Specify device tree blob file.\n"); fprintf(stderr, " --elf64-core-headers Prepare core headers in ELF64 format\n"); } |