summaryrefslogtreecommitdiffstats
path: root/c/src/aclocal/bsp-bootcard-options.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 19:50:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 19:50:37 +0000
commit12d02b8e91355fba138f26bc3e771ded0b89f426 (patch)
treef3ebf70f19d9e2f074ebf3a11b1c5ef347555dbd /c/src/aclocal/bsp-bootcard-options.m4
parent2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-12d02b8e91355fba138f26bc3e771ded0b89f426.tar.bz2
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* aclocal/bsp-bootcard-options.m4: New file. * aclocal/bsp-bootcards-handles-ram-allocation.m4: Removed.
Diffstat (limited to 'c/src/aclocal/bsp-bootcard-options.m4')
-rw-r--r--c/src/aclocal/bsp-bootcard-options.m419
1 files changed, 19 insertions, 0 deletions
diff --git a/c/src/aclocal/bsp-bootcard-options.m4 b/c/src/aclocal/bsp-bootcard-options.m4
new file mode 100644
index 0000000000..80972abe79
--- /dev/null
+++ b/c/src/aclocal/bsp-bootcard-options.m4
@@ -0,0 +1,19 @@
+dnl $Id$
+dnl
+
+dnl BSP_BOOTCARD_OPTIONS - some autoconf voodoo to
+dnl provide each BSPs configure script with the standard options allowed
+dnl by boot_card(). Currently, this is
+dnl
+dnl - Can optionally dirty memory at boot time.
+dnl
+
+dnl To be used in bsp-configure scripts
+
+AC_DEFUN([BSP_BOOTCARD_OPTIONS],
+RTEMS_BSPOPTS_SET([BSP_DIRTY_MEMORY],[*],[0])
+RTEMS_BSPOPTS_HELP([BSP_DIRTY_MEMORY],
+[If defined, then PSIM will put a non-zero pattern into the RTEMS
+ Workspace and C program heap. This should assist in finding
+ code that assumes memory starts set to zero.])
+)