source: rtems/cpukit/score/cpu/no_cpu/ChangeLog @ 6162bc2

4.104.115
Last change on this file since 6162bc2 was 6162bc2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/11/08 at 14:10:16

2008-09-11 Ralf Corsépius <ralf.corsepius@…>

  • rtems/score/types.h: Do not define boolean, single_precision, double_precision unless RTEMS_DEPRECATED_TYPES is given.
  • Property mode set to 100644
File size: 10.6 KB
Line 
12008-09-11      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * rtems/score/types.h: Do not define boolean, single_precision,
4        double_precision unless RTEMS_DEPRECATED_TYPES is given.
5
62008-08-21      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * rtems/score/types.h: Include stdbool.h.
9        Use bool as base-type for boolean.
10
112008-07-31      Joel Sherrill <joel.sherrill@OARcorp.com>
12
13        * cpu.c, rtems/score/cpu.h: Correct prototype of Idle threads.
14
152008-06-05      Joel Sherrill <joel.sherrill@OARcorp.com>
16
17        * rtems/score/cpu.h: Add CPU_SIMPLE_VECTORED_INTERRUPTS porting
18        parameter to indicate that the port uses the Simple Vectored
19        Interrupt model or the Programmable Interrupt Controller Model. The
20        PIC model is implemented primarily in the BSP and it is responsible
21        for all memory allocation.
22
232008-01-29      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * rtems/score/cpu.h: Remove most doxygen warnings.
26
272007-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
28
29        * rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
30
312007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * rtems/score/cpu.h: Style.
34
352007-12-10      Joel Sherrill <joel.sherrill@oarcorp.com>
36
37        * rtems/score/cpu.h: Fix Doxygen.
38
392007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
40
41        * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
42        Table to Configuration Table. Eliminate CPU Table from all ports.
43        Delete references to CPU Table in all forms.
44
452007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
46
47        * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
48        the Configuration Table. This included pretasking_hook,
49        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
50        extra_mpci_receive_server_stack, stack_allocate_hook, and
51        stack_free_hook. As a side-effect of this effort some multiprocessing
52        code was made conditional and some style clean up occurred.
53
542007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
55
56        * rtems/score/cpu.h:
57          Use Context_Control_fp* instead of void* for fp_contexts.
58          Eliminate evil casts.
59
602006-11-17      Ralf Corsépius <ralf.corsepius@rtems.org>
61
62        * rtems/score/types.h: Remove unsigned64, signed64.
63
642006-01-16      Joel Sherrill <joel@OARcorp.com>
65
66        * rtems/asm.h, rtems/score/cpu.h, rtems/score/types.h: Part of a large
67        patch to improve Doxygen output. As a side-effect, grammar and
68        spelling errors were corrected, spacing errors were address, and some
69        variable names were improved.
70
712005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
72
73        * rtems/score/types.h: Eliminate unsigned16, unsigned32.
74
752005-10-27      Ralf Corsepius <ralf.corsepius@rtems.org>
76
77        * rtems/asm.h: Remove private version of CONCAT macros.
78        Include <rtems/concat.h> instead.
79
802005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
81
82        * Makefile.am: Split out preinstallation rules.
83        * preinstall.am: New (Split out from Makefile.am).
84
852005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
86
87        PR 754/rtems
88        * rtems/asm.h: New (relocated from .).
89        * asm.h: Remove (moved to rtems/asm.h).
90        * Makefile.am: Reflect changes above.
91
922004-01-28      Ralf Corsepius <ralf.corsepiu@rtems.org>
93
94        * asm.h, rtems/score/cpu.h, rtems/score/cpu_asm.h,
95        rtems/score/no_cpu.h, rtems/score/types.h: New header guards.
96
972005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
98
99        * rtems/score/types.h: Remove signed8, signed16, signed32,
100        unsigned8, unsigned16, unsigned32.
101
1022005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
103
104        * rtems/score/cpu.h: *_swap_u32( uint32_t ).
105
1062005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
107
108        * rtems/score/types.h: #include <rtems/stdint.h>.
109
1102005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
111
112        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
113
1142005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
115
116        * Makefile.am: Remove build-variant support.
117
1182004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
119
120        * rtems/score/types.h: Use __rtems_score_types_h as preprocessor
121        guard.
122
1232004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
124
125        * asm.h: Add doxygen preamble.
126
1272004-10-02      Ralf Corsepius <ralf_corsepius@rtems.org>
128
129        * rtems/score/cpu.h: Add doxygen preamble.
130        * rtems/score/cpu_asm.h: Add doxygen preamble.
131        * rtems/score/types.h: Add doxygen preamble.
132
1332004-09-29      Joel Sherrill <joel@OARcorp.com>
134
135        * rtems/score/cpu.h: i960 obsoleted and all references removed.
136
1372004-04-06      Ralf Corsepius <ralf_corsepius@rtems.org>
138
139        * configure.ac: Remove (Merged into$(top_srcdir)/configure.ac).
140        * Makefile.am: Don't include multilib.am.
141        Reflect merging configure.ac into $(top_srcdir)/configure.ac.
142
1432004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
144
145        * Makefile.am: Install asm.h to $(includedir)/rtems.
146
1472004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
148
149        * cpu.c, rtems/score/cpu.h: Convert to using c99 fixed size types.
150
1512004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
152
153        * configure.ac: RTEMS_TOP([../../../..]).
154
1552004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
156
157        * configure.ac: Move RTEMS_TOP one subdir down.
158
1592004-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
160
161        * Makefile.am: Add PREINSTALL_DIRS.
162
1632004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
164
165        * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
166        Add PREINSTALL_FILES to CLEANFILES.
167
1682004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
169
170        * configure.ac: Requires automake >= 1.8.1.
171
1722004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
173
174        * Makefile.am: Include compile.am, again.
175
1762004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
177
178        * Makefile.am: Convert to using automake compilation rules.
179
1802003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
181
182        * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES.
183
1842003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
185
186        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
187
1882003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
189
190        * Makefile.am: Remove TMPINSTALL_FILES.
191
1922003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
193
194        * Makefile.am: Add $(dirstamp) to preinstallation rules.
195
1962003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * Makefile.am: Don't use gmake rules for preinstallation.
199
2002003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
201
202        * configure.ac: Remove RTEMS_CANONICAL_HOST.
203
2042003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
205
206        * configure.ac: Remove RTEMS_CHECK_CPU.
207
2082003-09-26      Joel Sherrill <joel@OARcorp.com>
209
210        * rtems/score/cpu.h: Obsoleting HP PA-RISC port and removing all
211        references.
212
2132003-09-04      Joel Sherrill <joel@OARcorp.com>
214
215        * cpu.c, cpu_asm.c, rtems/score/cpu.h, rtems/score/cpu_asm.h,
216        rtems/score/no_cpu.h, rtems/score/types.h: URL for license changed.
217
2182003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
221
2222003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
223
224        * configure.ac: Remove AC_CONFIG_AUX_DIR.
225
2262003-02-11      Joel Sherrill <joel@OARcorp.com>
227
228        * cpu_asm.c: Rework logic that decides when to call
229        _Thread_Dispatch.  Analysis by Sergei Organov <osv@javad.ru>
230        determined that _ISR_Signals_to_thread_executing was not being
231        honored and/or cleared properly.
232
2332002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * configure.ac: Require autoconf-2.57 + automake-1.7.2.
236        * Makefile.am: Eliminate C_O_FILES, S_O_FILES, libscorecpu_a_OBJECTS.
237
2382002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * configure.ac: Fix package name.
241
2422002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
245
2462002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * .cvsignore: Reformat.
249        Add autom4te*cache.
250        Remove autom4te.cache.
251
2522002-07-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
253
254        * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
255
2562002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * Makefile.am: Use .$(OBJEXT) instead of .o.
259
2602002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: RTEMS_TOP(../../../..).
263
2642002-07-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
265
266        * rtems.c: Remove.
267        * Makefile.am: Reflect changes above.
268
2692002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
270
271        * configure.ac: Remove RTEMS_PROJECT_ROOT.
272
2732002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * configure.ac: Add RTEMS_PROG_CCAS
276
2772002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
278
279        * configure.ac: Use AC_CONFIG_AUX_DIR(../../../..).
280        Add AC_PROG_RANLIB.
281
2822002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * Makefile.am: Include $(top_srcdir)/../../../automake/*.am.
285        Use ../../../aclocal.
286
2872001-04-03      Joel Sherrill <joel@OARcorp.com>
288
289        * Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
290        * rtems/score/no_cputypes.h: Removed.
291        * rtems/score/types.h: New file via CVS magic.
292        * Makefile.am, rtems/score/cpu.h: Account for name change.
293
2942002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * configure.ac:
297        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
298        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
299        * Makefile.am: Remove AUTOMAKE_OPTIONS.
300
3012002-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * rtems/Makefile.am: Removed.
304        * rtems/score/Makefile.am: Removed.
305        * configure.ac: Reflect changes above.
306        * Makefile.am: Reflect changes above.
307
3082001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * Makefile.am: Add multilib support.
311
3122001-11-28      Joel Sherrill <joel@OARcorp.com>,
313
314        This was tracked as PR91.
315        * rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which
316        is used to specify if the port uses the standard macro for this (FALSE).
317        A TRUE setting indicates the port provides its own implementation.
318
3192001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
322        * configure.in: Remove.
323        * configure.ac: New file, generated from configure.in by autoupdate.
324
3252001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
328        * Makefile.am: Use 'PREINSTALL_FILES ='.
329
3302001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * Makefile.am, rtems/score/Makefile.am:
333        Apply include_*HEADERS instead of H_FILES.
334
3352001-01-03      Joel Sherrill <joel@OARcorp.com>
336
337        * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
338
3392000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
342
3432000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
346
3472000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
350        Switch to GNU canonicalization.
351
3522000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * Makefile.am: Include compile.am.
355
3562000-08-25      Joel Sherrill <joel.sherrill@OARcorp.com>
357
358        * rtems/score/no_cpu.h: Modified so there are fewer and
359        more consistent variations on "no cpu" so it is easier
360        to sed the source as the starting point for a new port.
361
3622000-08-10      Joel Sherrill <joel@OARcorp.com>
363
364        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.