summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--make/ChangeLog5
-rw-r--r--make/Makefile.am3
-rw-r--r--make/custom/dmv152.cfg42
3 files changed, 6 insertions, 44 deletions
diff --git a/make/ChangeLog b/make/ChangeLog
index ac2dc92049..c0bf0c9f22 100644
--- a/make/ChangeLog
+++ b/make/ChangeLog
@@ -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>
* Makefile.am: Per Jiri Gaisler remove unused erc32nfp and leon1 BSP
diff --git a/make/Makefile.am b/make/Makefile.am
index b091907ec0..9552cb01c6 100644
--- a/make/Makefile.am
+++ b/make/Makefile.am
@@ -22,8 +22,7 @@ dist_rtems_make_custom_DATA = custom/default.cfg
EXTRA_DIST += custom/Cygwin-posix.cfg custom/FreeBSD-posix.cfg \
custom/HPUX9-posix.cfg custom/Linux-posix.cfg custom/Solaris-posix.cfg \
- custom/bare.cfg custom/dmv152.cfg \
- custom/ep1a.cfg custom/erc32.cfg custom/gen68302.cfg \
+ custom/bare.cfg custom/ep1a.cfg custom/erc32.cfg custom/gen68302.cfg \
custom/gen68340.cfg custom/gen68360.cfg custom/gen68360_040.cfg \
custom/uC5282.cfg custom/gba.cfg \
custom/gensh1.cfg custom/helas403.cfg custom/i386ex.cfg custom/idp.cfg \
diff --git a/make/custom/dmv152.cfg b/make/custom/dmv152.cfg
deleted file mode 100644
index 2e9a4d2f0f..0000000000
--- a/make/custom/dmv152.cfg
+++ /dev/null
@@ -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