From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heinrich Schuchardt Date: Tue, 30 Apr 2019 20:10:58 +0200 Subject: [U-Boot] [PATCH 3/4] cmd: gpt: fix and tidy up help message In-Reply-To: <20190430025347.3097-4-erosca@de.adit-jv.com> References: <20190430025347.3097-1-erosca@de.adit-jv.com> <20190430025347.3097-4-erosca@de.adit-jv.com> Message-ID: <6c8c9b9e-777e-b185-4749-1b82ea65d31f@gmx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 4/30/19 4:53 AM, Eugeniu Rosca wrote: > Apply the following changes: > - Guard the 'gpt read' command by 'ifdef CONFIG_CMD_GPT_RENAME', > since 'gpt read' is not available on CMD_GPT_RENAME=n > - Prefix the {read,swap,rename} commands with one space for consistency > - Prefix the 'guid' commands with 'gpt' for consistency > > Signed-off-by: Eugeniu Rosca Reviewed-by: Heinrich Schuchardt Non-related: doc/README.commands describes the preferred way to implement sub-commands. > --- > cmd/gpt.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/cmd/gpt.c b/cmd/gpt.c > index 638870352f40..33cda513969f 100644 > --- a/cmd/gpt.c > +++ b/cmd/gpt.c > @@ -876,21 +876,21 @@ U_BOOT_CMD(gpt, CONFIG_SYS_MAXARGS, 1, do_gpt, > " Example usage:\n" > " gpt write mmc 0 $partitions\n" > " gpt verify mmc 0 $partitions\n" > - " read \n" > - " - read GPT into a data structure for manipulation\n" > - " guid \n" > + " gpt guid \n" > " - print disk GUID\n" > - " guid \n" > + " gpt guid \n" > " - set environment variable to disk GUID\n" > " Example usage:\n" > " gpt guid mmc 0\n" > " gpt guid mmc 0 varname\n" > #ifdef CONFIG_CMD_GPT_RENAME > "gpt partition renaming commands:\n" > - "gpt swap \n" > + " gpt read \n" > + " - read GPT into a data structure for manipulation\n" > + " gpt swap \n" > " - change all partitions named name1 to name2\n" > " and vice-versa\n" > - "gpt rename \n" > + " gpt rename \n" > " - rename the specified partition\n" > " Example usage:\n" > " gpt swap mmc 0 foo bar\n" >