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

4.104.115
Last change on this file since ccceaf3 was ccceaf3, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:42:45

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

  • include/bsp.h: Remove unnecessary boilerplate comments.
  • Property mode set to 100644
File size: 5.3 KB
Line 
12008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * include/bsp.h: Remove unnecessary boilerplate comments.
4
52008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * Makefile.am, startup/linkcmds: Use top level shared
8        bsp_get_work_area() implementation.
9        * startup/bspgetworkarea.c: Removed.
10
112008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * startup/bspstart.c: Remove unnecessary includes of
14        rtems/libcsupport.h and rtems/libio.h.
15
162008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * Makefile.am, configure.ac, startup/bspstart.c: Create
19        bsp_get_work_area() into its own file and use BSP Framework to
20        perform more initialization.
21        * startup/bspgetworkarea.c: New file.
22
232008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
26        phase, all prototypes were removed from bsp.h and empty
27        implementations were removed and made to use the shared stub.
28
292008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
30
31        * console/console-io.c: Convert to "bool".
32
332008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
34
35        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
36        Framework to ask the BSP where it has memory for the RTEMS Workspace
37        and C Program Heap. These collectively are referred to as work area.
38        If the BSP supports this, then it does not have to include code to
39        split the available memory between the two areas. This reduces the
40        amount of code in the BSP specific bspstart.c file. Additionally, the
41        shared framework can initialize the C Library, call
42        rtems_debug_enable(), and dirty the work area memory. Until most/all
43        BSPs support this new capability, if the BSP supports this, it should
44        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
45        When the transition is complete, this autoconf macro can be removed.
46
472008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
48
49        * Makefile.am: Rework to avoid .rel files.
50
512008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * startup/bspstart.c: Refactored and renamed initialization routines to
54        rtems_initialize_data_structures, rtems_initialize_before_drivers,
55        rtems_initialize_device_drivers, and
56        rtems_initialize_start_multitasking. This opened the sequence up so
57        that bootcard() could provide a more robust and flexible framework
58        which is easier to explain and understand. This also lays the
59        groundwork for sharing the division of available memory between the
60        RTEMS workspace and heap and the C library initialization across all
61        BSPs.
62
632008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * startup/linkcmds: Add wildcard to gcc_except_table section so
66        programs compiled with gcc 4.3.x can link.
67
682007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
71        Configuration Table. Use the RTEMS provided accessor macros to obtain
72        configuration fields.
73
742007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
75
76        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
77        Configuration Table. Eliminate CPU Table from all ports. Delete
78        references to CPU Table in all forms.
79
802007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
81
82        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
83        Table fields to the Configuration Table. This included
84        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
85        do_zero_of_workspace, extra_mpci_receive_server_stack,
86        stack_allocate_hook, and stack_free_hook. As a side-effect of this
87        effort some multiprocessing code was made conditional and some style
88        clean up occurred.
89
902007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
91
92        * bsp_specs: Remove qrtems_debug.
93
942007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
95
96        * bsp_specs: Remove --oformat=...
97        Use old_link for -qrtems (Prevents *.link from killing endianness).
98
992007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
100
101        * bsp_specs: Remove lib (Now expected to exist in GCC).
102
1032007-03-12      Joel Sherrill <joel@OARcorp.com>
104
105        * console/console-io.c, startup/exception.S: Correct license URL and/or
106        fix mistake in copyright notice. Both of these mistakes appear to be
107        from code submitted after these changes were made previously.
108
1092007-03-10      Joel Sherrill <joel@OARcorp.com>
110
111        PR 1227/bsps
112        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
113        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
114
1152006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * configure.ac: New BUG-REPORT address.
118
1192006-11-15      Joel Sherrill <joel@OARcorp.com>
120
121        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
122        file and simplified initialization.
123
1242006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
125
126        * Makefile.am: Remove superfluous -DASM.
127
1282006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
129
130        * configure.ac: Require autoconf-2.60. Require automake-1.10.
131
1322006-03-22      Joel Sherrill <joel@OARcorp.com>
133
134        * include/.cvsignore: New file.
135
1362006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
137
138        * liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S,
139        README, bsp_specs, configure.ac, startup/inittlb.c,
140        startup/bspstart.c, startup/idtmem.S, startup/exception.S,
141        startup/bspclean.c, startup/idttlb.S, startup/linkcmds,
142        include/tm27.h, include/bsp.h, clock/clockdrv.c, Makefile.am,
143        start/start.S, console/console-io.c:
144        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
145
146        * The RBTX4925 BSP is for a Toshiba TX4925 evaluation board.
147
Note: See TracBrowser for help on using the repository browser.