source: rtems/c/src/lib/libbsp/arm/csb336/ChangeLog @ b7a2654

4.9
Last change on this file since b7a2654 was b7a2654, checked in by Joel Sherrill <joel.sherrill@…>, on 01/06/09 at 16:26:42

2009-01-06 Joel Sherrill <joel.sherrill@…>

PR 1350/bsps

  • network/lan91c11x.c: Do not write 65th element into 64 element array.
  • Property mode set to 100644
File size: 6.7 KB
Line 
12009-01-06      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        PR 1350/bsps
4        * network/lan91c11x.c: Do not write 65th element into 64 element array.
5
62008-12-08      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * bsp_specs: Backport from CVS-HEAD.
9
102008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
13        routine.
14        * startup/bspclean.c: New file.
15        * startup/exit.c: Removed.
16
172008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * startup/exit.c: Add missing prototypes.
20
212008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
22
23        * Makefile.am: Rework to avoid .rel files.
24
252008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
26
27        * startup/bspstart.c: Refactored and renamed initialization routines to
28        rtems_initialize_data_structures, rtems_initialize_before_drivers,
29        rtems_initialize_device_drivers, and
30        rtems_initialize_start_multitasking. This opened the sequence up so
31        that bootcard() could provide a more robust and flexible framework
32        which is easier to explain and understand. This also lays the
33        groundwork for sharing the division of available memory between the
34        RTEMS workspace and heap and the C library initialization across all
35        BSPs.
36
372008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/linkcmds: Add wildcard to gcc_except_table section so
40        programs compiled with gcc 4.3.x can link.
41
422007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
45        Configuration Table. Use the RTEMS provided accessor macros to obtain
46        configuration fields.
47
482007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
49
50        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
51        from CPU Table to Configuration Table. Eliminate CPU Table from all
52        ports. Delete references to CPU Table in all forms.
53
542007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
55
56        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
57        Table fields to the Configuration Table. This included
58        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
59        do_zero_of_workspace, extra_mpci_receive_server_stack,
60        stack_allocate_hook, and stack_free_hook. As a side-effect of this
61        effort some multiprocessing code was made conditional and some style
62        clean up occurred.
63
642007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
65
66        PR 1257/bsps
67        * network/lan91c11x.c: Code outside of cpukit should use the public
68        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
69        the public API and directly accessing _CPU_ISR_Disable and
70        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
71        directive which could lead to problems. This patch also changes the
72        type of the variable passed into these routines and addresses minor
73        style issues.
74
752007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
78        since it was used to configure a no longer used feature. Device names
79        are now part of the filesystem not in a table.
80
812007-05-15      Ray Xu <rayx@gmail.com>
82
83        * Makefile.am: Add abort.rel since it is now in the BSP shared source,
84        not in score/cpu.
85
862007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
87
88        * bsp_specs: Remove qrtems_debug.
89
902007-03-12      Joel Sherrill <joel@OARcorp.com>
91
92        * include/bsp.h, network/lan91c11x.c, network/lan91c11x.h,
93        network/network.c, start/start.S, startup/bspstart.c, startup/exit.c,
94        startup/linkcmds, startup/memmap.c: Correct license URL and/or fix
95        mistake in copyright notice. Both of these mistakes appear to be from
96        code submitted after these changes were made previously.
97
982007-03-11      Joel Sherrill <joel@OARcorp.com>
99
100        * startup/bspstart.c: Remove assignments of
101        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
102        value in boot_card.c
103
1042006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
105
106        * network/network.c (mc9328mxl_enet_ioctl): Use ioctl_command_t.
107
1082006-11-15      Joel Sherrill <joel@OARcorp.com>
109
110        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
111        file and simplified initialization.
112
1132006-11-01      Joel Sherrill <joel@OARcorp.com>
114
115        * bsp_specs: Fix typo.
116
1172006-10-30      Joel Sherrill <joel@OARcorp.com>
118
119        * bsp_specs: Add crti, crtbegin, crtend, and crtn.
120
1212006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
122
123        * Makefile.am: Remove superfluous -DASM.
124
1252006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
126
127        * configure.ac: Require autoconf-2.60. Require automake-1.10.
128
1292006-06-02      Jay Monkman <jtm@lopingdog.com>
130
131        * startup/linkcmds: Removed unnecessary global definition of
132        bsp_vector_table.
133
1342006-06-02      Jay Monkman <jtm@lopingdog.com>
135
136        * times: Reran timing tests and updated 'times' file.
137
1382006-06-02      Jay Monkman <jtm@lopingdog.com>
139
140        * startup/bspstart.c: Fixed PLL calculations.
141
1422006-06-02      Jay Monkman <jtm@lopingdog.com>
143
144        * Makefile.am, console/uart.c, startup/exit.c:  Changed UART
145          driver to be interrupt driven, added support for both UARTs.
146
147
1482006-06-02      Jay Monkman <jtm@lopingdog.com>
149
150        * network/network.c: Changed interrupt handling
151        to use shared rtems_irq_connect_data struct.
152
1532006-06-02      Jay Monkman <jtm@lopingdog.com>
154
155        * start/start.S, startup/linkcmds: Defined UNDEF exception
156        stack space.
157
1582006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
159
160        * Makefile.am: Add preinstall.am.
161
1622005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
163
164        * bsp_specs: remove %lib.
165
1662005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
167
168        * bsp_specs: Remove %cpp.
169
1702005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
171
172        * include/bsp.h: New header guard.
173
1742005-04-26      Joel Sherrill <joel@OARcorp.com>
175
176        * network/network.c: Add include rtems/bspIo.h to eliminate warning.
177
1782005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
179
180        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
181
1822005-01-04      Joel Sherrill <joel@OARcorp.com>
183
184        * startup/bspstart.c, startup/exit.c: Remove warnings.
185
1862005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
187
188        * Makefile.am: Remove build-variant support.
189
1902004-11-05      Joel Sherrill <joel@OARcorp.com>
191
192        * startup/linkcmds: Add .gnu.linkonce.b section and account for memory
193        area being named sdram NOT RAM.
194
1952004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
196
197        * startup/bspstart.c: Use POSIX fixed size types.
198
1992004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
200
201        * configure.ac: Require automake > 1.9.
202
2032004-07-24      Joel Sherrill <joel@OARcorp.com>
204
205        * .cvsignore: New file.
206
2072004-07-15      Jay Monkman
208
209        * console/.cvsignore, include/.cvsignore, network/.cvsignore,
210        start/.cvsignore, startup/.cvsignore: New files.
211
2122004-07-15      Jay Monkman
213
214        * ChangeLog, Makefile.am, README, bsp_specs, configure.ac, times,
215        console/uart.c, include/bsp.h, include/tm27.h, network/lan91c11x.c,
216        network/lan91c11x.h, network/network.c, start/start.S,
217        startup/bspstart.c, startup/exit.c, startup/linkcmds,
218        startup/memmap.c: New files.
219
Note: See TracBrowser for help on using the repository browser.