summaryrefslogtreecommitdiff
path: root/kexec/arch/s390/kexec-image.c
diff options
context:
space:
mode:
Diffstat (limited to 'kexec/arch/s390/kexec-image.c')
-rw-r--r--kexec/arch/s390/kexec-image.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/kexec/arch/s390/kexec-image.c b/kexec/arch/s390/kexec-image.c
index bed67cd..3d57b7d 100644
--- a/kexec/arch/s390/kexec-image.c
+++ b/kexec/arch/s390/kexec-image.c
@@ -61,6 +61,7 @@ image_s390_load(int argc, char **argv, const char *kernel_buf,
{
KEXEC_OPTIONS
{"command-line", 1, 0, OPT_APPEND},
+ {"append", 1, 0, OPT_APPEND},
{"initrd", 1, 0, OPT_RAMDISK},
{0, 0, 0, 0},
};
@@ -160,7 +161,8 @@ image_s390_probe(const char *UNUSED(kernel_buf), off_t UNUSED(kernel_size))
void
image_s390_usage(void)
{
- printf("--command-line=STRING Pass a custom command line STRING to the kernel.\n"
+ printf("--command-line=STRING Set the kernel command line to STRING.\n"
+ "--append=STRING Set the kernel command line to STRING.\n"
"--initrd=FILENAME Use the file FILENAME as a ramdisk.\n"
);
}