summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Luebbe <jlu@pengutronix.de>2017-01-12 17:13:13 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-01-13 08:28:32 +0100
commit4f836c3c3c7ac57121775c15c945d8b82e897b3a (patch)
treef911b663398eb5af73786cf00db437e011ffcf50
parentdcedcec3751d3307e42b2a6583186b2a39f2076d (diff)
downloadbarebox-4f836c3c3c7ac57121775c15c945d8b82e897b3a.tar.gz
barebox-4f836c3c3c7ac57121775c15c945d8b82e897b3a.tar.xz
bootchooser: fix help message
The descriptions of -a and -p were mismatched. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/bootchooser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/bootchooser.c b/commands/bootchooser.c
index 91938fe551..ac763a6553 100644
--- a/commands/bootchooser.c
+++ b/commands/bootchooser.c
@@ -134,8 +134,8 @@ BAREBOX_CMD_HELP_START(bootchooser)
BAREBOX_CMD_HELP_TEXT("Control misc behaviour of the bootchooser")
BAREBOX_CMD_HELP_TEXT("")
BAREBOX_CMD_HELP_TEXT("Options:")
-BAREBOX_CMD_HELP_OPT ("-a <n|default> [TARGETS]", "set priority of given targets to 'n' or the default priority")
-BAREBOX_CMD_HELP_OPT ("-p <n|default> [TARGETS]", "set remaining attempts of given targets to 'n' or the default attempts")
+BAREBOX_CMD_HELP_OPT ("-a <n|default> [TARGETS]", "set remaining attempts of given targets to 'n' or the default attempts")
+BAREBOX_CMD_HELP_OPT ("-p <n|default> [TARGETS]", "set priority of given targets to 'n' or the default priority")
BAREBOX_CMD_HELP_OPT ("-i", "Show information about the bootchooser")
BAREBOX_CMD_HELP_OPT ("-s", "Mark the last boot successful")
BAREBOX_CMD_HELP_END