summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-02 14:05:39 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-02 14:05:39 +0000
commit09daf22246aa9da7ece592cca9a3fe1ee7da49a8 (patch)
treeea33a411d8720cbb20ae13f1d0297e89c0b69c38
parent2008-09-02 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-09daf22246aa9da7ece592cca9a3fe1ee7da49a8.tar.bz2
2008-09-02 Joel Sherrill <joel.sherrill@oarcorp.com>
* sapi/include/confdefs.h: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS.
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/sapi/include/confdefs.h6
2 files changed, 11 insertions, 0 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index b077010100..f45412feb5 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-02 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * sapi/include/confdefs.h: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and
+ CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS.
+
2008-09-02 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1301/cpukit
diff --git a/cpukit/sapi/include/confdefs.h b/cpukit/sapi/include/confdefs.h
index 346a2ee921..34b14ecb50 100644
--- a/cpukit/sapi/include/confdefs.h
+++ b/cpukit/sapi/include/confdefs.h
@@ -511,6 +511,12 @@ extern rtems_configuration_table Configuration;
#ifdef CONFIGURE_INIT
rtems_driver_address_table Device_drivers[] = {
+ #ifdef CONFIGURE_BSP_PREREQUISITE_DRIVERS
+ CONFIGURE_BSP_PREREQUISITE_DRIVERS,
+ #endif
+ #ifdef CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS
+ CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS,
+ #endif
#ifdef CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
CONSOLE_DRIVER_TABLE_ENTRY,
#endif