source: rtems/c/src/lib/libbsp/mips/rbtx4938/ChangeLog @ 820d1ab0

4.104.115
Last change on this file since 820d1ab0 was 820d1ab0, checked in by Chris Johns <chrisj@…>, on 04/28/09 at 06:34:00

2009-04-28 Chris Johns <chrisj@…>

  • start/start.S: Update for boot_card command line change.
  • Property mode set to 100644
File size: 7.3 KB
Line 
12009-04-28      Chris Johns <chrisj@rtems.org>
2
3        * start/start.S: Update for boot_card command line change.
4
52009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
6
7        PR 1385/cpukit
8        * startup/exception.S: When the type rtems_boolean was switched to the
9        C99 bool, the size changed from 4 bytes to 1 byte. The interrupt
10        dispatching code accesses two boolean variables for scheduling
11        purposes and the assembly implementations of this code did not get
12        updated.
13
142008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * bsp_specs: Move -e start from *link to *startfile to avoid warning
17        for undefined entry symbol when linking relocatables with binutils
18        2.19.
19
202008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
21
22        * Makefile.am, preinstall.am: Use shared tm27.h stub.
23        * include/tm27.h: Removed.
24
252008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
28        * Makefile.am: Reflect changes above.
29
302008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
33        of building libbspstart.a, using automake-rules.
34
352008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
36
37        * liblnk/regs.S: Remove (Rename into liblnk/regs.h).
38        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
39        * Makefile.am, liblnk/pmon.S: Reflect renamer.
40
412008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
42
43        * Makefile.am: Eliminate *_SOURCES.
44
452008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
46
47        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
48        components.
49
502008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
51
52        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
53
542008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
55
56        * configure.ac: Make letting boot_card() handle work area allocation
57        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
58        BSP_BOOTCARD_OPTIONS.
59
602008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
61
62        * startup/bspclean.c: Removed.
63
642008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
65
66        * include/bsp.h: Remove unnecessary boilerplate comments.
67
682008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
69
70        * Makefile.am, startup/linkcmds: Use top level shared
71        bsp_get_work_area() implementation.
72        * startup/bspgetworkarea.c: Removed.
73
742008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
75
76        * startup/bspstart.c: Remove unnecessary includes of
77        rtems/libcsupport.h and rtems/libio.h.
78
792008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * Makefile.am, configure.ac, startup/bspstart.c: Create
82        bsp_get_work_area() into its own file and use BSP Framework to
83        perform more initialization.
84        * startup/bspgetworkarea.c: New file.
85
862008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
87
88        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
89        phase, all prototypes were removed from bsp.h and empty
90        implementations were removed and made to use the shared stub.
91
922008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
93
94        * console/console-io.c: Convert to "bool".
95
962008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
97
98        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
99        Framework to ask the BSP where it has memory for the RTEMS Workspace
100        and C Program Heap. These collectively are referred to as work area.
101        If the BSP supports this, then it does not have to include code to
102        split the available memory between the two areas. This reduces the
103        amount of code in the BSP specific bspstart.c file. Additionally, the
104        shared framework can initialize the C Library, call
105        rtems_debug_enable(), and dirty the work area memory. Until most/all
106        BSPs support this new capability, if the BSP supports this, it should
107        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
108        When the transition is complete, this autoconf macro can be removed.
109
1102008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
111
112        * Makefile.am: Rework to avoid .rel files.
113
1142008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
115
116        * startup/bspstart.c: Refactored and renamed initialization routines to
117        rtems_initialize_data_structures, rtems_initialize_before_drivers,
118        rtems_initialize_device_drivers, and
119        rtems_initialize_start_multitasking. This opened the sequence up so
120        that bootcard() could provide a more robust and flexible framework
121        which is easier to explain and understand. This also lays the
122        groundwork for sharing the division of available memory between the
123        RTEMS workspace and heap and the C library initialization across all
124        BSPs.
125
1262008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * startup/linkcmds: Add wildcard to gcc_except_table section so
129        programs compiled with gcc 4.3.x can link.
130
1312007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
132
133        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
134        Configuration Table. Use the RTEMS provided accessor macros to obtain
135        configuration fields.
136
1372007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
138
139        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
140        Configuration Table. Eliminate CPU Table from all ports. Delete
141        references to CPU Table in all forms.
142
1432007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
144
145        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
146        Table fields to the Configuration Table. This included
147        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
148        do_zero_of_workspace, extra_mpci_receive_server_stack,
149        stack_allocate_hook, and stack_free_hook. As a side-effect of this
150        effort some multiprocessing code was made conditional and some style
151        clean up occurred.
152
1532007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
154
155        * bsp_specs: Remove qrtems_debug.
156
1572007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * bsp_specs: Remove --oformat=...
160        Use old_link for -qrtems (Prevents *.link from killing endianness).
161
1622007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
163
164        * bsp_specs: Remove lib (Now expected to exist in GCC).
165
1662007-03-12      Joel Sherrill <joel@OARcorp.com>
167
168        * console/console-io.c, startup/exception.S: Correct license URL and/or
169        fix mistake in copyright notice. Both of these mistakes appear to be
170        from code submitted after these changes were made previously.
171
1722007-03-10      Joel Sherrill <joel@OARcorp.com>
173
174        PR 1227/bsps
175        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
176        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
177
1782006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
179
180        * configure.ac: New BUG-REPORT address.
181
1822006-11-15      Joel Sherrill <joel@OARcorp.com>
183
184        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
185        file and simplified initialization.
186
1872006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
188
189        * Makefile.am: Remove superfluous -DASM.
190
1912006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
192
193        * configure.ac: Require autoconf-2.60. Require automake-1.10.
194
1952006-03-22      Joel Sherrill <joel@OARcorp.com>
196
197        * include/.cvsignore: New file.
198
1992006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
200
201        * .cvsignore, liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S,
202        README, bsp_specs, configure.ac, startup/inittlb.c,
203        startup/bspstart.c, startup/idtmem.S, startup/exception.S,
204        startup/bspclean.c, startup/idttlb.S, startup/linkcmds,
205        include/tm27.h, include/bsp.h, clock/yamon_api.h,
206        clock/clockdrv.c, Makefile.am, start/start.S
207        console/yamon_api.h, console/console-io.c:
208        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
209
210        * The RBTX4938 BSP is for a Toshiba TX4938 evaluation board.
211
Note: See TracBrowser for help on using the repository browser.