summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 19:52:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-23 19:52:35 +0000
commit63d82b7b887b26d581b0ebdac09cc50ef390235c (patch)
tree0d4b0e0b0ec7e1656224d3fa10cc0ef39e8ac3f2 /c
parent2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-63d82b7b887b26d581b0ebdac09cc50ef390235c.tar.bz2
2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.ac, include/bspopts.h.in: Make letting boot_card() handle work area allocation mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
Diffstat (limited to 'c')
-rw-r--r--c/src/lib/libbsp/arm/lpc24xx/ChangeLog6
-rw-r--r--c/src/lib/libbsp/arm/lpc24xx/configure.ac2
-rw-r--r--c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/arm/smdk2410/ChangeLog6
-rw-r--r--c/src/lib/libbsp/arm/smdk2410/configure.ac2
-rw-r--r--c/src/lib/libbsp/arm/smdk2410/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/m68k/genmcf548x/ChangeLog6
-rw-r--r--c/src/lib/libbsp/m68k/genmcf548x/configure.ac2
-rw-r--r--c/src/lib/libbsp/m68k/genmcf548x/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/m68k/mcf52235/ChangeLog6
-rw-r--r--c/src/lib/libbsp/m68k/mcf52235/configure.ac4
-rw-r--r--c/src/lib/libbsp/m68k/mcf52235/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/m68k/mcf5329/ChangeLog6
-rw-r--r--c/src/lib/libbsp/m68k/mcf5329/configure.ac4
-rw-r--r--c/src/lib/libbsp/m68k/mcf5329/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/powerpc/mvme3100/ChangeLog6
-rw-r--r--c/src/lib/libbsp/powerpc/mvme3100/configure.ac2
-rw-r--r--c/src/lib/libbsp/powerpc/mvme3100/include/bspopts.h.in7
-rw-r--r--c/src/lib/libbsp/powerpc/virtex/ChangeLog6
-rw-r--r--c/src/lib/libbsp/powerpc/virtex/configure.ac2
-rw-r--r--c/src/lib/libbsp/powerpc/virtex/include/bspopts.h.in7
21 files changed, 58 insertions, 51 deletions
diff --git a/c/src/lib/libbsp/arm/lpc24xx/ChangeLog b/c/src/lib/libbsp/arm/lpc24xx/ChangeLog
index 158c9e9a86..702bf05fc2 100644
--- a/c/src/lib/libbsp/arm/lpc24xx/ChangeLog
+++ b/c/src/lib/libbsp/arm/lpc24xx/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-23 Joel Sherrill <joel.sherrill@OARcorp.com>
* README: Add URL.
diff --git a/c/src/lib/libbsp/arm/lpc24xx/configure.ac b/c/src/lib/libbsp/arm/lpc24xx/configure.ac
index 319bd1b378..8d5a94b2da 100644
--- a/c/src/lib/libbsp/arm/lpc24xx/configure.ac
+++ b/c/src/lib/libbsp/arm/lpc24xx/configure.ac
@@ -23,7 +23,7 @@ RTEMS_PROG_CCAS
RTEMS_CHECK_NETWORKING
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
diff --git a/c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in b/c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in
index a8a4bcbb38..ee843f6d32 100644
--- a/c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in
+++ b/c/src/lib/libbsp/arm/lpc24xx/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* Define to the address where bug reports for this package should be sent. */
diff --git a/c/src/lib/libbsp/arm/smdk2410/ChangeLog b/c/src/lib/libbsp/arm/smdk2410/ChangeLog
index e9da3a35a0..de13e31194 100644
--- a/c/src/lib/libbsp/arm/smdk2410/ChangeLog
+++ b/c/src/lib/libbsp/arm/smdk2410/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, include/bspopts.h.in: Use standardized
diff --git a/c/src/lib/libbsp/arm/smdk2410/configure.ac b/c/src/lib/libbsp/arm/smdk2410/configure.ac
index 568cd06d49..ab36a69f42 100644
--- a/c/src/lib/libbsp/arm/smdk2410/configure.ac
+++ b/c/src/lib/libbsp/arm/smdk2410/configure.ac
@@ -27,7 +27,7 @@ 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.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/arm/smdk2410/include/bspopts.h.in b/c/src/lib/libbsp/arm/smdk2410/include/bspopts.h.in
index cb52a8c5d0..cb662a0095 100644
--- a/c/src/lib/libbsp/arm/smdk2410/include/bspopts.h.in
+++ b/c/src/lib/libbsp/arm/smdk2410/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* If defined, print a message and wait until pressed before resetting board
diff --git a/c/src/lib/libbsp/m68k/genmcf548x/ChangeLog b/c/src/lib/libbsp/m68k/genmcf548x/ChangeLog
index 5c3af0cdc5..cb025b9173 100644
--- a/c/src/lib/libbsp/m68k/genmcf548x/ChangeLog
+++ b/c/src/lib/libbsp/m68k/genmcf548x/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, include/bspopts.h.in: Use standardized
diff --git a/c/src/lib/libbsp/m68k/genmcf548x/configure.ac b/c/src/lib/libbsp/m68k/genmcf548x/configure.ac
index 577727ccdc..a04a4f8a99 100644
--- a/c/src/lib/libbsp/m68k/genmcf548x/configure.ac
+++ b/c/src/lib/libbsp/m68k/genmcf548x/configure.ac
@@ -33,7 +33,7 @@ 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.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/m68k/genmcf548x/include/bspopts.h.in b/c/src/lib/libbsp/m68k/genmcf548x/include/bspopts.h.in
index a53707dbad..ea652ad4a4 100644
--- a/c/src/lib/libbsp/m68k/genmcf548x/include/bspopts.h.in
+++ b/c/src/lib/libbsp/m68k/genmcf548x/include/bspopts.h.in
@@ -1,14 +1,9 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
/* Use a clock speed of 100000000 for the m5484FireEngine board */
#undef BSP_CPU_CLOCK_SPEED
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* If defined, print a message and wait until pressed before resetting board
diff --git a/c/src/lib/libbsp/m68k/mcf52235/ChangeLog b/c/src/lib/libbsp/m68k/mcf52235/ChangeLog
index 31a2057027..332e120434 100644
--- a/c/src/lib/libbsp/m68k/mcf52235/ChangeLog
+++ b/c/src/lib/libbsp/m68k/mcf52235/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, include/bspopts.h.in: Use standardized
diff --git a/c/src/lib/libbsp/m68k/mcf52235/configure.ac b/c/src/lib/libbsp/m68k/mcf52235/configure.ac
index 98907f27cf..7e071857c2 100644
--- a/c/src/lib/libbsp/m68k/mcf52235/configure.ac
+++ b/c/src/lib/libbsp/m68k/mcf52235/configure.ac
@@ -15,7 +15,7 @@ RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS
RTEMS_PROG_CCAS
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
#RTEMS_CHECK_NETWORKING
#AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
@@ -29,7 +29,7 @@ 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.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/m68k/mcf52235/include/bspopts.h.in b/c/src/lib/libbsp/m68k/mcf52235/include/bspopts.h.in
index cb52a8c5d0..cb662a0095 100644
--- a/c/src/lib/libbsp/m68k/mcf52235/include/bspopts.h.in
+++ b/c/src/lib/libbsp/m68k/mcf52235/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* If defined, print a message and wait until pressed before resetting board
diff --git a/c/src/lib/libbsp/m68k/mcf5329/ChangeLog b/c/src/lib/libbsp/m68k/mcf5329/ChangeLog
index 1fe53afb59..088eeae588 100644
--- a/c/src/lib/libbsp/m68k/mcf5329/ChangeLog
+++ b/c/src/lib/libbsp/m68k/mcf5329/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, include/bspopts.h.in: Use standardized
diff --git a/c/src/lib/libbsp/m68k/mcf5329/configure.ac b/c/src/lib/libbsp/m68k/mcf5329/configure.ac
index 543eb6d638..d2fe03e16c 100644
--- a/c/src/lib/libbsp/m68k/mcf5329/configure.ac
+++ b/c/src/lib/libbsp/m68k/mcf5329/configure.ac
@@ -15,7 +15,7 @@ RTEMS_PROG_CC_FOR_TARGET
RTEMS_CANONICALIZE_TOOLS
RTEMS_PROG_CCAS
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
RTEMS_CHECK_NETWORKING
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
@@ -29,7 +29,7 @@ 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.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/m68k/mcf5329/include/bspopts.h.in b/c/src/lib/libbsp/m68k/mcf5329/include/bspopts.h.in
index cb52a8c5d0..cb662a0095 100644
--- a/c/src/lib/libbsp/m68k/mcf5329/include/bspopts.h.in
+++ b/c/src/lib/libbsp/m68k/mcf5329/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* If defined, print a message and wait until pressed before resetting board
diff --git a/c/src/lib/libbsp/powerpc/mvme3100/ChangeLog b/c/src/lib/libbsp/powerpc/mvme3100/ChangeLog
index e395aaae69..635fc785ff 100644
--- a/c/src/lib/libbsp/powerpc/mvme3100/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/mvme3100/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* include/bsp.h, startup/misc.c: Use standardized bsp_cleanup() which
diff --git a/c/src/lib/libbsp/powerpc/mvme3100/configure.ac b/c/src/lib/libbsp/powerpc/mvme3100/configure.ac
index 6ceb46881a..d9d7b12acc 100644
--- a/c/src/lib/libbsp/powerpc/mvme3100/configure.ac
+++ b/c/src/lib/libbsp/powerpc/mvme3100/configure.ac
@@ -35,7 +35,7 @@ RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
of PowerPC 603e revisions and emulator versions.
The BSP actually contains the call that enables this.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/powerpc/mvme3100/include/bspopts.h.in b/c/src/lib/libbsp/powerpc/mvme3100/include/bspopts.h.in
index 735eb7495f..f2430b85a8 100644
--- a/c/src/lib/libbsp/powerpc/mvme3100/include/bspopts.h.in
+++ b/c/src/lib/libbsp/powerpc/mvme3100/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* Define to the address where bug reports for this package should be sent. */
diff --git a/c/src/lib/libbsp/powerpc/virtex/ChangeLog b/c/src/lib/libbsp/powerpc/virtex/ChangeLog
index e83788b07d..b5144380c4 100644
--- a/c/src/lib/libbsp/powerpc/virtex/ChangeLog
+++ b/c/src/lib/libbsp/powerpc/virtex/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * configure.ac, include/bspopts.h.in: Make letting boot_card() handle
+ work area allocation mandatory. Rename
+ RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
+
2008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am, configure.ac, include/bspopts.h.in: Use standardized
diff --git a/c/src/lib/libbsp/powerpc/virtex/configure.ac b/c/src/lib/libbsp/powerpc/virtex/configure.ac
index 06faece213..2356042ad0 100644
--- a/c/src/lib/libbsp/powerpc/virtex/configure.ac
+++ b/c/src/lib/libbsp/powerpc/virtex/configure.ac
@@ -50,7 +50,7 @@ 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.])
-RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
+BSP_BOOTCARD_OPTIONS
# Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile])
diff --git a/c/src/lib/libbsp/powerpc/virtex/include/bspopts.h.in b/c/src/lib/libbsp/powerpc/virtex/include/bspopts.h.in
index c6336f3b18..60bcd77b16 100644
--- a/c/src/lib/libbsp/powerpc/virtex/include/bspopts.h.in
+++ b/c/src/lib/libbsp/powerpc/virtex/include/bspopts.h.in
@@ -1,11 +1,6 @@
/* include/bspopts.h.in. Generated from configure.ac by autoheader. */
-/* BSP uses shared logic in bootcard.c */
-#undef BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
-
-/* 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. */
+/* If defined */
#undef BSP_DIRTY_MEMORY
/* If defined, print a message and wait until pressed before resetting board