From bbf8816ab2326fd8e5d94e6693c82b2d1e6d8878 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 8 Dec 2011 21:39:52 +0000 Subject: 2011-12-08 Joel Sherrill 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. --- c/src/ChangeLog | 11 ++++++ c/src/optman/.cvsignore | 5 --- c/src/optman/Makefile.am | 77 ----------------------------------------- c/src/optman/preinstall.am | 72 -------------------------------------- c/src/optman/rtems/no-barrier.c | 22 ------------ c/src/optman/rtems/no-dpmem.c | 26 -------------- c/src/optman/rtems/no-event.c | 27 --------------- c/src/optman/rtems/no-mp.c | 36 ------------------- c/src/optman/rtems/no-msg.c | 30 ---------------- c/src/optman/rtems/no-part.c | 25 ------------- c/src/optman/rtems/no-region.c | 26 -------------- c/src/optman/rtems/no-rtmon.c | 27 --------------- c/src/optman/rtems/no-sem.c | 30 ---------------- c/src/optman/rtems/no-signal.c | 28 --------------- c/src/optman/rtems/no-timer.c | 29 ---------------- c/src/optman/sapi/no-ext.c | 25 ------------- c/src/optman/sapi/no-io.c | 28 --------------- 17 files changed, 11 insertions(+), 513 deletions(-) delete mode 100644 c/src/optman/.cvsignore delete mode 100644 c/src/optman/Makefile.am delete mode 100644 c/src/optman/preinstall.am delete mode 100644 c/src/optman/rtems/no-barrier.c delete mode 100644 c/src/optman/rtems/no-dpmem.c delete mode 100644 c/src/optman/rtems/no-event.c delete mode 100644 c/src/optman/rtems/no-mp.c delete mode 100644 c/src/optman/rtems/no-msg.c delete mode 100644 c/src/optman/rtems/no-part.c delete mode 100644 c/src/optman/rtems/no-region.c delete mode 100644 c/src/optman/rtems/no-rtmon.c delete mode 100644 c/src/optman/rtems/no-sem.c delete mode 100644 c/src/optman/rtems/no-signal.c delete mode 100644 c/src/optman/rtems/no-timer.c delete mode 100644 c/src/optman/sapi/no-ext.c delete mode 100644 c/src/optman/sapi/no-io.c 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 + + 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 * 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 -#include -#include -#include -#include - -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 -#include -#include -#include -#include - -#include -#include -#include - -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 -#include -#include -#include -#include -#include -#include -#include -#include - -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 -#if !defined(RTEMS_MULTIPROCESSING) -/* char rtems_no_multiprocessing; */ -#else -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include -#include - -#include -#include - -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 -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include - -#include -#include -#include - -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 -#include -#include -#include -#include -#include -#include - -#include -#include - -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 -#include -#include -#include -#include -#include -#include - -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 -#include -#include -#include -#include -#include - -void _IO_Manager_initialization(void) -{ -} - -void _IO_Initialize_all_drivers(void) -{ -} -- cgit v1.2.3