From: Robert Schwebel <r.schwebel@pengutronix.de>
To: barebox@lists.infradead.org
Subject: More Documentation Patches
Date: Wed, 15 Dec 2010 12:51:14 +0100 [thread overview]
Message-ID: <1292413908-464-1-git-send-email-r.schwebel@pengutronix.de> (raw)
Hi,
I've added more documentation for the commands available in Barebox.
While being there, I'm collecting things where I think we should add
more examples etc; those are marked with \todos in order to find them
quickly. The series is not complete yet, more patches will follow.
The following changes since commit 615076e1fc11a86efdc76c64ce65cd336684c742:
cfi_flash_amd: Add manufacturer-specific fixups (2010-12-03 01:53:14 +0800)
are available in the git repository at:
git://git.pengutronix.de/git/rsc/barebox.git for-mainline-doc
Robert Schwebel (34):
doc: remove non-existing references
doc: add documentation for 'version' command
doc: add documentation for 'unlzo' command
doc: add documentation for 'umount' command
doc: add documentation for 'usb' command
doc: add documentation for ubi commands
doc: add documentation for 'timeout' command
doc: add documentation for 'true' command
doc: add documentation for 'sleep' command
doc: add documentation for 'rm' command
doc: add documentation for 'rmdir' command
doc: add documentation for 'mkdir' command
doc: add documentation for 'test' command
doc: add documentation for 'lsmod' command
doc: add documentation for 'readline' command
doc: add documentation for 'insmod' command
doc: add documentation for 'help' command
doc: add documentation for 'pwd' command
doc: add documentation for 'false' command
doc: add documentation for 'exec' command
doc: add documentation for 'reset' command
doc: add documentation for 'reginfo' command
doc: add documentation for 'meminfo' command
doc: add documentation for 'go' command
doc: add documentation for 'source' command
doc: add documentation for 'sh' command
doc: add documentation for 'ping' command
doc: add documentation for 'nfs' command
doc: add documentation for 'rarpboot' command
doc: add documentation for 'passwd' command
doc: add documentation for 'nand' command
doc: add documentation for 'mw' command
doc: add documentation for 'memcmp' command
doc: add documentation for 'md' command
Documentation/commands.dox | 70 +++++++++++++++++-----------------
Doxyfile | 3 +-
arch/arm/mach-omap/syslib.c | 2 +-
commands/exec.c | 5 ++
commands/false.c | 5 ++
commands/go.c | 17 ++++++--
commands/help.c | 22 +++++++---
commands/insmod.c | 13 +++++-
commands/lsmod.c | 5 ++
commands/mem.c | 90 +++++++++++++++++++++++++-----------------
commands/meminfo.c | 5 ++
commands/mkdir.c | 16 ++++++-
commands/nand.c | 22 +++++++---
commands/net.c | 19 ++++++++-
commands/passwd.c | 18 ++++++--
commands/pwd.c | 5 ++
commands/readline.c | 14 +++++-
commands/reginfo.c | 12 ++++++
commands/reset.c | 5 ++
commands/rm.c | 7 ++-
commands/rmdir.c | 7 ++-
commands/sleep.c | 5 ++
commands/test.c | 16 +++++---
commands/timeout.c | 23 +++++++----
commands/true.c | 5 ++
commands/ubi.c | 39 ++++++++++++++-----
commands/umount.c | 14 +++++-
commands/unlzo.c | 14 +++++-
commands/version.c | 15 +++++++-
common/hush.c | 37 ++++++++++-------
drivers/usb/core/usb.c | 14 +++++-
net/nfs.c | 14 +++++-
net/ping.c | 16 ++++++++
33 files changed, 407 insertions(+), 167 deletions(-)
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next reply other threads:[~2010-12-15 11:51 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-15 11:51 Robert Schwebel [this message]
2010-12-15 11:51 ` [PATCH 01/34] doc: remove non-existing references Robert Schwebel
2010-12-15 11:51 ` [PATCH 02/34] doc: add documentation for 'version' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 03/34] doc: add documentation for 'unlzo' command Robert Schwebel
2010-12-15 19:16 ` Sascha Hauer
2010-12-15 11:51 ` [PATCH 04/34] doc: add documentation for 'umount' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 05/34] doc: add documentation for 'usb' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 06/34] doc: add documentation for ubi commands Robert Schwebel
2010-12-15 11:51 ` [PATCH 07/34] doc: add documentation for 'timeout' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 08/34] doc: add documentation for 'true' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 09/34] doc: add documentation for 'sleep' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 10/34] doc: add documentation for 'rm' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 11/34] doc: add documentation for 'rmdir' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 12/34] doc: add documentation for 'mkdir' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 13/34] doc: add documentation for 'test' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 14/34] doc: add documentation for 'lsmod' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 15/34] doc: add documentation for 'readline' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 16/34] doc: add documentation for 'insmod' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 17/34] doc: add documentation for 'help' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 18/34] doc: add documentation for 'pwd' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 19/34] doc: add documentation for 'false' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 20/34] doc: add documentation for 'exec' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 21/34] doc: add documentation for 'reset' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 22/34] doc: add documentation for 'reginfo' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 23/34] doc: add documentation for 'meminfo' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 24/34] doc: add documentation for 'go' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 25/34] doc: add documentation for 'source' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 26/34] doc: add documentation for 'sh' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 27/34] doc: add documentation for 'ping' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 28/34] doc: add documentation for 'nfs' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 29/34] doc: add documentation for 'rarpboot' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 30/34] doc: add documentation for 'passwd' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 31/34] doc: add documentation for 'nand' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 32/34] doc: add documentation for 'mw' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 33/34] doc: add documentation for 'memcmp' command Robert Schwebel
2010-12-15 11:51 ` [PATCH 34/34] doc: add documentation for 'md' command Robert Schwebel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1292413908-464-1-git-send-email-r.schwebel@pengutronix.de \
--to=r.schwebel@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox