source: rtems/c/src/lib/libbsp/mips/rbtx4938/ChangeLog @ 81f16002

4.104.115
Last change on this file since 81f16002 was 81f16002, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/08 at 15:11:10

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

  • startup/bspclean.c: Removed.
  • Property mode set to 100644
File size: 5.4 KB
Line 
12008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * startup/bspclean.c: Removed.
4
52008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * include/bsp.h: Remove unnecessary boilerplate comments.
8
92008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
10
11        * Makefile.am, startup/linkcmds: Use top level shared
12        bsp_get_work_area() implementation.
13        * startup/bspgetworkarea.c: Removed.
14
152008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * startup/bspstart.c: Remove unnecessary includes of
18        rtems/libcsupport.h and rtems/libio.h.
19
202008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * Makefile.am, configure.ac, startup/bspstart.c: Create
23        bsp_get_work_area() into its own file and use BSP Framework to
24        perform more initialization.
25        * startup/bspgetworkarea.c: New file.
26
272008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
28
29        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
30        phase, all prototypes were removed from bsp.h and empty
31        implementations were removed and made to use the shared stub.
32
332008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
34
35        * console/console-io.c: Convert to "bool".
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: Remove --oformat=...
101        Use old_link for -qrtems (Prevents *.link from killing endianness).
102
1032007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * bsp_specs: Remove lib (Now expected to exist in GCC).
106
1072007-03-12      Joel Sherrill <joel@OARcorp.com>
108
109        * console/console-io.c, startup/exception.S: Correct license URL and/or
110        fix mistake in copyright notice. Both of these mistakes appear to be
111        from code submitted after these changes were made previously.
112
1132007-03-10      Joel Sherrill <joel@OARcorp.com>
114
115        PR 1227/bsps
116        * include/bsp.h: Remove MAX_LONG_TEST_DURATION and
117        MAX_SHORT_TEST_DURATION. They are obsolete and unused.
118
1192006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
120
121        * configure.ac: New BUG-REPORT address.
122
1232006-11-15      Joel Sherrill <joel@OARcorp.com>
124
125        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
126        file and simplified initialization.
127
1282006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
129
130        * Makefile.am: Remove superfluous -DASM.
131
1322006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
133
134        * configure.ac: Require autoconf-2.60. Require automake-1.10.
135
1362006-03-22      Joel Sherrill <joel@OARcorp.com>
137
138        * include/.cvsignore: New file.
139
1402006-03-16      Ralf Corsépius <ralf.corsepius@rtems.org>
141
142        * .cvsignore, liblnk/pmon.S, liblnk/regs.S, liblnk/lnklib.S,
143        README, bsp_specs, configure.ac, startup/inittlb.c,
144        startup/bspstart.c, startup/idtmem.S, startup/exception.S,
145        startup/bspclean.c, startup/idttlb.S, startup/linkcmds,
146        include/tm27.h, include/bsp.h, clock/yamon_api.h,
147        clock/clockdrv.c, Makefile.am, start/start.S
148        console/yamon_api.h, console/console-io.c:
149        New (Submission by Bruce Robinson <brucer@pmccorp.com>).
150
151        * The RBTX4938 BSP is for a Toshiba TX4938 evaluation board.
152
Note: See TracBrowser for help on using the repository browser.