forked from Imagelibrary/rtems
2002-08-05 Joel Sherrill <joel@OARcorp.com>
* Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore and required that the m68k optimized memcpy be moved to libcpu. * wrapup/Makefile.am: Pick up memcpy.o from libcpu.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
BSP_PIECES = startup clock console spurious timer
|
BSP_PIECES = startup clock console spurious timer
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
BSP_PIECES = startup clock console spurious timer
|
BSP_PIECES = startup clock console spurious timer
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -10,7 +10,8 @@ endif
|
|||||||
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ BSP_PIECES = startup clock console timer
|
|||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
|
|||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -8,8 +8,9 @@ CPU_PIECES = clock console timer mbus
|
|||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
$(foreach piece, $(CPU_PIECES), $(wildcard \
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
|
||||||
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(piece)/$(ARCH)/$(piece).rel)) \
|
$(foreach piece, $(CPU_PIECES), $(wildcard \
|
||||||
|
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(piece)/$(ARCH)/$(piece).rel)) \
|
||||||
$(wildcard \
|
$(wildcard \
|
||||||
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
BSP_PIECES = startup clock console spurious timer
|
BSP_PIECES = startup clock console spurious timer
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ BSP_PIECES = startup clock console timer tod $(NETWORKING_DRIVER)
|
|||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
$(wildcard ../consolex/$(ARCH)/consolex.rel) \
|
$(wildcard ../consolex/$(ARCH)/consolex.rel) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/fpsp/$(ARCH)/fpsp.rel)
|
||||||
|
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Fix bug in previous patch.
|
* start/Makefile.am: Fix bug in previous patch.
|
||||||
|
|||||||
@@ -5,7 +5,8 @@
|
|||||||
BSP_PIECES = startup clock console timer
|
BSP_PIECES = startup clock console timer
|
||||||
|
|
||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))
|
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o)
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|
||||||
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
2002-08-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
|
* Per PR260 eliminate use of make-target-options. This impacted
|
||||||
|
RTEMS allowing a distinction between the CPU32 and CPU32+ in the
|
||||||
|
SuperCore and required that the m68k optimized memcpy be moved
|
||||||
|
to libcpu.
|
||||||
|
* wrapup/Makefile.am: Pick up memcpy.o from libcpu.
|
||||||
|
|
||||||
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2002-07-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* start/Makefile.am: Eliminate PGM.
|
* start/Makefile.am: Eliminate PGM.
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ include $(top_srcdir)/../../../../../../automake/lib.am
|
|||||||
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
# bummer; have to use $foreach since % pattern subst rules only replace 1x
|
||||||
OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \
|
||||||
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o) \
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/$(RTEMS_CPU_MODEL)/$(ARCH)/*.o) \
|
||||||
|
$(wildcard ../../../../libcpu/$(RTEMS_CPU)/shared/misc/$(ARCH)/memcpy.o) \
|
||||||
$(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
|
$(foreach piece, $(GENERIC_FILES), ../../../$(piece)/$(ARCH)/$(piece).rel)
|
||||||
|
|
||||||
LIB = $(ARCH)/libbsp.a
|
LIB = $(ARCH)/libbsp.a
|
||||||
|
|||||||
Reference in New Issue
Block a user