summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-27 16:36:43 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-29 20:59:21 +0100
commit6dbe704263ebcfc243bcce7af0b718c67bdbd54c (patch)
treea00bd02eb1cd8f4ef18f652429c5352e156b06da /commands
parent19a0c370aa0d575a17679a76f226b591e68c2ff7 (diff)
downloadbarebox-6dbe704263ebcfc243bcce7af0b718c67bdbd54c.tar.gz
barebox-6dbe704263ebcfc243bcce7af0b718c67bdbd54c.tar.xz
bootm: fix typo, update help str
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/bootm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/bootm.c b/commands/bootm.c
index 9ae4e2287c..a486b508dc 100644
--- a/commands/bootm.c
+++ b/commands/bootm.c
@@ -122,7 +122,7 @@ int register_image_handler(struct image_handler *handler)
/*
* generate a image_handle from a multi_image
- * this image_handle can be free by unmap_image
+ * this image_handle can be freed by unmap_image
*/
static struct image_handle *get_fake_image_handle(struct image_data *data, int num)
{
@@ -231,7 +231,7 @@ err_out:
}
BAREBOX_CMD_HELP_START(bootm)
-BAREBOX_CMD_HELP_USAGE("bootm [-n] image\n")
+BAREBOX_CMD_HELP_USAGE("bootm [OPTIONS] image\n")
BAREBOX_CMD_HELP_SHORT("Boot an application image.\n")
BAREBOX_CMD_HELP_OPT ("-n", "Do not verify the image (speeds up boot process)\n")
BAREBOX_CMD_HELP_OPT ("-r <initrd>","specify an initrd image\n")