source: rtems/c/src/lib/libbsp/mips/rbtx4938/ChangeLog @ 4edf8db5

4.104.115
Last change on this file since 4edf8db5 was 4edf8db5, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/16/09 at 10:09:46

2009-11-16 Ralf Corsépius <ralf.corsepius@…>

  • startup/bspstart.c: Remove nested externs. #include <libcpu/isr_entries.h.
  • Property mode set to 100644
File size: 8.0 KB
Line 
12009-11-16      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * startup/bspstart.c: Remove nested externs.
4        #include <libcpu/isr_entries.h.
5
62009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * make/custom/rbtx4938.cfg: Remove RTEMS_BSP_FAMILY.
9
102009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * configure.ac: Don't add -ansi -fasm to CFLAGS.
13
142009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * make/custom/rbtx4938.cfg: New (relocated from /make/custom).
17
182009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
21
22 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
23
24        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
25        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
26        have the same options.
27
282009-04-28      Chris Johns <chrisj@rtems.org>
29
30        * start/start.S: Update for boot_card command line change.
31
322009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
33
34        PR 1385/cpukit
35        * startup/exception.S: When the type rtems_boolean was switched to the
36        C99 bool, the size changed from 4 bytes to 1 byte. The interrupt
37        dispatching code accesses two boolean variables for scheduling
38        purposes and the assembly implementations of this code did not get
39        updated.
40
412008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * bsp_specs: Move -e start from *link to *startfile to avoid warning
44        for undefined entry symbol when linking relocatables with binutils
45        2.19.
46
472008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
48
49        * Makefile.am, preinstall.am: Use shared tm27.h stub.
50        * include/tm27.h: Removed.
51
522008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
53
54        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
55        * Makefile.am: Reflect changes above.
56
572008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
58
59        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
60        of building libbspstart.a, using automake-rules.
61
622008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
63
64        * liblnk/regs.S: Remove (Rename into liblnk/regs.h).
65        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
66        * Makefile.am, liblnk/pmon.S: Reflect renamer.
67
682008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * Makefile.am: Eliminate *_SOURCES.
71
722008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
73
74        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
75        components.
76
772008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
78
79        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
80
812008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
82
83        * configure.ac: Make letting boot_card() handle work area allocation
84        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
85        BSP_BOOTCARD_OPTIONS.
86
872008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
88
89        * startup/bspclean.c: Removed.
90
912008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
92
93        * include/bsp.h: Remove unnecessary boilerplate comments.
94
952008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
96
97        * Makefile.am, startup/linkcmds: Use top level shared
98        bsp_get_work_area() implementation.
99        * startup/bspgetworkarea.c: Removed.
100
1012008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
102
103        * startup/bspstart.c: Remove unnecessary includes of
104        rtems/libcsupport.h and rtems/libio.h.
105
1062008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
107
108        * Makefile.am, configure.ac, startup/bspstart.c: Create
109        bsp_get_work_area() into its own file and use BSP Framework to
110        perform more initialization.
111        * startup/bspgetworkarea.c: New file.
112
1132008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
114
115        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
116        phase, all prototypes were removed from bsp.h and empty
117        implementations were removed and made to use the shared stub.
118
1192008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
120
121        * console/console-io.c: Convert to "bool".
122
1232008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
124
125        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
126        Framework to ask the BSP where it has memory for the RTEMS Workspace
127        and C Program Heap. These collectively are referred to as work area.
128        If the BSP supports this, then it does not have to include code to
129        split the available memory between the two areas. This reduces the
130        amount of code in the BSP specific bspstart.c file. Additionally, the
131        shared framework can initialize the C Library, call
132        rtems_debug_enable(), and dirty the work area memory. Until most/all
133        BSPs support this new capability, if the BSP supports this, it should
134        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
135        When the transition is complete, this autoconf macro can be removed.
136
1372008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
138
139        * Makefile.am: Rework to avoid .rel files.
140
1412008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
142
143        * startup/bspstart.c: Refactored and renamed initialization routines to
144        rtems_initialize_data_structures, rtems_initialize_before_drivers,
145        rtems_initialize_device_drivers, and
146        rtems_initialize_start_multitasking. This opened the sequence up so
147        that bootcard() could provide a more robust and flexible framework
148        which is easier to explain and understand. This also lays the
149        groundwork for sharing the division of available memory between the
150        RTEMS workspace and heap and the C library initialization across all
151        BSPs.
152
1532008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
154
155        * startup/linkcmds: Add wildcard to gcc_except_table section so
156        programs compiled with gcc 4.3.x can link.
157
1582007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
159
160        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
161        Configuration Table. Use the RTEMS provided accessor macros to obtain
162        configuration fields.
163
1642007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
165
166        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
167        Configuration Table. Eliminate CPU Table from all ports. Delete
168        references to CPU Table in all forms.
169
1702007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
171
172        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
173        Table fields to the Configuration Table. This included
174        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
175        do_zero_of_workspace, extra_mpci_receive_server_stack,
176        stack_allocate_hook, and stack_free_hook. As a side-effect of this
177        effort some multiprocessing code was made conditional and some style
178        clean up occurred.
179
1802007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
181
182        * bsp_specs: Remove qrtems_debug.
183
1842007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
185
186        * bsp_specs: Remove --oformat=...
187        Use old_link for -qrtems (Prevents *.link from killing endianness).
188
1892007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
190
191        * bsp_specs: Remove lib (Now expected to exist in GCC).
192
1932007-03-12      Joel Sherrill <joel@OARcorp.com>
194
195        * console/console-io.c, startup/exception.S: Correct license URL and/or
196        fix mistake in copyright notice. Both of these mistakes appear to be
197        from code submitted after these changes were made previously.
198
1992007-03-10      Joel Sherrill <joel@OARcorp.com>
200
201        PR 1227/bsps
202        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
203        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
204
2052006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
206
207        * configure.ac: New BUG-REPORT address.
208
2092006-11-15      Joel Sherrill <joel@OARcorp.com>
210
211        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
212        file and simplified initialization.
213
2142006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
215
216        * Makefile.am: Remove superfluous -DASM.
217
2182006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
219
220        * configure.ac: Require autoconf-2.60. Require automake-1.10.
221
2222006-03-22      Joel Sherrill <joel@OARcorp.com>
223
224        * include/.cvsignore: New file.
225
2262006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
227
228        * .cvsignore, liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S,
229        README, bsp_specs, configure.ac, startup/inittlb.c,
230        startup/bspstart.c, startup/idtmem.S, startup/exception.S,
231        startup/bspclean.c, startup/idttlb.S, startup/linkcmds,
232        include/tm27.h, include/bsp.h, clock/yamon_api.h,
233        clock/clockdrv.c, Makefile.am, start/start.S
234        console/yamon_api.h, console/console-io.c:
235        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
236
237        * The RBTX4938 BSP is for a Toshiba TX4938 evaluation board.
238
Note: See TracBrowser for help on using the repository browser.