From 09daf22246aa9da7ece592cca9a3fe1ee7da49a8 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 2 Sep 2008 14:05:39 +0000 Subject: [PATCH] 2008-09-02 Joel Sherrill * sapi/include/confdefs.h: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS. --- cpukit/ChangeLog | 5 +++++ cpukit/sapi/include/confdefs.h | 6 ++++++ 2 files changed, 11 insertions(+) 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 + + * sapi/include/confdefs.h: Add CONFIGURE_BSP_PREREQUISITE_DRIVERS and + CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS. + 2008-09-02 Ralf Corsépius 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