forked from Imagelibrary/rtems
2009-06-05 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac, include/bspopts.h.in: Add ON_SKYEYE option to at least enable fast idle mode. Also added some standard BSP options.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-06-05 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* configure.ac, include/bspopts.h.in: Add ON_SKYEYE option to at least
|
||||
enable fast idle mode. Also added some standard BSP options.
|
||||
|
||||
2009-06-04 Xi Yang <hiyangxi@gmail.com>
|
||||
|
||||
* .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac,
|
||||
|
||||
@@ -15,6 +15,24 @@ RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
|
||||
RTEMS_CANONICALIZE_TOOLS
|
||||
RTEMS_PROG_CCAS
|
||||
|
||||
RTEMS_BSPOPTS_SET([ON_SKYEYE],[*],[])
|
||||
RTEMS_BSPOPTS_HELP([ON_SKYEYE],
|
||||
[If defined, enable options which optimize executingon the Skyeye
|
||||
simulator. Speed up the clock ticks while the idle task is running so
|
||||
time spent in the idle task is minimized. This significantly reduces
|
||||
the wall time required to execute the RTEMS test suites.])
|
||||
|
||||
RTEMS_BSPOPTS_SET([BSP_PRESS_KEY_FOR_RESET],[*],[0])
|
||||
RTEMS_BSPOPTS_HELP([BSP_PRESS_KEY_FOR_RESET],
|
||||
[If defined, print a message and wait until pressed before resetting
|
||||
board when application exits.])
|
||||
|
||||
RTEMS_BSPOPTS_SET([BSP_RESET_BOARD_AT_EXIT],[*],[1])
|
||||
RTEMS_BSPOPTS_HELP([BSP_RESET_BOARD_AT_EXIT],
|
||||
[If defined, reset the board when the application exits.])
|
||||
|
||||
BSP_BOOTCARD_OPTIONS
|
||||
|
||||
RTEMS_CHECK_NETWORKING
|
||||
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
||||
|
||||
|
||||
@@ -1,5 +1,23 @@
|
||||
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* If defined, then the BSP Framework 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. */
|
||||
#undef BSP_DIRTY_MEMORY
|
||||
|
||||
/* If defined, print a message and wait until pressed before resetting board
|
||||
when application exits. */
|
||||
#undef BSP_PRESS_KEY_FOR_RESET
|
||||
|
||||
/* If defined, reset the board when the application exits. */
|
||||
#undef BSP_RESET_BOARD_AT_EXIT
|
||||
|
||||
/* If defined, enable options which optimize executingon the Skyeye simulator.
|
||||
Speed up the clock ticks while the idle task is running so time spent in
|
||||
the idle task is minimized. This significantly reduces the wall time
|
||||
required to execute the RTEMS test suites. */
|
||||
#undef ON_SKYEYE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
|
||||
Reference in New Issue
Block a user