9
0
Fork 0

Doxygen cleanups

- Remove trailing whitespaces from doxygen files
- escape '<' '>' with backslashes. Otherwise Doxygen interpretes them as
  html tags

Signed-off-by: Carsten Schlote <schlote@vahanus.net>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2008-04-04 12:14:35 +02:00
parent c228b2b84b
commit 9c9f3ffd16
3 changed files with 597 additions and 552 deletions

View File

@ -56,7 +56,7 @@ about losing support for old boards.
- device parameter support
- Each device can have a unlimited number of parameters. They can be accessed
on the command line with <devid>.<param>="...", for example
on the command line with \<devid\>.\<param\>="...", for example
'eth0.ip=192.168.0.7' or 'echo $eth0.ip'
- initcalls
@ -135,10 +135,10 @@ just like every other program:
U-Boot 2.0.0-trunk (Jun 26 2007 - 22:34:38)
loading environment from /dev/env0
uboot> /
uboot\> /
@endcode
Specifying -[ie] <file> tells U-Boot to map the file as a device
Specifying -[ie] \<file\> tells U-Boot to map the file as a device
under /dev. Files given with '-e' will appear as /dev/env[n]. Files
given with '-i' will appear as /dev/fd[n].
If U-Boot finds a valid configuration sector on /dev/env0 it will
@ -158,10 +158,10 @@ If you have mapped a cramfs image try mounting it with
@endcode
Memory can be examined as usual using md/mw commands. They both understand
the -f <file> option to tell the commands that they should work on the
the -f \<file\> option to tell the commands that they should work on the
specified files instead of /dev/mem which holds the complete address space.
Note that if you call 'md /dev/fd0' (without -f) U-Boot will segfault on
the host, because it will interpret /dev/fd0 as a number.
the host, because it will interpret /dev/fd0 as a number.
@par Directory layout
@ -186,7 +186,7 @@ lib / -> generic library functions (getopt, readline and the
common / -> common stuff
commands / -> many things previously in common/cmd_*, one command
per file
per file
net / -> Networking stuff

1119
Doxyfile

File diff suppressed because it is too large Load Diff

View File

@ -384,29 +384,29 @@ static void print_usage(const char *prgname)
*
* @section simu_run How to run U-Boot simulator
*
* $ uboot [<OPTIONS>]
* $ uboot [\<OPTIONS\>]
*
* Options can be:
*
* -i <file>
* -i \<file\>
*
* Map a <file> to U-Boot. This option can be given multiple times. The <file>s
* Map a \<file\> to U-Boot. This option can be given multiple times. The \<file\>s
* will show up as /dev/fd0 ... /dev/fdx in the U-Boot simulator.
*
* -e <file>
* -e \<file\>
*
* Map <file> to U-Boot. With this option <file>s are mapped as /dev/env0 ...
* Map \<file\> to U-Boot. With this option \<file\>s are mapped as /dev/env0 ...
* /dev/envx and thus are used as default environment. A clean file generated
* with dd will do to get started with an empty environment
*
* -O <file>
* -O \<file\>
*
* Register <file> as a console capable of doing stdout. <file> can be a
* Register \<file\> as a console capable of doing stdout. \<file\> can be a
* regular file or a fifo.
*
* -I <file>
* -I \<file\>
*
* Register <file> as a console capable of doing stdin. <file> can be a regular
* Register \<file\> as a console capable of doing stdin. \<file\> can be a regular
* file or a fifo.
*
* @section simu_dbg How to debug U-Boot simulator