diff --git a/commands/nand.c b/commands/nand.c index 7a4e995..0902f21 100644 --- a/commands/nand.c +++ b/commands/nand.c @@ -363,6 +363,6 @@ BAREBOX_CMD_START(nand) .cmd = do_nand, - .usage = "", + .usage = "NAND specific handling", BAREBOX_CMD_HELP(cmd_nand_help) BAREBOX_CMD_END diff --git a/drivers/nand/nand_imx.c b/drivers/nand/nand_imx.c index bd5ec10..afd5637 100644 --- a/drivers/nand/nand_imx.c +++ b/drivers/nand/nand_imx.c @@ -1166,11 +1166,13 @@ } static const __maybe_unused char cmd_nand_boot_test_help[] = -"Usage: nand_boot_test \n"; +"Usage: nand_boot_test \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