summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorKarsten Merker <merker@debian.org>2016-02-22 20:59:08 +0100
committerTom Rini <trini@konsulko.com>2016-02-24 18:44:12 -0500
commit6f6051fac360cf6ca88cfcfa3cb377778ef5742c (patch)
tree7dadf779cca46b06f774722e932fffaacc9861ac /cmd
parente8aebc4744e4eace3329d0536428f0d27893077b (diff)
booti: Help text rework.
Fix spelling errors in the "booti" help text and bring it more in line with the bootm/bootz help texts. Signed-off-by: Karsten Merker <merker@debian.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/bootm.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/cmd/bootm.c b/cmd/bootm.c
index 48738ac605..555ccbc379 100644
--- a/cmd/bootm.c
+++ b/cmd/bootm.c
@@ -755,15 +755,15 @@ int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
#ifdef CONFIG_SYS_LONGHELP
static char booti_help_text[] =
"[addr [initrd[:size]] [fdt]]\n"
- " - boot Linux Image stored in memory\n"
+ " - boot arm64 Linux Image stored in memory\n"
"\tThe argument 'initrd' is optional and specifies the address\n"
- "\tof the initrd in memory. The optional argument ':size' allows\n"
- "\tspecifying the size of RAW initrd.\n"
+ "\tof an initrd in memory. The optional parameter ':size' allows\n"
+ "\tspecifying the size of a RAW initrd.\n"
#if defined(CONFIG_OF_LIBFDT)
- "\tSince booting a Linux kernelrequires a flat device-tree\n"
- "\ta third argument is required which is the address of the\n"
- "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
- "\tuse a '-' for the second argument.\n"
+ "\tSince booting a Linux kernel requires a flat device-tree, a\n"
+ "\tthird argument providing the address of the device-tree blob\n"
+ "\tis required. To boot a kernel with a device-tree blob but\n"
+ "\twithout an initrd image, use a '-' for the initrd argument.\n"
#endif
"";
#endif