source: rtems/c/src/lib/libbsp/arm/gba/ChangeLog @ b5059b3

4.104.114.95
Last change on this file since b5059b3 was 89866d84, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/08 at 17:24:32

2008-08-31 Joel Sherrill <joel.sherrill@…>

  • timer/timer.c: Eliminate empty function from every benchmark timer driver. Fix spelling.
  • Property mode set to 100644
File size: 5.5 KB
Line 
12008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * timer/timer.c: Eliminate empty function from every benchmark timer
4        driver. Fix spelling.
5
62008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * timer/timer.c: Rename timer driver methods to follow RTEMS
9        programming conventions.
10
112008-08-27      Ralf Corsépius <ralf.corsepius@rtems.org>
12
13        * timer/timer.c: Eliminate rtems_boolean.
14
152008-08-21      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * Makefile.am: No BSP should use exit.c as a file name. exit() is POSIX
18        routine.
19        * startup/bspclean.c: New file.
20        * startup/exit.c: Removed.
21
222008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * clock/clockdrv.c: Add missing prototypes.
25
262008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * Makefile.am: Rework to avoid .rel files.
29
302008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
31
32        * startup/bspstart.c: Refactored and renamed initialization routines to
33        rtems_initialize_data_structures, rtems_initialize_before_drivers,
34        rtems_initialize_device_drivers, and
35        rtems_initialize_start_multitasking. This opened the sequence up so
36        that bootcard() could provide a more robust and flexible framework
37        which is easier to explain and understand. This also lays the
38        groundwork for sharing the division of available memory between the
39        RTEMS workspace and heap and the C library initialization across all
40        BSPs.
41
422008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * startup/linkcmds: Add wildcard to gcc_except_table section so
45        programs compiled with gcc 4.3.x can link.
46
472008-02-15      Joel Sherrill <joel.sherrill@OARcorp.com>
48
49        * console/console.c: Do not have BSP specific __assert.
50
512007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c: Eliminate copies
54        of the Configuration Table. Use the RTEMS provided accessor macros to
55        obtain configuration fields.
56
572007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * startup/bspstart.c, startup/cpu.c: Move interrupt_stack_size field
60        from CPU Table to Configuration Table. Eliminate CPU Table from all
61        ports. Delete references to CPU Table in all forms.
62
632007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
66        Table fields to the Configuration Table. This included
67        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
68        do_zero_of_workspace, extra_mpci_receive_server_stack,
69        stack_allocate_hook, and stack_free_hook. As a side-effect of this
70        effort some multiprocessing code was made conditional and some style
71        clean up occurred.
72
732007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
74
75        PR 1257/bsps
76        * irq/irq.c, irq/irq_init.c: Code outside of cpukit should use the public
77        API for rtems_interrupt_disable/rtems_interrupt_enable. By bypassing
78        the public API and directly accessing _CPU_ISR_Disable and
79        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
80        directive which could lead to problems. This patch also changes the
81        type of the variable passed into these routines and addresses minor
82        style issues.
83
842007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
872007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * startup/bspstart.c: Eliminate maximum_drivers configuration parameter
90        since it was used to configure a no longer used feature. Device names
91        are now part of the filesystem not in a table.
92
932007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
94
95        * bsp_specs: Remove qrtems_debug.
96
972007-03-11      Joel Sherrill <joel@OARcorp.com>
98
99        * startup/bspstart.c: Remove assignments of
100        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
101        value in boot_card.c
102
1032006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * configure.ac: New BUG-REPORT address.
106
1072006-11-15      Joel Sherrill <joel@OARcorp.com>
108
109        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
110        file and simplified initialization.
111
1122006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
113
114        * Makefile.am: Remove superfluous -DASM.
115
1162006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
117
118        * configure.ac: Require autoconf-2.60. Require automake-1.10.
119
1202006-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
121
122        * console/defaultfont.c: Convert to utf-8.
123
1242006-09-11      Joel Sherrill <joel@OARcorp.com>
125
126        * include/arm_mode_bits.h: Convert C++ style comments to C style.
127
1282006-09-11      Chris Johns <chrisj@rtems.org>
129
130        * README, configure.ac: Remove extra CRLF.
131       
1322006-06-02      Jay Monkman <jtm@lopingdog.com>
133
134        * irq/bsp_irq_init.c: Changed interrupt handling
135        to use shared rtems_irq_connect_data struct.
136
1372006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
138
139        * Makefile.am: Add preinstall.am.
140
1412005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
142
143        * bsp_specs: remove %lib.
144
1452005-11-12      Ralf Corsepius <ralf.corsepius@rtems.org>
146
147        * bsp_specs: Remove %cpp.
148
1492005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
150
151        * irq/irq.c, startup/bspstart.c: Remove obsolete types (*unsigned32).
152
1532005-07-06      Markku Puro <markku.puro@kopteri.net>
154
155        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.ac,
156        clock/clockdrv.c, console/conio.c, console/console.c,
157        console/defaultfont.c, include/arm_mode_bits.h, include/asm_macros.h,
158        include/bsp.h, include/bspopts.h.in, include/conio.h, include/gba.h,
159        include/gba_registers.h, include/tm27.h, irq/bsp_irq_asm.S,
160        irq/bsp_irq_init.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
161        irq/irq_init.c, start/logo.S, start/start.S, startup/bspstart.c,
162        startup/cpu.c, startup/cpu_asm.S, startup/exit.c, startup/linkcmds,
163        timer/timer.c: New files.
164
Note: See TracBrowser for help on using the repository browser.