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

4.104.115
Last change on this file since a196084 was a196084, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:06:10

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Remove unnecessary includes of rtems/libcsupport.h and rtems/libio.h.
  • Property mode set to 100644
File size: 6.3 KB
Line 
12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * startup/bspstart.c: Remove unnecessary includes of
4        rtems/libcsupport.h and rtems/libio.h.
5
62008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * Makefile.am, configure.ac, startup/bspstart.c: Split out
9        bsp_get_work_area() into its own file and user BSP Framework to
10        perform more initialization.
11        * startup/bspgetworkarea.c: New file.
12
132008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
14
15        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
16        phase, all prototypes were removed from bsp.h and empty
17        implementations were removed and made to use the shared stub.
18
192008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
20
21        * timer/timer.c: Convert to "bool".
22
232008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * timer/timer.c: Eliminate empty function from every benchmark timer
26        driver. Fix spelling.
27
282008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
29
30        * timer/timer.c: Rename timer driver methods to follow RTEMS
31        programming conventions.
32
332008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
34
35        * timer/timer.c: Add missing prototypes.
36
372008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
40        Framework to ask the BSP where it has memory for the RTEMS Workspace
41        and C Program Heap. These collectively are referred to as work area.
42        If the BSP supports this, then it does not have to include code to
43        split the available memory between the two areas. This reduces the
44        amount of code in the BSP specific bspstart.c file. Additionally, the
45        shared framework can initialize the C Library, call
46        rtems_debug_enable(), and dirty the work area memory. Until most/all
47        BSPs support this new capability, if the BSP supports this, it should
48        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
49        When the transition is complete, this autoconf macro can be removed.
50
512008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * Makefile.am: Rework to avoid .rel files.
54
552008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * startup/bspstart.c: Refactored and renamed initialization routines to
58        rtems_initialize_data_structures, rtems_initialize_before_drivers,
59        rtems_initialize_device_drivers, and
60        rtems_initialize_start_multitasking. This opened the sequence up so
61        that bootcard() could provide a more robust and flexible framework
62        which is easier to explain and understand. This also lays the
63        groundwork for sharing the division of available memory between the
64        RTEMS workspace and heap and the C library initialization across all
65        BSPs.
66
672008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * startup/linkcmds: Add wildcard to gcc_except_table section so
70        programs compiled with gcc 4.3.x can link.
71
722007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
73
74        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
75        Configuration Table. Use the RTEMS provided accessor macros to obtain
76        configuration fields.
77
782007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
79
80        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
81        Configuration Table. Eliminate CPU Table from all ports. Delete
82        references to CPU Table in all forms.
83
842007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
87        Table fields to the Configuration Table. This included
88        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
89        do_zero_of_workspace, extra_mpci_receive_server_stack,
90        stack_allocate_hook, and stack_free_hook. As a side-effect of this
91        effort some multiprocessing code was made conditional and some style
92        clean up occurred.
93
942007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
95
96        * bsp_specs: Remove qrtems_debug.
97
982007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * bsp_specs: Use nostdlib instead of nostdlibs (bogus).
101        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
102        endianness).
103
1042007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
105
106        * bsp_specs: Remove lib (Now expected to exist in GCC).
107
1082007-03-12      Joel Sherrill <joel@OARcorp.com>
109
110        * clock/clockdrv.c, console/console-io.c, include/bsp.h,
111        network/network.c, start/start.S, startup/bspclean.c,
112        startup/bspstart.c, timer/timer.c: Correct license URL and/or fix
113        mistake in copyright notice. Both of these mistakes appear to be from
114        code submitted after these changes were made previously.
115
1162007-03-10      Joel Sherrill <joel@OARcorp.com>
117
118        PR 1227/bsps
119        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
120        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
121
1222006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
123
124        * configure.ac: New BUG-REPORT address.
125
1262006-11-15      Joel Sherrill <joel@OARcorp.com>
127
128        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
129        file and simplified initialization.
130
1312006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
132
133        * Makefile.am: Remove superfluous -DASM.
134
1352006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
136
137        * configure.ac: Require autoconf-2.60. Require automake-1.10.
138
1392006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * configure.ac: Require automake-1.9.
142
1432006-06-18      Joel Sherrill <joel@OARcorp.com>
144
145        * README:
146
1472006-03-08      Joel Sherrill <joel@OARcorp.com>
148
149        * startup/linkcmds: Add .gnu.linkonce.b.* section.
150
1512006-02-08      Joel Sherrill <joel@OARcorp.com>
152
153        * startup/linkcmds: Add sections required by newer gcc versions.
154
1552006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
156
157        * Makefile.am: Add preinstall.am.
158
1592005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
160
161        * bsp_specs: Remove %cpp.
162
1632005-07-06      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * console/console-io.c: Remove unused variable i.
166
1672005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * include/bsp.h: New header guard.
170
1712005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * clock/clockdrv.c, include/bsp.h, network/network.c,
174        startup/bspstart.c, timer/timer.c: Eliminate unsigned{8|16|32}.
175
1762005-04-26      Joel Sherrill <joel@OARcorp.com>
177
178        * clock/clockdrv.c: Add include of rtems/bspIo.h.
179        * include/tm27.h: Delete TX3904 code and leave stub.
180        * network/network.c: Eliminate warnings.
181        * startup/bspclean.c: Add include of rtems/bspIo.h.  Reformat.
182
1832005-03-14      Joel Sherrill <joel@OARcorp.com>
184
185        * include/.cvsignore: Fixed typo.
186        * network/network.c: Now compiles with GCC 4.0.
187
1882005-03-04      Joel Sherrill <joel@OARcorp.com>
189
190        * .cvsignore, ChangeLog, include/.cvsignore: New files.
191
Note: See TracBrowser for help on using the repository browser.