2007-05-11 Joel Sherrill <joel.sherrill@oarcorp.com>

* Makefile.am: DMV152 obsoleted.
	* custom/dmv152.cfg: Removed.
This commit is contained in:
Joel Sherrill
2007-05-11 14:02:12 +00:00
parent 9744fc97ba
commit 50f6753ea2
3 changed files with 6 additions and 44 deletions

View File

@@ -1,3 +1,8 @@
2007-05-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am: DMV152 obsoleted.
* custom/dmv152.cfg: Removed.
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com> 2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: Per Jiri Gaisler remove unused erc32nfp and leon1 BSP * Makefile.am: Per Jiri Gaisler remove unused erc32nfp and leon1 BSP

View File

@@ -22,8 +22,7 @@ dist_rtems_make_custom_DATA = custom/default.cfg
EXTRA_DIST += custom/Cygwin-posix.cfg custom/FreeBSD-posix.cfg \ EXTRA_DIST += custom/Cygwin-posix.cfg custom/FreeBSD-posix.cfg \
custom/HPUX9-posix.cfg custom/Linux-posix.cfg custom/Solaris-posix.cfg \ custom/HPUX9-posix.cfg custom/Linux-posix.cfg custom/Solaris-posix.cfg \
custom/bare.cfg custom/dmv152.cfg \ custom/bare.cfg custom/ep1a.cfg custom/erc32.cfg custom/gen68302.cfg \
custom/ep1a.cfg custom/erc32.cfg custom/gen68302.cfg \
custom/gen68340.cfg custom/gen68360.cfg custom/gen68360_040.cfg \ custom/gen68340.cfg custom/gen68360.cfg custom/gen68360_040.cfg \
custom/uC5282.cfg custom/gba.cfg \ custom/uC5282.cfg custom/gba.cfg \
custom/gensh1.cfg custom/helas403.cfg custom/i386ex.cfg custom/idp.cfg \ custom/gensh1.cfg custom/helas403.cfg custom/i386ex.cfg custom/idp.cfg \

View File

@@ -1,42 +0,0 @@
#
# Config file for the dmv152 BSP
#
# $Id$
#
include $(RTEMS_ROOT)/make/custom/default.cfg
RTEMS_CPU=m68k
RTEMS_CPU_MODEL=m68020
# This is the actual bsp directory used during the build process.
RTEMS_BSP_FAMILY=dmv152
#
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
CPU_CFLAGS =
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
# Here is the rule to actually build a $(ARCH)/foo.exe
# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
# Usage ref: src/tests/sptest/sp1/Makefile
# The following are definitions of make-exe which will work using ld as
# is currently required.
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).srec
sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
$(PACKHEX) > $@
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
$(SIZE) $(basename $@).nxe
endef
# Miscellaneous additions go here