source: rtems/c/src/aclocal/bsp-bootcard-options.m4 @ 4778c6e0

4.115
Last change on this file since 4778c6e0 was 8785e906, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/09 at 23:12:55

2009-07-16 Joel Sherrill <joel.sherrill@…>

  • aclocal/bsp-bootcard-options.m4: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs now use the same macros.
  • aclocal/bsp-bspcleanup-options.m4: New file.
  • Property mode set to 100644
File size: 644 bytes
Line 
1dnl $Id$
2dnl
3
4dnl BSP_BOOTCARD_OPTIONS - some autoconf voodoo to provide each BSPs'
5dnl configure script with the standard options supported by boot_card()
6dnl and other required parts of the BSP Framework.  Currently, this is
7dnl
8dnl   - Can optionally dirty memory at boot time.
9dnl
10
11dnl To be used in bsp-configure scripts
12
13AC_DEFUN([RTEMS_BSP_BOOTCARD_OPTIONS],[
14RTEMS_BSPOPTS_SET([BSP_DIRTY_MEMORY],[*],[0])
15RTEMS_BSPOPTS_HELP([BSP_DIRTY_MEMORY],
16[If defined, then the BSP Framework will put a non-zero pattern into
17 the RTEMS Workspace and C program heap.  This should assist in finding
18 code that assumes memory starts set to zero.])
19])
Note: See TracBrowser for help on using the repository browser.