9
0
Fork 0

Clean up Kconfig and source for a couple device tree commands.

Correct options listings for a couple device tree-related commands.

Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Robert P. J. Day 2014-07-04 12:18:42 -04:00 committed by Sascha Hauer
parent 24adc2b69d
commit 01d3c9a5ed
3 changed files with 4 additions and 3 deletions

View File

@ -1958,10 +1958,11 @@ config CMD_OFTREE
help
oftree - handle device trees
Usage: oftree [-lpfdn] [DTB]
Usage: oftree [-lspf] [DTB]
Options:
-l Load DTB to internal device tree
-s save internal device tree to DTB
-p probe devices from stored device tree
-f free stored device tree

View File

@ -101,7 +101,7 @@ BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(of_dump)
.cmd = do_of_dump,
BAREBOX_CMD_DESC("dump devicetree nodes")
BAREBOX_CMD_OPTS("[-f]")
BAREBOX_CMD_OPTS("[-f] [NODE]")
BAREBOX_CMD_GROUP(CMD_GRP_MISC)
BAREBOX_CMD_COMPLETE(devicetree_file_complete)
BAREBOX_CMD_HELP(cmd_of_dump_help)

View File

@ -145,7 +145,7 @@ BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(oftree)
.cmd = do_oftree,
BAREBOX_CMD_DESC("handle device trees")
BAREBOX_CMD_OPTS("[-lpfs]")
BAREBOX_CMD_OPTS("[-lspf]")
BAREBOX_CMD_GROUP(CMD_GRP_MISC)
BAREBOX_CMD_HELP(cmd_oftree_help)
BAREBOX_CMD_END