source: rtems/c/src/lib/libbsp/mips/rbtx4925/ChangeLog @ 212f7b0

4.104.115
Last change on this file since 212f7b0 was 9957dbf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 21:39:40

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am: Use shared tm27.h stub.
  • include/tm27.h: Removed.
  • Property mode set to 100644
File size: 6.6 KB
Line 
12008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * Makefile.am, preinstall.am: Use shared tm27.h stub.
4        * include/tm27.h: Removed.
5
62008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
9        * Makefile.am: Reflect changes above.
10
112008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
12
13        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
14        of building libbspstart.a, using automake-rules.
15
162008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
17
18        * liblnk/regs.S: Remove (Renamed into liblnk/regs.h).
19        * liblnk/regs.h: New (Renamed from liblnk/regs.S).
20        * Makefile.am, liblnk/pmon.S: Reflect renamer.
21
222008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * Makefile.am: Eliminate *_SOURCES.
25
262008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
29        components.
30
312008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
32
33        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
34
352008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
36
37        * configure.ac: Make letting boot_card() handle work area allocation
38        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
39        BSP_BOOTCARD_OPTIONS.
40
412008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * startup/bspclean.c: Removed.
44
452008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
46
47        * include/bsp.h: Remove unnecessary boilerplate comments.
48
492008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * Makefile.am, startup/linkcmds: Use top level shared
52        bsp_get_work_area() implementation.
53        * startup/bspgetworkarea.c: Removed.
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-14      Joel Sherrill <joel.sherrill@oarcorp.com>
61
62        * Makefile.am, configure.ac, startup/bspstart.c: Create
63        bsp_get_work_area() into its own file and use BSP Framework to
64        perform more initialization.
65        * startup/bspgetworkarea.c: New file.
66
672008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
70        phase, all prototypes were removed from bsp.h and empty
71        implementations were removed and made to use the shared stub.
72
732008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
74
75        * console/console-io.c: Convert to "bool".
76
772008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
80        Framework to ask the BSP where it has memory for the RTEMS Workspace
81        and C Program Heap. These collectively are referred to as work area.
82        If the BSP supports this, then it does not have to include code to
83        split the available memory between the two areas. This reduces the
84        amount of code in the BSP specific bspstart.c file. Additionally, the
85        shared framework can initialize the C Library, call
86        rtems_debug_enable(), and dirty the work area memory. Until most/all
87        BSPs support this new capability, if the BSP supports this, it should
88        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
89        When the transition is complete, this autoconf macro can be removed.
90
912008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
92
93        * Makefile.am: Rework to avoid .rel files.
94
952008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
96
97        * startup/bspstart.c: Refactored and renamed initialization routines to
98        rtems_initialize_data_structures, rtems_initialize_before_drivers,
99        rtems_initialize_device_drivers, and
100        rtems_initialize_start_multitasking. This opened the sequence up so
101        that bootcard() could provide a more robust and flexible framework
102        which is easier to explain and understand. This also lays the
103        groundwork for sharing the division of available memory between the
104        RTEMS workspace and heap and the C library initialization across all
105        BSPs.
106
1072008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * startup/linkcmds: Add wildcard to gcc_except_table section so
110        programs compiled with gcc 4.3.x can link.
111
1122007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
113
114        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
115        Configuration Table. Use the RTEMS provided accessor macros to obtain
116        configuration fields.
117
1182007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
121        Configuration Table. Eliminate CPU Table from all ports. Delete
122        references to CPU Table in all forms.
123
1242007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
127        Table fields to the Configuration Table. This included
128        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
129        do_zero_of_workspace, extra_mpci_receive_server_stack,
130        stack_allocate_hook, and stack_free_hook. As a side-effect of this
131        effort some multiprocessing code was made conditional and some style
132        clean up occurred.
133
1342007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
135
136        * bsp_specs: Remove qrtems_debug.
137
1382007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
139
140        * bsp_specs: Remove --oformat=...
141        Use old_link for -qrtems (Prevents *.link from killing endianness).
142
1432007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * bsp_specs: Remove lib (Now expected to exist in GCC).
146
1472007-03-12      Joel Sherrill <joel@OARcorp.com>
148
149        * console/console-io.c, startup/exception.S: Correct license URL and/or
150        fix mistake in copyright notice. Both of these mistakes appear to be
151        from code submitted after these changes were made previously.
152
1532007-03-10      Joel Sherrill <joel@OARcorp.com>
154
155        PR 1227/bsps
156        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
157        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
158
1592006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * configure.ac: New BUG-REPORT address.
162
1632006-11-15      Joel Sherrill <joel@OARcorp.com>
164
165        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
166        file and simplified initialization.
167
1682006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
169
170        * Makefile.am: Remove superfluous -DASM.
171
1722006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * configure.ac: Require autoconf-2.60. Require automake-1.10.
175
1762006-03-22      Joel Sherrill <joel@OARcorp.com>
177
178        * include/.cvsignore: New file.
179
1802006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
181
182        * liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S,
183        README, bsp_specs, configure.ac, startup/inittlb.c,
184        startup/bspstart.c, startup/idtmem.S, startup/exception.S,
185        startup/bspclean.c, startup/idttlb.S, startup/linkcmds,
186        include/tm27.h, include/bsp.h, clock/clockdrv.c, Makefile.am,
187        start/start.S, console/console-io.c:
188        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
189
190        * The RBTX4925 BSP is for a Toshiba TX4925 evaluation board.
191
Note: See TracBrowser for help on using the repository browser.