source: rtems/c/src/lib/libbsp/arm/csb336/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.6 KB
Line 
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
72008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
8
9        * Makefile.am, preinstall.am: Use shared tm27.h stub.
10        * include/tm27.h: Removed.
11
122008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
15        of building libbspstart.a, using automake-rules.
16
172008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * Makefile.am: Eliminate *_SOURCES.
20
212008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
24        components.
25
262008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
29
302008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
31
32        * configure.ac: Make letting boot_card() handle work area allocation
33        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
34        BSP_BOOTCARD_OPTIONS.
35
362008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        * startup/bspclean.c: Removed.
39
402008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * Makefile.am, configure.ac, console/uart.c, startup/bspclean.c,
43        startup/bspstart.c: Use standardized bsp_cleanup() which can
44        optionally print a message, poll for user to press key, and call
45        bsp_reset(). Using this eliminates the various bsp_cleanup()
46        implementations which had their own implementation and variety of
47        string constants.
48        * startup/bspreset.c: New file.
49
502008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
51
52        * Makefile.am, startup/linkcmds: Use top level shared
53        bsp_get_work_area() implementation.
54
552008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * startup/bspstart.c: Remove unnecessary includes of
58        rtems/libcsupport.h and rtems/libio.h.
59
602008-09-12      Joel Sherrill <joel.sherrill@oarcorp.com>
61
62        * Makefile.am, configure.ac, startup/bspstart.c: Split out
63        bsp_get_work_area() into its own file and user BSP Framework to
64        perform more initialization. Let edb7312 and csb336 shared the
65        implementation.
66
672008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
70        routine.
71        * startup/bspclean.c: New file.
72        * startup/exit.c: Removed.
73
742008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
75
76        * startup/exit.c: Add missing prototypes.
77
782008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
79
80        * Makefile.am: Rework to avoid .rel files.
81
822008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * startup/bspstart.c: Refactored and renamed initialization routines to
85        rtems_initialize_data_structures, rtems_initialize_before_drivers,
86        rtems_initialize_device_drivers, and
87        rtems_initialize_start_multitasking. This opened the sequence up so
88        that bootcard() could provide a more robust and flexible framework
89        which is easier to explain and understand. This also lays the
90        groundwork for sharing the division of available memory between the
91        RTEMS workspace and heap and the C library initialization across all
92        BSPs.
93
942008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * startup/linkcmds: Add wildcard to gcc_except_table section so
97        programs compiled with gcc 4.3.x can link.
98
992007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
102        Configuration Table. Use the RTEMS provided accessor macros to obtain
103        configuration fields.
104
1052007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
108        from CPU Table to Configuration Table. Eliminate CPU Table from all
109        ports. Delete references to CPU Table in all forms.
110
1112007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
112
113        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
114        Table fields to the Configuration Table. This included
115        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
116        do_zero_of_workspace, extra_mpci_receive_server_stack,
117        stack_allocate_hook, and stack_free_hook. As a side-effect of this
118        effort some multiprocessing code was made conditional and some style
119        clean up occurred.
120
1212007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
122
123        PR 1257/bsps
124        * network/lan91c11x.c: Code outside of cpukit should use the public
125        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
126        the public API and directly accessing _CPU_ISR_Disable and
127        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
128        directive which could lead to problems. This patch also changes the
129        type of the variable passed into these routines and addresses minor
130        style issues.
131
1322007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
133
134        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
135        since it was used to configure a no longer used feature. Device names
136        are now part of the filesystem not in a table.
137
1382007-05-15      Ray Xu <rayx@gmail.com>
139
140        * Makefile.am: Add abort.rel since it is now in the BSP shared source,
141        not in score/cpu.
142
1432007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * bsp_specs: Remove qrtems_debug.
146
1472007-03-12      Joel Sherrill <joel@OARcorp.com>
148
149        * include/bsp.h, network/lan91c11x.c, network/lan91c11x.h,
150        network/network.c, start/start.S, startup/bspstart.c, startup/exit.c,
151        startup/linkcmds, startup/memmap.c: Correct license URL and/or fix
152        mistake in copyright notice. Both of these mistakes appear to be from
153        code submitted after these changes were made previously.
154
1552007-03-11      Joel Sherrill <joel@OARcorp.com>
156
157        * startup/bspstart.c: Remove assignments of
158        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
159        value in boot_card.c
160
1612006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
162
163        * network/network.c (mc9328mxl_enet_ioctl): Use ioctl_command_t.
164
1652006-11-15      Joel Sherrill <joel@OARcorp.com>
166
167        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
168        file and simplified initialization.
169
1702006-11-01      Joel Sherrill <joel@OARcorp.com>
171
172        * bsp_specs: Fix typo.
173
1742006-10-30      Joel Sherrill <joel@OARcorp.com>
175
176        * bsp_specs: Add crti, crtbegin, crtend, and crtn.
177
1782006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
179
180        * Makefile.am: Remove superfluous -DASM.
181
1822006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
183
184        * configure.ac: Require autoconf-2.60. Require automake-1.10.
185
1862006-06-02      Jay Monkman <jtm@lopingdog.com>
187
188        * startup/linkcmds: Removed unnecessary global definition of
189        bsp_vector_table.
190
1912006-06-02      Jay Monkman <jtm@lopingdog.com>
192
193        * times: Reran timing tests and updated 'times' file.
194
1952006-06-02      Jay Monkman <jtm@lopingdog.com>
196
197        * startup/bspstart.c: Fixed PLL calculations.
198
1992006-06-02      Jay Monkman <jtm@lopingdog.com>
200
201        * Makefile.am, console/uart.c, startup/exit.c:  Changed UART
202          driver to be interrupt driven, added support for both UARTs.
203
204
2052006-06-02      Jay Monkman <jtm@lopingdog.com>
206
207        * network/network.c: Changed interrupt handling
208        to use shared rtems_irq_connect_data struct.
209
2102006-06-02      Jay Monkman <jtm@lopingdog.com>
211
212        * start/start.S, startup/linkcmds: Defined UNDEF exception
213        stack space.
214
2152006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
216
217        * Makefile.am: Add preinstall.am.
218
2192005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * bsp_specs: remove %lib.
222
2232005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
224
225        * bsp_specs: Remove %cpp.
226
2272005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
228
229        * include/bsp.h: New header guard.
230
2312005-04-26      Joel Sherrill <joel@OARcorp.com>
232
233        * network/network.c: Add include rtems/bspIo.h to eliminate warning.
234
2352005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
236
237        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
238
2392005-01-04      Joel Sherrill <joel@OARcorp.com>
240
241        * startup/bspstart.c, startup/exit.c: Remove warnings.
242
2432005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
244
245        * Makefile.am: Remove build-variant support.
246
2472004-11-05      Joel Sherrill <joel@OARcorp.com>
248
249        * startup/linkcmds: Add .gnu.linkonce.b section and account for memory
250        area being named sdram NOT RAM.
251
2522004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
253
254        * startup/bspstart.c: Use POSIX fixed size types.
255
2562004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
257
258        * configure.ac: Require automake > 1.9.
259
2602004-07-24      Joel Sherrill <joel@OARcorp.com>
261
262        * .cvsignore: New file.
263
2642004-07-15      Jay Monkman
265
266        * console/.cvsignore, include/.cvsignore, network/.cvsignore,
267        start/.cvsignore, startup/.cvsignore: New files.
268
2692004-07-15      Jay Monkman
270
271        * ChangeLog, Makefile.am, README, bsp_specs, configure.ac, times,
272        console/uart.c, include/bsp.h, include/tm27.h, network/lan91c11x.c,
273        network/lan91c11x.h, network/network.c, start/start.S,
274        startup/bspstart.c, startup/exit.c, startup/linkcmds,
275        startup/memmap.c: New files.
276
Note: See TracBrowser for help on using the repository browser.