summaryrefslogtreecommitdiffstats
path: root/make/custom
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-09 17:08:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-07-09 17:08:48 +0000
commitb73e57bffe6cf60b1817bb2fc244a2f0c602bd5c (patch)
tree410140b91a7df0566d9f6db8acf7d1a3aa5317cf /make/custom
parentMake sure pthread init stack size is always set. (diff)
downloadrtems-b73e57bffe6cf60b1817bb2fc244a2f0c602bd5c.tar.bz2
Patch from Jiri Gaisler <jgais@ws.estec.esa.nl>:
+ interrupt masking correction + FPU rev.B workaround + minor erc32 related fixes
Diffstat (limited to 'make/custom')
-rw-r--r--make/custom/erc32.cfg4
1 files changed, 4 insertions, 0 deletions
diff --git a/make/custom/erc32.cfg b/make/custom/erc32.cfg
index fbe3502848..efb1e2c261 100644
--- a/make/custom/erc32.cfg
+++ b/make/custom/erc32.cfg
@@ -60,6 +60,9 @@ START_BASE=startsis
# time spent in the idle task is minimized. This significantly reduces
# the wall time required to execute the RTEMS test suites.
#
+# FPU_REVB (erc32_bsp)
+# If defined, enables work-around for bug 3.14 in FPU rev.B or rev.C
+#
define make-target-options
@echo "/* #define NDEBUG 1 */ " >>$@
@@ -69,6 +72,7 @@ define make-target-options
@echo "#define CONSOLE_USE_INTERRUPTS 1" >>$@
@echo "#define CONSOLE_USE_POLLED ~CONSOLE_USE_INTERRUPTS" >>$@
@echo "/* #define SIMSPARC_FAST_IDLE 1 */" >>$@
+ @echo "#define FPU_REVB 1" >>$@
endef