summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-04-05 17:06:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-04-05 17:06:57 +0000
commitfe32208840b1eb215e5925a31ef79d77709082fa (patch)
tree5eddbde5f896fdb16352e69940b6e1c4c543f408 /c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
parent2010-04-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-fe32208840b1eb215e5925a31ef79d77709082fa.tar.bz2
2010-04-05 Thomas Znidar <t.znidar@embed-it.com>
* ChangeLog, Makefile.am, README, bsp_specs, configure.ac, gdb-init, preinstall.am, clock/clock.c, console/console.c, console/debugio.c, include/bsp.h, include/tm27.h, make/custom/mcf5225x.cfg, start/start.S, startup/bspclean.c, startup/bspstart.c, startup/init5225x.c, startup/linkcmds, timer/timer.c: New files.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg')
-rw-r--r--c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg33
1 files changed, 33 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg b/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
new file mode 100644
index 0000000000..1bffab942e
--- /dev/null
+++ b/c/src/lib/libbsp/m68k/mcf5225x/make/custom/mcf5225x.cfg
@@ -0,0 +1,33 @@
+#
+# Config file for the mcf5225x BSP
+#
+#Based on:
+# $Id$
+#
+# A0.01 Initial Version BDS 07/26/01
+#
+
+
+RTEMS_CPU=m68k
+RTEMS_CPU_MODEL=mcf52258
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=mcf5225x
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+CPU_CFLAGS = -mcpu=52235 $(PROJECT_FLAGS)
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -fomit-frame-pointer
+#CFLAGS_OPTIMIZE_V = -g
+
+# This defines the operations performed on the linked executable.
+# is currently required.
+define bsp-post-link
+ $(OBJCOPY) -O binary --strip-all \
+ $(basename $@).exe $(basename $@)$(DOWNEXT)
+ $(SIZE) $(basename $@).exe
+endef