summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-15 09:04:12 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-15 09:04:12 +0000
commit4f4ba92906fa9c5816278b011a0183524bdc8166 (patch)
treef9167bc8d6c385845725e1f844eca8062c06f63e /c
parent2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-4f4ba92906fa9c5816278b011a0183524bdc8166.tar.bz2
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* make/custom/rbtx4925.cfg: New (relocated from /make/custom).
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/mips/rbtx4925/ChangeLog4
-rw-r--r--c/src/lib/libbsp/mips/rbtx4925/make/custom/rbtx4925.cfg26
2 files changed, 30 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/mips/rbtx4925/ChangeLog b/c/src/lib/libbsp/mips/rbtx4925/ChangeLog
index 0053e3d6fe..75382f4274 100644
--- a/c/src/lib/libbsp/mips/rbtx4925/ChangeLog
+++ b/c/src/lib/libbsp/mips/rbtx4925/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * make/custom/rbtx4925.cfg: New (relocated from /make/custom).
+
2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
diff --git a/c/src/lib/libbsp/mips/rbtx4925/make/custom/rbtx4925.cfg b/c/src/lib/libbsp/mips/rbtx4925/make/custom/rbtx4925.cfg
new file mode 100644
index 0000000000..1d9539ca9b
--- /dev/null
+++ b/c/src/lib/libbsp/mips/rbtx4925/make/custom/rbtx4925.cfg
@@ -0,0 +1,26 @@
+#
+# Config file for the Toshiba RBTX4925 evaluation board with TX4925 cpu
+#
+# rbtx4925.cfg,v 1.21 2002/06/14 17:31:20 joel Exp
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU_MODEL=tx4925
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=rbtx4925
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+CPU_CFLAGS = -mips3 -G0 -EL
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
+
+define bsp-post-link
+ $(OBJCOPY) -O srec $@ $(basename $@).srec1
+ $(PACKHEX) < $(basename $@).srec1 > $(basename $@)$(DOWNEXT)
+ $(RM) $(basename $@).srec1
+ $(default-bsp-post-link)
+endef