mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
cmd_part: fix typo in part command help text
All the sub-commands start with the main command name, but it was missing from one of the help texts. <panto> typos fix. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Tom Rini <trini@ti.com> Acked-by: Pantelis Antoniou <panto@antoniou-consulting.com>
This commit is contained in:
parent
1fd93c6e7d
commit
8210a343cd
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ int do_part(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||||
U_BOOT_CMD(
|
U_BOOT_CMD(
|
||||||
part, 5, 1, do_part,
|
part, 5, 1, do_part,
|
||||||
"disk partition related commands",
|
"disk partition related commands",
|
||||||
"uuid <interface> <dev>:<part>\n"
|
"part uuid <interface> <dev>:<part>\n"
|
||||||
" - print partition UUID\n"
|
" - print partition UUID\n"
|
||||||
"part uuid <interface> <dev>:<part> <varname>\n"
|
"part uuid <interface> <dev>:<part> <varname>\n"
|
||||||
" - set environment variable to partition UUID\n"
|
" - set environment variable to partition UUID\n"
|
||||||
|
|
Loading…
Reference in a new issue