source: rtems/c/src/aclocal/bsp-bspcleanup-options.m4 @ ae55da72

4.115
Last change on this file since ae55da72 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 905 bytes
Line 
1dnl
2
3dnl BSP_CLEANUP_OPTIONS - some autoconf voodoo to provide each BSPs'
4dnl configure script with the standard options supported by the shared
5dnl implementation of bsp_cleanup().
6dnl
7dnl   - Can optionally dirty memory at boot time.
8dnl
9
10dnl To be used in bsp-configure scripts
11
12dnl USAGE:
13dnl    RTEMS_BSP_CLEANUP_OPTIONS([0|1], [0|1])
14dnl WHERE:
15dnl    argument 1 indicates the default value for BSP_PRESS_KEY_FOR_RESET
16dnl    argument 2 indicates the default value for BSP_RESET_BOARD_AT_EXIT
17
18AC_DEFUN([RTEMS_BSP_CLEANUP_OPTIONS],[
19RTEMS_BSPOPTS_SET([BSP_PRESS_KEY_FOR_RESET],[*],[$1])
20RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
21[If defined, print a message and wait until pressed before resetting
22 board when application exits.])
23
24RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[$2])
25RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
26[If defined, reset the board when the application exits.])
27])
Note: See TracBrowser for help on using the repository browser.