summaryrefslogtreecommitdiffstats
path: root/doc/user/conf.t
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/user/conf.t
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/user/conf.t')
-rw-r--r--doc/user/conf.t26
1 files changed, 21 insertions, 5 deletions
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