From f86eba03fa2314e13ff91591ad762d0df2c6e9fe Mon Sep 17 00:00:00 2001 From: Adarsh Babu Kalepalli Date: Wed, 30 Jun 2021 23:57:45 +0530 Subject: cmd:Elaborate 'blkcache' cmd HELP statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit HELP description is provided for ‘configure’ sub-command of ‘blkcache’. Signed-off-by: Adarsh Babu Kalepalli Reviewed-by: Simon Glass --- cmd/blkcache.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/blkcache.c b/cmd/blkcache.c index 25f252e455e..47ea1ec0b93 100644 --- a/cmd/blkcache.c +++ b/cmd/blkcache.c @@ -83,5 +83,6 @@ U_BOOT_CMD( blkcache, 4, 0, do_blkcache, "block cache diagnostics and control", "show - show and reset statistics\n" - "blkcache configure blocks entries\n" + "blkcache configure " + "- set max blocks per entry and max cache entries\n" ); -- cgit v1.2.3 From 1fdafebdfc948f87af40980c6c5135afd96ecdf1 Mon Sep 17 00:00:00 2001 From: Adarsh Babu Kalepalli Date: Mon, 24 May 2021 13:35:39 +0530 Subject: cmd:(cosmetic)Mentioned in 'chpart' command HELP text that it is for MTD devices Modified the help text of 'chpart' command ,mentioning that it is for MTD devices. Signed-off-by: Adarsh Babu Kalepalli Reviewed-by: Simon Glass --- cmd/mtdparts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd') diff --git a/cmd/mtdparts.c b/cmd/mtdparts.c index ed373a8c4da..3048700778b 100644 --- a/cmd/mtdparts.c +++ b/cmd/mtdparts.c @@ -2077,9 +2077,9 @@ static int do_mtdparts(struct cmd_tbl *cmdtp, int flag, int argc, /***************************************************/ U_BOOT_CMD( chpart, 2, 0, do_chpart, - "change active partition", + "change active partition of a MTD device", "part-id\n" - " - change active partition (e.g. part-id = nand0,1)" + " - change active partition (e.g. part-id = nand0,1) of a MTD device" ); #ifdef CONFIG_SYS_LONGHELP -- cgit v1.2.3