diff options
author | Stephen Warren <swarren@nvidia.com> | 2014-05-07 12:19:00 -0600 |
---|---|---|
committer | Pantelis Antoniou <panto@antoniou-consulting.com> | 2014-05-23 12:00:18 +0300 |
commit | 8210a343cd1eb586b72ff396563db15bffed25c5 (patch) | |
tree | ed36bab1b9435635d18847bf3792dfd57bc8bd47 /common | |
parent | 1fd93c6e7d8a1e4d6261058cefab11b875ded252 (diff) | |
download | u-boot-imx-8210a343cd1eb586b72ff396563db15bffed25c5.zip u-boot-imx-8210a343cd1eb586b72ff396563db15bffed25c5.tar.gz u-boot-imx-8210a343cd1eb586b72ff396563db15bffed25c5.tar.bz2 |
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>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_part.c b/common/cmd_part.c index 1424854..c84bc27 100644 --- a/common/cmd_part.c +++ b/common/cmd_part.c @@ -82,7 +82,7 @@ int do_part(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) U_BOOT_CMD( part, 5, 1, do_part, "disk partition related commands", - "uuid <interface> <dev>:<part>\n" + "part uuid <interface> <dev>:<part>\n" " - print partition UUID\n" "part uuid <interface> <dev>:<part> <varname>\n" " - set environment variable to partition UUID\n" |