summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-02 14:05:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-02 14:05:26 +0000
commit3d92d46edad87b32f9901b215bc48383df103c9b (patch)
treef6ca96c82437ccfa2771bf4d4e29d2fea482c9f0 /doc
parentEliminate rtems_boolean. (diff)
downloadrtems-3d92d46edad87b32f9901b215bc48383df103c9b.tar.bz2
2008-09-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* user/conf.t: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/user/conf.t26
2 files changed, 26 insertions, 5 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index b5c7ff0e70..95a9b24380 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-02 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * user/conf.t: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and
+ CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS.
+
2008-08-27 Joel Sherrill <joel.sherrill@oarcorp.com>
* user/object.t: Correct order of arguments.
diff --git a/doc/user/conf.t b/doc/user/conf.t
index 51301fa28e..b5e2868c63 100644
--- a/doc/user/conf.t
+++ b/doc/user/conf.t
@@ -442,12 +442,28 @@ This device driver simply provides entry points that return
successful and is primarily a test fixture.
By default, this is not defined.
+@findex CONFIGURE_BSP_PREREQUISITE_DRIVERS
+@item @code{CONFIGURE_BSP_PREREQUISITE_DRIVERS} is defined if the
+BSP has device drivers it needs to include in the Device Driver
+Table. This should be defined to the set of device driver entries that
+will be placed in the table at the @b{FRONT} of the Device Driver Table
+and initialized before any other drivers @b{INCLUDING} any application
+prerequisite drivers. By default,this is not defined.
+
+@findex CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS
+@item @code{CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS} is defined if the
+application has device drivers it needs to include in the Device Driver
+Table. This should be defined to the set of device driver entries that
+will be placed in the table at the @b{FRONT} of the Device Driver Table
+and initialized before any other drivers @b{EXCEPT} any BSP prerequisite
+drivers. By default,this is not defined.
+
@findex CONFIGURE_APPLICATION_EXTRA_DRIVERS
-@item @code{CONFIGURE_APPLICATION_EXTRA_DRIVERS}
-is defined if the application has device drivers it needs to
-include in the Device Driver Table. This should be defined
-to the set of device driver entries that will be placed in
-the table. By default, this is not defined.
+@item @code{CONFIGURE_APPLICATION_EXTRA_DRIVERS} is defined if the
+application has device drivers it needs to include in the Device Driver
+Table. This should be defined to the set of device driver entries that
+will be placed in the table at the @b{END} of the Device Driver Table.
+By default,this is not defined.
@end itemize