summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-05-12 11:30:52 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-05-12 11:30:52 +0000
commit29328f7af2ea6befe26a66ca9a2a7af3e22f02fd (patch)
tree609f72734bccef9a761668cbc61ae284776ddd53 /doc
parent2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-29328f7af2ea6befe26a66ca9a2a7af3e22f02fd.tar.bz2
2010-05-12 Sebastian Huber <sebastian.huber@embedded-brains.de>
PR 1512/doc * shell/general.t: Add rtc. * shell/file.t: Add fdisk.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/shell/file.t29
-rw-r--r--doc/shell/general.t28
3 files changed, 63 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 50b15ee27e..dad49c1d21 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,9 @@
+2010-05-12 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ PR 1512/doc
+ * shell/general.t: Add rtc.
+ * shell/file.t: Add fdisk.
+
2010-05-09 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1512/doc
diff --git a/doc/shell/file.t b/doc/shell/file.t
index 2016569383..96010f0c9a 100644
--- a/doc/shell/file.t
+++ b/doc/shell/file.t
@@ -29,6 +29,7 @@ The RTEMS shell has the following file and directory commands:
@item @code{mount} - mount disk
@item @code{unmount} - unmount disk
@item @code{blksync} - sync the block driver
+@item @code{fdisk} - format disks
@item @code{dir} - alias for ls
@item @code{cd} - alias for chdir
@@ -1317,6 +1318,34 @@ extern rtems_shell_cmd_t rtems_shell_BLKSYNC_Command;
@c
@c
@page
+@subsection fdisk - format disk
+
+@pgindex fdisk
+
+@subheading SYNOPSYS:
+
+@example
+fdisk
+@end example
+
+@subheading CONFIGURATION:
+
+@findex CONFIGURE_SHELL_NO_COMMAND_FDISK
+@findex CONFIGURE_SHELL_COMMAND_FDISK
+
+This command is included in the default shell command set.
+When building a custom command set, define
+@code{CONFIGURE_SHELL_COMMAND_FDISK} to have this
+command included.
+
+This command can be excluded from the shell command set by
+defining @code{CONFIGURE_SHELL_NO_COMMAND_FDISK} when all
+shell commands have been configured.
+
+@c
+@c
+@c
+@page
@subsection dir - alias for ls
@pgindex dir
diff --git a/doc/shell/general.t b/doc/shell/general.t
index d7ee0ee9e7..7feed30a35 100644
--- a/doc/shell/general.t
+++ b/doc/shell/general.t
@@ -26,6 +26,7 @@ The RTEMS shell has the following general commands:
@item @code{unsetenv} - unset environment variable
@item @code{logoff} - logoff from the system
@item @code{exit} - alias for logoff command
+@item @code{rtc} - RTC driver configuration
@end itemize
@@ -956,3 +957,30 @@ This command is always present and cannot be disabled.
The @code{exit} is implemented directly in the shell interpreter.
There is no C routine associated with it.
+@c
+@c
+@c
+@page
+@subsection rtc - RTC driver configuration
+
+@pgindex rtc
+
+@subheading SYNOPSYS:
+
+@example
+rtc
+@end example
+
+@subheading CONFIGURATION:
+
+@findex CONFIGURE_SHELL_NO_COMMAND_RTC
+@findex CONFIGURE_SHELL_COMMAND_RTC
+
+This command is included in the default shell command set.
+When building a custom command set, define
+@code{CONFIGURE_SHELL_COMMAND_RTC} to have this
+command included.
+
+This command can be excluded from the shell command set by
+defining @code{CONFIGURE_SHELL_NO_COMMAND_RTC} when all
+shell commands have been configured.