summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-15 09:07:56 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-15 09:07:56 +0000
commitf6a559a213e18815e9949d06cc69ad9e57248ccc (patch)
tree602efa16f8728699b3cfd72617933f8bc4754333
parent2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f6a559a213e18815e9949d06cc69ad9e57248ccc.tar.bz2
2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
* make/custom/arm1136jfs.cfg: New (relocated from /make/custom). * make/custom/arm1136js.cfg: New (relocated from /make/custom). * make/custom/arm7tdmi.cfg: New (relocated from /make/custom). * make/custom/arm920.cfg: New (relocated from /make/custom). * make/custom/armcortexa9.cfg: New (relocated from /make/custom).
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/ChangeLog8
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136jfs.cfg21
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136js.cfg20
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm7tdmi.cfg20
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm920.cfg21
-rw-r--r--c/src/lib/libbsp/arm/gdbarmsim/make/custom/armcortexa9.cfg21
6 files changed, 111 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/ChangeLog b/c/src/lib/libbsp/arm/gdbarmsim/ChangeLog
index da6fb9ab25..0898623fd6 100644
--- a/c/src/lib/libbsp/arm/gdbarmsim/ChangeLog
+++ b/c/src/lib/libbsp/arm/gdbarmsim/ChangeLog
@@ -1,3 +1,11 @@
+2009-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * make/custom/arm1136jfs.cfg: New (relocated from /make/custom).
+ * make/custom/arm1136js.cfg: New (relocated from /make/custom).
+ * make/custom/arm7tdmi.cfg: New (relocated from /make/custom).
+ * make/custom/arm920.cfg: New (relocated from /make/custom).
+ * make/custom/armcortexa9.cfg: New (relocated from /make/custom).
+
2009-10-01 Joel Sherrill <joel.sherrill@oarcorp.com>
* .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac,
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136jfs.cfg b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136jfs.cfg
new file mode 100644
index 0000000000..8efdf42b5f
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136jfs.cfg
@@ -0,0 +1,21 @@
+#
+# Config file for GDB ARM Simulator as arm1136jf-s (FPU)
+#
+# $Id$
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=arm
+RTEMS_CPU_MODEL=arm1136
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=gdbarmsim
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+# CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8
+CPU_CFLAGS = -mcpu=arm1136jf-s
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136js.cfg b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136js.cfg
new file mode 100644
index 0000000000..d610d08866
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm1136js.cfg
@@ -0,0 +1,20 @@
+#
+# Config file for GDB ARM Simulator as arm1136j-s (no FPU)
+#
+# $Id$
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=arm
+RTEMS_CPU_MODEL=arm1136
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=gdbarmsim
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+CPU_CFLAGS = -mcpu=arm1136j-s
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm7tdmi.cfg b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm7tdmi.cfg
new file mode 100644
index 0000000000..4a1c75141e
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm7tdmi.cfg
@@ -0,0 +1,20 @@
+#
+# Config file for GDB ARM Simulator as arm7tdmi
+#
+# $Id$
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=arm
+RTEMS_CPU_MODEL=arm7tdmi
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=gdbarmsim
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+CPU_CFLAGS = -mcpu=arm7tdmi
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm920.cfg b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm920.cfg
new file mode 100644
index 0000000000..d75d9e7ab2
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/arm920.cfg
@@ -0,0 +1,21 @@
+#
+# Config file for GDB ARM Simulator as arm920
+#
+# $Id$
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=arm
+RTEMS_CPU_MODEL=arm920
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=gdbarmsim
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+# CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8
+CPU_CFLAGS = -mcpu=arm920
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/c/src/lib/libbsp/arm/gdbarmsim/make/custom/armcortexa9.cfg b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/armcortexa9.cfg
new file mode 100644
index 0000000000..f224133c0f
--- /dev/null
+++ b/c/src/lib/libbsp/arm/gdbarmsim/make/custom/armcortexa9.cfg
@@ -0,0 +1,21 @@
+#
+# Config file for GDB ARM Simulator as cortex-a9
+#
+# $Id$
+#
+
+include $(RTEMS_ROOT)/make/custom/default.cfg
+
+RTEMS_CPU=arm
+RTEMS_CPU_MODEL=arm1136
+
+# This is the actual bsp directory used during the build process.
+RTEMS_BSP_FAMILY=gdbarmsim
+
+# This contains the compiler options necessary to select the CPU model
+# and (hopefully) optimize for it.
+# CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8
+CPU_CFLAGS = -mcpu=cortex-a9
+
+# optimize flag: typically -O2
+CFLAGS_OPTIMIZE_V = -O2 -g