summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-12-08 21:39:52 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-12-08 21:39:52 +0000
commitbbf8816ab2326fd8e5d94e6693c82b2d1e6d8878 (patch)
tree4ed068ccd487adc709220ab4006201644cdd3740
parent2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-bbf8816ab2326fd8e5d94e6693c82b2d1e6d8878.tar.bz2
2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>
PR 1589/build * optman/.cvsignore, optman/Makefile.am, optman/preinstall.am, optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c, optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-signal.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c, optman/sapi/no-io.c: Removed.
-rw-r--r--c/src/ChangeLog11
-rw-r--r--c/src/optman/.cvsignore5
-rw-r--r--c/src/optman/Makefile.am77
-rw-r--r--c/src/optman/preinstall.am72
-rw-r--r--c/src/optman/rtems/no-barrier.c22
-rw-r--r--c/src/optman/rtems/no-dpmem.c26
-rw-r--r--c/src/optman/rtems/no-event.c27
-rw-r--r--c/src/optman/rtems/no-mp.c36
-rw-r--r--c/src/optman/rtems/no-msg.c30
-rw-r--r--c/src/optman/rtems/no-part.c25
-rw-r--r--c/src/optman/rtems/no-region.c26
-rw-r--r--c/src/optman/rtems/no-rtmon.c27
-rw-r--r--c/src/optman/rtems/no-sem.c30
-rw-r--r--c/src/optman/rtems/no-signal.c28
-rw-r--r--c/src/optman/rtems/no-timer.c29
-rw-r--r--c/src/optman/sapi/no-ext.c25
-rw-r--r--c/src/optman/sapi/no-io.c28
17 files changed, 11 insertions, 513 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index cf9bda5337..985de9344a 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,3 +1,14 @@
+2011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ PR 1589/build
+ * optman/.cvsignore, optman/Makefile.am, optman/preinstall.am,
+ optman/rtems/no-barrier.c, optman/rtems/no-dpmem.c,
+ optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c,
+ optman/rtems/no-part.c, optman/rtems/no-region.c,
+ optman/rtems/no-rtmon.c, optman/rtems/no-sem.c,
+ optman/rtems/no-signal.c, optman/rtems/no-timer.c,
+ optman/sapi/no-ext.c, optman/sapi/no-io.c: Removed.
+
2011-12-08 Ralf Corsépius <ralf.corsepius@rtems.org>
* libchip/network/sonic.c: Make sonic_enable_interrupts,
diff --git a/c/src/optman/.cvsignore b/c/src/optman/.cvsignore
deleted file mode 100644
index f6ea23a4ee..0000000000
--- a/c/src/optman/.cvsignore
+++ /dev/null
@@ -1,5 +0,0 @@
-aclocal.m4
-autom4te*.cache
-configure
-Makefile
-Makefile.in
diff --git a/c/src/optman/Makefile.am b/c/src/optman/Makefile.am
deleted file mode 100644
index 7560f32d9f..0000000000
--- a/c/src/optman/Makefile.am
+++ /dev/null
@@ -1,77 +0,0 @@
-##
-## $Id$
-##
-
-include $(top_srcdir)/automake/compile.am
-
-EXEEXT =
-
-project_lib_PROGRAMS =
-
-project_lib_PROGRAMS += no-ext.rel
-no_ext_rel_SOURCES = sapi/no-ext.c
-no_ext_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_ext_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-io.rel
-no_io_rel_SOURCES = sapi/no-io.c
-no_io_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_io_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-barrier.rel
-no_barrier_rel_SOURCES = rtems/no-barrier.c
-no_barrier_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_barrier_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-dpmem.rel
-no_dpmem_rel_SOURCES = rtems/no-dpmem.c
-no_dpmem_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_dpmem_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-event.rel
-no_event_rel_SOURCES = rtems/no-event.c
-no_event_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_event_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-msg.rel
-no_msg_rel_SOURCES = rtems/no-msg.c
-no_msg_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_msg_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-mp.rel
-no_mp_rel_SOURCES = rtems/no-mp.c
-no_mp_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_mp_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-part.rel
-no_part_rel_SOURCES = rtems/no-part.c
-no_part_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_part_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-region.rel
-no_region_rel_SOURCES = rtems/no-region.c
-no_region_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_region_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-rtmon.rel
-no_rtmon_rel_SOURCES = rtems/no-rtmon.c
-no_rtmon_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_rtmon_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-sem.rel
-no_sem_rel_SOURCES = rtems/no-sem.c
-no_sem_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_sem_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-signal.rel
-no_signal_rel_SOURCES = rtems/no-signal.c
-no_signal_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_signal_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-project_lib_PROGRAMS += no-timer.rel
-no_timer_rel_SOURCES = rtems/no-timer.c
-no_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
-no_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-
-include $(srcdir)/preinstall.am
-include $(top_srcdir)/automake/local.am
diff --git a/c/src/optman/preinstall.am b/c/src/optman/preinstall.am
deleted file mode 100644
index 7b82b63d6b..0000000000
--- a/c/src/optman/preinstall.am
+++ /dev/null
@@ -1,72 +0,0 @@
-## Automatically generated by ampolish3 - Do not edit
-
-if AMPOLISH3
-$(srcdir)/preinstall.am: Makefile.am
- $(AMPOLISH3) $(srcdir)/Makefile.am > $(srcdir)/preinstall.am
-endif
-
-PREINSTALL_DIRS =
-DISTCLEANFILES = $(PREINSTALL_DIRS)
-
-all-local: $(TMPINSTALL_FILES)
-
-TMPINSTALL_FILES =
-CLEANFILES = $(TMPINSTALL_FILES)
-
-$(PROJECT_LIB)/$(dirstamp):
- @$(MKDIR_P) $(PROJECT_LIB)
- @: > $(PROJECT_LIB)/$(dirstamp)
-PREINSTALL_DIRS += $(PROJECT_LIB)/$(dirstamp)
-
-$(PROJECT_LIB)/no-ext.rel: no-ext.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-ext.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-ext.rel
-
-$(PROJECT_LIB)/no-io.rel: no-io.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-io.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-io.rel
-
-$(PROJECT_LIB)/no-barrier.rel: no-barrier.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-barrier.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-barrier.rel
-
-$(PROJECT_LIB)/no-dpmem.rel: no-dpmem.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-dpmem.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-dpmem.rel
-
-$(PROJECT_LIB)/no-event.rel: no-event.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-event.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-event.rel
-
-$(PROJECT_LIB)/no-msg.rel: no-msg.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-msg.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-msg.rel
-
-$(PROJECT_LIB)/no-mp.rel: no-mp.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-mp.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-mp.rel
-
-$(PROJECT_LIB)/no-part.rel: no-part.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-part.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-part.rel
-
-$(PROJECT_LIB)/no-region.rel: no-region.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-region.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-region.rel
-
-$(PROJECT_LIB)/no-rtmon.rel: no-rtmon.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-rtmon.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-rtmon.rel
-
-$(PROJECT_LIB)/no-sem.rel: no-sem.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-sem.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-sem.rel
-
-$(PROJECT_LIB)/no-signal.rel: no-signal.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-signal.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-signal.rel
-
-$(PROJECT_LIB)/no-timer.rel: no-timer.rel $(PROJECT_LIB)/$(dirstamp)
- $(INSTALL_PROGRAM) $< $(PROJECT_LIB)/no-timer.rel
-TMPINSTALL_FILES += $(PROJECT_LIB)/no-timer.rel
-
diff --git a/c/src/optman/rtems/no-barrier.c b/c/src/optman/rtems/no-barrier.c
deleted file mode 100644
index 1fe3acddc0..0000000000
--- a/c/src/optman/rtems/no-barrier.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Barrier Manager Stub
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/support.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/barrier.h>
-
-void _Barrier_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-dpmem.c b/c/src/optman/rtems/no-dpmem.c
deleted file mode 100644
index 0aa8b5257b..0000000000
--- a/c/src/optman/rtems/no-dpmem.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Dual Port Memory Manager
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/score/address.h>
-#include <rtems/score/object.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/types.h>
-#include <rtems/rtems/dpmem.h>
-
-void _Dual_ported_memory_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-event.c b/c/src/optman/rtems/no-event.c
deleted file mode 100644
index 3aaa4a84a6..0000000000
--- a/c/src/optman/rtems/no-event.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Event Manager
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/event.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/options.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-void _Event_Manager_initialization(void)
-{
-}
-
diff --git a/c/src/optman/rtems/no-mp.c b/c/src/optman/rtems/no-mp.c
deleted file mode 100644
index ec2cc05a36..0000000000
--- a/c/src/optman/rtems/no-mp.c
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Multiprocessing Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#if !defined(RTEMS_MULTIPROCESSING)
-/* char rtems_no_multiprocessing; */
-#else
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/mp.h>
-#include <rtems/score/cpu.h>
-#include <rtems/score/interr.h>
-#include <rtems/score/mpci.h>
-#include <rtems/score/mppkt.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/threadq.h>
-#include <rtems/score/tqdata.h>
-#include <rtems/score/watchdog.h>
-#include <rtems/score/sysstate.h>
-#include <rtems/score/interr.h>
-
-void _Multiprocessing_Manager_initialization(void)
-{
-}
-#endif
diff --git a/c/src/optman/rtems/no-msg.c b/c/src/optman/rtems/no-msg.c
deleted file mode 100644
index 7ccb00c7cb..0000000000
--- a/c/src/optman/rtems/no-msg.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Message Queue Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/attr.h>
-#include <rtems/score/chain.h>
-#include <rtems/score/isr.h>
-#include <rtems/rtems/message.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/options.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/wkspace.h>
-#include <rtems/score/interr.h>
-
-void _Message_queue_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-part.c b/c/src/optman/rtems/no-part.c
deleted file mode 100644
index 5348661f35..0000000000
--- a/c/src/optman/rtems/no-part.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Partition Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/score/address.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/part.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-void _Partition_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-region.c b/c/src/optman/rtems/no-region.c
deleted file mode 100644
index 51865ab53d..0000000000
--- a/c/src/optman/rtems/no-region.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * Region Manager
- *
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/options.h>
-#include <rtems/rtems/region.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-void _Region_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-rtmon.c b/c/src/optman/rtems/no-rtmon.c
deleted file mode 100644
index 832087cba7..0000000000
--- a/c/src/optman/rtems/no-rtmon.c
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Rate Monotonic Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/object.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-#include <rtems/rtems/types.h>
-#include <rtems/rtems/ratemon.h>
-
-void _Rate_monotonic_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/rtems/no-sem.c b/c/src/optman/rtems/no-sem.c
deleted file mode 100644
index e2f4649c97..0000000000
--- a/c/src/optman/rtems/no-sem.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Semaphore Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/attr.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/object.h>
-#include <rtems/rtems/options.h>
-#include <rtems/rtems/sem.h>
-#include <rtems/score/states.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/threadq.h>
-#include <rtems/score/interr.h>
-
-void _Semaphore_Manager_initialization(void)
-{
-}
-
diff --git a/c/src/optman/rtems/no-signal.c b/c/src/optman/rtems/no-signal.c
deleted file mode 100644
index 51f233cf2b..0000000000
--- a/c/src/optman/rtems/no-signal.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Signal Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-#include <rtems/rtems/asr.h>
-#include <rtems/rtems/modes.h>
-#include <rtems/rtems/signal.h>
-
-void _Signal_Manager_initialization(void)
-{
-}
-
diff --git a/c/src/optman/rtems/no-timer.c b/c/src/optman/rtems/no-timer.c
deleted file mode 100644
index 9e9bcdcb30..0000000000
--- a/c/src/optman/rtems/no-timer.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Timer Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/score/object.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/tod.h>
-#include <rtems/score/watchdog.h>
-#include <rtems/score/interr.h>
-
-#include <rtems/rtems/types.h>
-#include <rtems/rtems/timer.h>
-
-void _Timer_Manager_initialization(void)
-{
-}
-
diff --git a/c/src/optman/sapi/no-ext.c b/c/src/optman/sapi/no-ext.c
deleted file mode 100644
index 7c463fffe0..0000000000
--- a/c/src/optman/sapi/no-ext.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * Extension Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/rtems/support.h>
-#include <rtems/score/object.h>
-#include <rtems/score/thread.h>
-#include <rtems/extension.h>
-#include <rtems/score/interr.h>
-
-void _Extension_Manager_initialization(void)
-{
-}
diff --git a/c/src/optman/sapi/no-io.c b/c/src/optman/sapi/no-io.c
deleted file mode 100644
index 72ccf4ad2a..0000000000
--- a/c/src/optman/sapi/no-io.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Input/Output Manager
- *
- *
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#include <rtems/system.h>
-#include <rtems/rtems/status.h>
-#include <rtems/io.h>
-#include <rtems/score/isr.h>
-#include <rtems/score/thread.h>
-#include <rtems/score/interr.h>
-
-void _IO_Manager_initialization(void)
-{
-}
-
-void _IO_Initialize_all_drivers(void)
-{
-}