Skip to content
Snippets Groups Projects
Commit 6f6051fa authored by Karsten Merker's avatar Karsten Merker Committed by Tom Rini
Browse files

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: default avatarKarsten Merker <merker@debian.org>
parent e8aebc47
No related branches found
No related tags found
No related merge requests found
...@@ -755,15 +755,15 @@ int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) ...@@ -755,15 +755,15 @@ int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
#ifdef CONFIG_SYS_LONGHELP #ifdef CONFIG_SYS_LONGHELP
static char booti_help_text[] = static char booti_help_text[] =
"[addr [initrd[:size]] [fdt]]\n" "[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" "\tThe argument 'initrd' is optional and specifies the address\n"
"\tof the initrd in memory. The optional argument ':size' allows\n" "\tof an initrd in memory. The optional parameter ':size' allows\n"
"\tspecifying the size of RAW initrd.\n" "\tspecifying the size of a RAW initrd.\n"
#if defined(CONFIG_OF_LIBFDT) #if defined(CONFIG_OF_LIBFDT)
"\tSince booting a Linux kernelrequires a flat device-tree\n" "\tSince booting a Linux kernel requires a flat device-tree, a\n"
"\ta third argument is required which is the address of the\n" "\tthird argument providing the address of the device-tree blob\n"
"\tdevice-tree blob. To boot that kernel without an initrd image,\n" "\tis required. To boot a kernel with a device-tree blob but\n"
"\tuse a '-' for the second argument.\n" "\twithout an initrd image, use a '-' for the initrd argument.\n"
#endif #endif
""; "";
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment