summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/mrm332/config/mrm332.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/m68k/mrm332/config/mrm332.cfg')
-rw-r--r--bsps/m68k/mrm332/config/mrm332.cfg28
1 files changed, 28 insertions, 0 deletions
diff --git a/bsps/m68k/mrm332/config/mrm332.cfg b/bsps/m68k/mrm332/config/mrm332.cfg
new file mode 100644
index 0000000000..979f331399
--- /dev/null
+++ b/bsps/m68k/mrm332/config/mrm332.cfg
@@ -0,0 +1,28 @@
+#
+# Config file for the mrm332 BSP
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=m68k
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+CPU_CFLAGS = -mcpu=cpu32
+
+# using optimise for size due to small memory on target board.
+CFLAGS_OPTIMIZE_V = -Os -g -fomit-frame-pointer
+
+# FIXME: Disabled because linkcmds lacks proper KEEP() directives. See #2567.
+# The following two lines enable compiling and linking on per element.
+# CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
+# LDFLAGS = -Wl,--gc-sections
+
+define bsp-post-link
+ $(OBJCOPY) -O srec $(basename $@)$(EXEEXT) $(basename $@).srec
+ sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
+ $(PACKHEX) > $(basename $@)$(DOWNEXT)
+ rm -f $(basename $@).srec
+ $(default-bsp-post-link)
+endef
+