source: rtems/c/src/lib/libbsp/mips/csb350/ChangeLog @ df393962

4.104.115
Last change on this file since df393962 was df393962, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/08 at 20:34:02

2008-12-04 Joel Sherrill <joel.sherrill@…>

  • bsp_specs: Move -e start from *link to *startfile to avoid warning for undefined entry symbol when linking relocatables with binutils 2.19.
  • Property mode set to 100644
File size: 8.5 KB
RevLine 
[df393962]12008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * bsp_specs: Move -e start from *link to *startfile to avoid warning
4        for undefined entry symbol when linking relocatables with binutils
5        2.19.
6
[9927019a]72008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * clock/clockdrv.c: Correct spelling error in comment.
10        * include/tm27.h: Delete duplicate #endif.
11
[11978407]122008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
15        * Makefile.am: Reflect changes above.
16
[c01fe2e]172008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
20        of building libbspstart.a, using automake-rules.
21
[234f3ecc]222008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * start/regs.S: Remove (Renamed into start/regs.h).
25        * start/regs.h: New (Renamed from start/regs.S).
26        * Makefile.am, start/start.S: Reflect renamer.
27
[64eb0c7]282008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
29
30        * Makefile.am: Eliminate *_SOURCES.
31
[e94666d]322008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
35        components.
36
[c06b3fa]372008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
38
39        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
40
[95aa5e1]412008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * configure.ac: Make letting boot_card() handle work area allocation
44        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
45        BSP_BOOTCARD_OPTIONS.
46
[72798ee]472008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * startup/bspreset.c: New file.
50
[34ea1e6]512008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
52
53        * Makefile.am, configure.ac, console/console-io.c: Use standardized
54        bsp_cleanup() which can optionally print a message, poll for user to
55        press key, and call bsp_reset(). Using this eliminates the various
56        bsp_cleanup() implementations which had their own implementation and
57        variety of string constants.
58        * startup/bspclean.c: Removed.
59
[89fc9341]602008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
61
62        * include/bsp.h, include/tm27.h: Remove unnecessary boilerplate
63        comments.
64
[e150cdbf]652008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
66
67        * Makefile.am, startup/linkcmds: Use top level shared
68        bsp_get_work_area() implementation.
69        * startup/bspgetworkarea.c: Removed.
70
[a196084]712008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * startup/bspstart.c: Remove unnecessary includes of
74        rtems/libcsupport.h and rtems/libio.h.
75
[25e4d24]762008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * Makefile.am, configure.ac, startup/bspstart.c: Split out
79        bsp_get_work_area() into its own file and user BSP Framework to
80        perform more initialization.
81        * startup/bspgetworkarea.c: New file.
82
[4909a30]832008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
84
85        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
86        phase, all prototypes were removed from bsp.h and empty
87        implementations were removed and made to use the shared stub.
88
[adf2b49]892008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
90
91        * timer/timer.c: Convert to "bool".
92
[25c62b0]932008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
94
95        * timer/timer.c: Eliminate empty function from every benchmark timer
96        driver. Fix spelling.
97
[35f52a6]982008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
99
100        * timer/timer.c: Rename timer driver methods to follow RTEMS
101        programming conventions.
102
[fbc74c35]1032008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * timer/timer.c: Add missing prototypes.
106
[dde1fedb]1072008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
110        Framework to ask the BSP where it has memory for the RTEMS Workspace
111        and C Program Heap. These collectively are referred to as work area.
112        If the BSP supports this, then it does not have to include code to
113        split the available memory between the two areas. This reduces the
114        amount of code in the BSP specific bspstart.c file. Additionally, the
115        shared framework can initialize the C Library, call
116        rtems_debug_enable(), and dirty the work area memory. Until most/all
117        BSPs support this new capability, if the BSP supports this, it should
118        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
119        When the transition is complete, this autoconf macro can be removed.
120
[1d0ee80e]1212008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
122
123        * Makefile.am: Rework to avoid .rel files.
124
[6ea100c1]1252008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
126
127        * startup/bspstart.c: Refactored and renamed initialization routines to
128        rtems_initialize_data_structures, rtems_initialize_before_drivers,
129        rtems_initialize_device_drivers, and
130        rtems_initialize_start_multitasking. This opened the sequence up so
131        that bootcard() could provide a more robust and flexible framework
132        which is easier to explain and understand. This also lays the
133        groundwork for sharing the division of available memory between the
134        RTEMS workspace and heap and the C library initialization across all
135        BSPs.
136
[d1f57b5]1372008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
138
139        * startup/linkcmds: Add wildcard to gcc_except_table section so
140        programs compiled with gcc 4.3.x can link.
141
[4130d8e2]1422007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
143
144        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
145        Configuration Table. Use the RTEMS provided accessor macros to obtain
146        configuration fields.
147
[cafa2c5]1482007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
149
150        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
151        Configuration Table. Eliminate CPU Table from all ports. Delete
152        references to CPU Table in all forms.
153
[558bc25]1542007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
155
156        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
157        Table fields to the Configuration Table. This included
158        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
159        do_zero_of_workspace, extra_mpci_receive_server_stack,
160        stack_allocate_hook, and stack_free_hook. As a side-effect of this
161        effort some multiprocessing code was made conditional and some style
162        clean up occurred.
163
[2948f70]1642007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
165
166        * bsp_specs: Remove qrtems_debug.
167
[f7d92471]1682007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
169
[faa5687d]170        * bsp_specs: Use nostdlib instead of nostdlibs (bogus).
[f7d92471]171        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
172        endianness).
173
[a4819530]1742007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
175
176        * bsp_specs: Remove lib (Now expected to exist in GCC).
177
[e5ef747]1782007-03-12      Joel Sherrill <joel@OARcorp.com>
179
180        * clock/clockdrv.c, console/console-io.c, include/bsp.h,
181        network/network.c, start/start.S, startup/bspclean.c,
182        startup/bspstart.c, timer/timer.c: Correct license URL and/or fix
183        mistake in copyright notice. Both of these mistakes appear to be from
184        code submitted after these changes were made previously.
185
[5d3d6d1a]1862007-03-10      Joel Sherrill <joel@OARcorp.com>
187
188        PR 1227/bsps
189        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
190        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
191
[fcb0cd46]1922006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
193
194        * configure.ac: New BUG-REPORT address.
195
[aa4369c]1962006-11-15      Joel Sherrill <joel@OARcorp.com>
197
198        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
199        file and simplified initialization.
200
[57357d9]2012006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
202
203        * Makefile.am: Remove superfluous -DASM.
204
[754610f]2052006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
206
207        * configure.ac: Require autoconf-2.60. Require automake-1.10.
208
[0c8c5e3f]2092006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
210
211        * configure.ac: Require automake-1.9.
212
[eeef62e]2132006-06-18      Joel Sherrill <joel@OARcorp.com>
214
215        * README:
216
[bd86290d]2172006-03-08      Joel Sherrill <joel@OARcorp.com>
218
219        * startup/linkcmds: Add .gnu.linkonce.b.* section.
220
[4217b96]2212006-02-08      Joel Sherrill <joel@OARcorp.com>
222
223        * startup/linkcmds: Add sections required by newer gcc versions.
224
[a06faad]2252006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
226
227        * Makefile.am: Add preinstall.am.
228
[15ec224]2292005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
230
231        * bsp_specs: Remove %cpp.
232
[320124f]2332005-07-06      Ralf Corsepius <ralf.corsepius@rtems.org>
234
235        * console/console-io.c: Remove unused variable i.
236
[34c4852]2372005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
238
239        * include/bsp.h: New header guard.
240
[9f8023a2]2412005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
242
243        * clock/clockdrv.c, include/bsp.h, network/network.c,
244        startup/bspstart.c, timer/timer.c: Eliminate unsigned{8|16|32}.
245
[d3db8ae]2462005-04-26      Joel Sherrill <joel@OARcorp.com>
247
248        * clock/clockdrv.c: Add include of rtems/bspIo.h.
249        * include/tm27.h: Delete TX3904 code and leave stub.
250        * network/network.c: Eliminate warnings.
251        * startup/bspclean.c: Add include of rtems/bspIo.h.  Reformat.
252
[650a6e7f]2532005-03-14      Joel Sherrill <joel@OARcorp.com>
254
255        * include/.cvsignore: Fixed typo.
256        * network/network.c: Now compiles with GCC 4.0.
257
[a0e0533]2582005-03-04      Joel Sherrill <joel@OARcorp.com>
259
260        * .cvsignore, ChangeLog, include/.cvsignore: New files.
261
Note: See TracBrowser for help on using the repository browser.