summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2010-07-12 18:07:27 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-11-01 16:23:08 +0100
commit016e05cd9168111ff82a860614fe648cbfae6443 (patch)
tree41e662a8fd4a434b9744a12bf1740fc8dd6c147c /commands
parent916abc68fc5b6ce8095154a4602ea99cc7c274b8 (diff)
downloadbarebox-016e05cd9168111ff82a860614fe648cbfae6443.tar.gz
barebox-016e05cd9168111ff82a860614fe648cbfae6443.tar.xz
doc: unify documentation for 'ls'
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/ls.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/commands/ls.c b/commands/ls.c
index a02ccfe772..2005178fbf 100644
--- a/commands/ls.c
+++ b/commands/ls.c
@@ -194,10 +194,11 @@ static int do_ls(struct command *cmdtp, int argc, char *argv[])
return 0;
}
-static const __maybe_unused char cmd_ls_help[] =
-"Usage: ls [OPTION]... [FILE]...\n"
-"List information about the FILEs (the current directory by default).\n"
-" -R list subdirectories recursively\n";
+BAREBOX_CMD_HELP_START(ls)
+BAREBOX_CMD_HELP_USAGE("ls [OPTION]... [FILE]...\n")
+BAREBOX_CMD_HELP_SHORT("List information about the FILEs (the current directory by default).\n")
+BAREBOX_CMD_HELP_OPT ("-R", "list subdirectories recursively\n")
+BAREBOX_CMD_HELP_END
BAREBOX_CMD_START(ls)
.cmd = do_ls,