summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJuergen Beisert <jbe@pengutronix.de>2010-03-17 14:04:45 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2010-03-18 08:11:06 +0100
commitc6f4ea0dcf2ee03e2fee8130e0fe87ecaa98efb2 (patch)
tree08584ed5b8c98709d9276a5b469e163445b7f40e /drivers
parentd1e82845b3b1add4b85c13b92360472ce43e76b2 (diff)
downloadbarebox-c6f4ea0dcf2ee03e2fee8130e0fe87ecaa98efb2.tar.gz
barebox-c6f4ea0dcf2ee03e2fee8130e0fe87ecaa98efb2.tar.xz
Make some help comments less confusing
Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/nand/nand_imx.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/nand/nand_imx.c b/drivers/nand/nand_imx.c
index bd5ec10a27..afd5637626 100644
--- a/drivers/nand/nand_imx.c
+++ b/drivers/nand/nand_imx.c
@@ -1166,11 +1166,13 @@ static int do_nand_boot_test(struct command *cmdtp, int argc, char *argv[])
}
static const __maybe_unused char cmd_nand_boot_test_help[] =
-"Usage: nand_boot_test <dest> <size>\n";
+"Usage: nand_boot_test <dest> <size>\n"
+"This command loads the booloader from the NAND memory like the reset\n"
+"routine does. Its intended for development tests only";
BAREBOX_CMD_START(nand_boot_test)
.cmd = do_nand_boot_test,
- .usage = "list a file or directory",
+ .usage = "load bootloader from NAND",
BAREBOX_CMD_HELP(cmd_nand_boot_test_help)
BAREBOX_CMD_END
#endif