source: rtems/cpukit/score/cpu/arm/ChangeLog @ 86820eda

4.115
Last change on this file since 86820eda was 86820eda, checked in by Sebastian Huber <sebastian.huber@…>, on 04/15/11 at 08:06:16

2011-04-15 Sebastian Huber <sebastian.huber@…>

PR 1780/cpukit

  • rtems/score/cpu.h: Lower alignment requirements for CPU_PARTITION_ALIGNMENT according to AAPCS.
  • Property mode set to 100644
File size: 19.7 KB
Line 
12011-04-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
2
3        PR 1780/cpukit
4        * rtems/score/cpu.h: Lower alignment requirements for
5        CPU_PARTITION_ALIGNMENT according to AAPCS.
6
72011-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
8
9        * cpu.c, rtems/score/cpu.h:
10        Use "__asm__" instead of "asm" for improved c99-compliance.
11
122010-11-23      Gedare Bloom <giddyup44@yahoo.com>
13
14        PR 1719/cpukit
15        * arm_exc_abort.S: Avoid "bx" instruction to support ARMv4 and below.
16
172010-11-22      Sebastian Huber <sebastian.huber@embedded-brains.de>
18
19        * rtems/score/cpu.h: Set alignment requirements according to AAPCS.
20
212010-07-29      Gedare Bloom <giddyup44@yahoo.com>
22
23        PR 1635/cpukit
24        * rtems/score/types.h: Refactoring of priority handling, to isolate the
25        bitmap implementation of priorities in the supercore so that priority
26        management is a little more modular. This change is in anticipation
27        of scheduler implementations that can select how they manage tracking
28        priority levels / finding the highest priority ready task. Note that
29        most of the changes here are simple renaming, to clarify the use of
30        the bitmap-based priority management.
31
322010-07-16      Sebastian Huber <sebastian.huber@embedded-brains.de>
33
34        * rtems/score/cpu.h: Include <rtems/score/types.h> first.
35        * rtems/score/types.h: Use <rtems/score/basedefs.h> header file.
36
372010-07-06      Sebastian Huber <sebastian.huber@embedded-brains.de>
38
39        * rtems/score/cpu.h: Removed CPU_ENABLE_C_ISR_DISPATCH_IMPLEMENTATION
40        define.
41
422010-06-28      Joel Sherrill <joel.sherrill@oarcorp.com>
43
44        PR 1573/cpukit
45        * arm_exc_interrupt.S: Add a per cpu data structure which contains the
46        information required by RTEMS for each CPU core. This encapsulates
47        information such as thread executing, heir, idle and dispatch needed.
48
492010-05-10      Joel Sherrill <joel.sherrilL@OARcorp.com>
50
51        * rtems/score/arm.h: Make it a warning not error that the FPU multilib
52        is not supported yet.
53
542010-04-08      Sebastian Huber <sebastian.huber@embedded-brains.de>
55
56        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
57        arm_exc_interrupt.S, cpu.c, cpu_asm.S, rtems/asm.h, rtems/score/arm.h,
58        rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h:
59        Documentation.
60
612010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * arm_exc_abort.S: Fix warnings about TRUE/FALSE not defined.
64
652010-03-27      Joel Sherrill <joel.sherrill@oarcorp.com>
66
67        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
68        arm_exc_interrupt.S, cpu.c, cpu_asm.S: Add include of config.h
69
702010-01-12      Sebastian Huber <sebastian.huber@embedded-brains.de>
71
72        * arm_exc_abort.S: New file.
73        * Makefile.am: Update for new file.
74        * arm_exc_interrupt.S, cpu.c, rtems/asm.h, rtems/score/cpu.h: Changed
75        macros which switch from and to THUMB mode.  Added a default prefetch
76        and data abort handler which reports the complete processor context.
77        Added PSR defines.
78
792009-12-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
80
81        * rtems/score/arm.h: Recognize ARMv5TEJ.
82        * arm_exc_interrupt.S: The previous implementation was broken.  In
83        case of a nested interrupt the link register of the INT mode was not
84        properly restored.  This lead to a major rewrite.  Interrupt
85        processing is now done in SVC mode.
86
872009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
88
89        * rtems/score/arm.h: Recognize ARMv7A.
90
912009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
92
93        * rtems/score/arm.h: Recognize ARMv6J as needed by arm1136 variants.
94
952009-09-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
96
97        * rtems/score/cpu.h: Fix for inline asm in _CPU_Fatal_halt().
98        * rtems/asm.h: Added macro to define ARM functions.
99        * cpu_asm.S, arm_exc_handler_low.S: Use macro from above.
100
1012009-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
102
103        * rtems/score/cpu.h: Mark _CPU_Context_restore() as noreturn so the
104        compiler will not generate code thinking it returns.
105
1062009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
107
108        * arm_exc_handler_high.c, arm_exc_handler_low.S, arm_exc_interrupt.S:
109        New files.
110        * Makefile.am: Update.
111        * rtems/score/cpu.h:  Removed all generic comments.  Changed inline
112        assembler of interrupt support functions.  Removed operating system
113        support for fast interrupts (FIQ).  Overall cleanup.
114        * cpu.c: Changed type of arm_cpu_mode to uint32_t to match the type in
115        _CPU_Context_Initialize().  Moved exception handler code into
116        'arm_exc_handler_high.c'.  _CPU_ISR_install_vector() writes now only
117        if necessary.
118        * cpu_asm.S: Moved exception handler code into 'arm_exc_handler_low.S'.
119        * rtems/score/types.h: Removed superfluous defines.
120        * ChangeLog, thumb_isr.c: Removed files.
121
1222009-05-05      Joel Sherrill <joel.sherrill@oarcorp.com>
123
124        * rtems/score/cpu.h: Remove warnings.
125
1262009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
127
128        * cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
129        passing address of _Thread_Dispatch to _CPU_Initialize. Clean up
130        comments.
131
1322008-09-11      Ralf Corsépius <ralf.corsepius@rtems.org>
133
134        * rtems/score/types.h: Do not define boolean, single_precision,
135        double_precision unless RTEMS_DEPRECATED_TYPES is given.
136
1372008-09-08      Joel Sherrill <joel.sherrill@oarcorp.com>
138
139        * cpu.c: Remove extraneous spaces.
140
1412008-09-07      Ralf Corsépius <ralf.corsepius@rtems.org>
142
143        * Makefile.am: Merge thumb/Makefile.am.
144        * thumb/Makefile.am: Remove (superfluous).
145
1462008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * cpu.c, rtems/score/cpu.h: Convert to "bool".
149
1502008-08-21      Ralf Corsépius <ralf.corsepius@rtems.org>
151
152        * rtems/score/types.h: Include stdbool.h.
153        Use bool as base-type for boolean.
154
1552008-08-18      Joel Sherrill <joel.sherrill@OARcorp.com>
156
157        * cpu.c, rtems/score/cpu.h: Add void.
158
1592008-04-18      Joel Sherrill <joel.sherrill@OARcorp.com>
160
161        * cpu.c: Add comment.
162
1632008-04-17      Joel Sherrill <joel.sherrill@oarcorp.com>
164
165        * cpu.c: Add arm_cpu_mode so ARM BSP can overrid default value for
166        cpsr.
167
1682007-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
169
170        * rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
171
1722007-12-17      Joel Sherrill <joel.sherrill@OARcorp.com>
173
174        * rtems/score/cpu_asm.h: Sweep to make sure grep for COPYRIGHT passes.
175
1762007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
177
178        * rtems/score/cpu.h: Temporarily use C implementation of swap u32 for
179        thumb mode.
180
1812007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
182
183        * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
184        Table to Configuration Table. Eliminate CPU Table from all ports.
185        Delete references to CPU Table in all forms.
186
1872007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
188
189        * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
190        the Configuration Table. This included pretasking_hook,
191        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
192        extra_mpci_receive_server_stack, stack_allocate_hook, and
193        stack_free_hook. As a side-effect of this effort some multiprocessing
194        code was made conditional and some style clean up occurred.
195
1962007-11-27      Joel Sherrill <joel.sherrill@OARcorp.com>
197
198        * rtems/score/cpu.h: Do not inline _Thread_Enable_dispatch for Thumb to
199        save space.
200
2012007-11-26      Ray Xu <rayx.cn@gmail.com>
202
203        * cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
204        * cpu_asm.S: Note origin of Thumb support.
205
2062007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
207
208        * cpu.c: Fix headers.
209
2102007-11-03      Ray Xu <rayx.cn@gmail.com>
211
212        * cpu.c, cpu_asm.S, score/cpu.h : add support for ARM<->THUMB veneer
213          thumb  new dir to controll CPSR/SPRS in thumb mode
214
2152007-05-09      Ray Xu <rayx.cn@gmail.com>
216
217        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
218          implement a compact do_data_abort() in simple_abort.c
219
2202007-05-09      Ray Xu <rayx@gmail.com>
221
222        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
223          implement a compact do_data_abort() in simple_abort.c
224
2252007-05-09      Ray Xu <rayx@gmail.com>
226
227        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
228          implement a compact do_data_abort() in simple_abort.c
229
2302007-05-09      Ralf Corsépius <ralf.corsepius@rtems.org>
231
232        * rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
233
2342007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
235
236        * rtems/score/cpu.h:
237          Use Context_Control_fp* instead of void* for fp_contexts.
238          Eliminate evil casts.
239
2402006-11-17      Ralf Corsépius <ralf.corsepius@rtems.org>
241
242        * rtems/score/types.h: Remove unsigned64, signed64.
243
2442006-09-11      Joel Sherrill <joel@OARcorp.com>
245
246        * cpu.c: Remove warning.
247
2482006-06-02      Jay Monkman <jtm@lopingdog.com>
249
250        * cpu.c, cpu_asm.S: Fixed ARM Data Abort handling.
251
2522005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
253
254        * rtems/score/types.h: Eliminate unsigned16, unsigned32.
255
2562005-10-27      Ralf Corsepius <ralf.corsepius@rtems.org>
257
258        * rtems/asm.h: Remove private version of CONCAT macros.
259        Include <rtems/concat.h> instead.
260
2612005-09-15      Jay Monkman <jtm@lopingdog.com>
262
263        PR 365/rtems
264        * rtems/score/arm.h, rtems/score/cpu.h: Removed unused ARM_HAS_CLZ
265        macro.
266
2672005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
268
269        * Makefile.am: Split out preinstallation rules.
270        * preinstall.am: New (Split out from Makefile.am).
271
2722005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
273
274        PR 754/rtems
275        * rtems/asm.h: New (relocated from .).
276        * asm.h: Remove (moved to rtems/asm.h).
277        * Makefile.am: Reflect changes above.
278
2792004-01-28      Ralf Corsepius <ralf.corsepiu@rtems.org>
280
281        * asm.h, rtems/score/arm.h, rtems/score/cpu.h,
282        rtems/score/cpu_asm.h, rtems/score/types.h: New header guards.
283
2842005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
285
286        * rtems/score/types.h: Remove signed8, signed16, signed32,
287        unsigned8, unsigned16, unsigned32.
288
2892005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
290
291        * rtems/score/cpu.h: *_swap_u32( uint32_t ).
292
2932005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
294
295        * rtems/score/types.h: #include <rtems/stdint.h>.
296
2972005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
298
299        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
300
3012005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
302
303        * Makefile.am: Remove build-variant support.
304
3052004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
306
307        * rtems/score/types.h: Use __rtems_score_types_h as preprocessor
308        guard.
309
3102004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
311
312        * asm.h: Add doxygen preamble.
313
3142004-10-02      Ralf Corsepius <ralf_corsepius@rtems.org>
315
316        * rtems/score/arm.h: Add doxygen preamble.
317        * rtems/score/cpu.h: Add doxygen preamble.
318        * rtems/score/cpu_asm.h: Add doxygen preamble.
319        * rtems/score/types.h: Add doxygen preamble.
320
3212004-09-29      Joel Sherrill <joel@OARcorp.com>
322
323        * rtems/score/cpu.h: i960 obsoleted and all references removed.
324
3252004-08-19      Jay Monkman <jtm@lopingdog.com>
326
327        PR 671/bsps
328        * rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
329        was always ignored.
330
3312004-04-09      Joel Sherrill <joel@OARcorp.com>
332
333        * rtems/score/cpu.h: Fix typo.
334
3352004-04-06      Ralf Corsepius <ralf_corsepius@rtems.org>
336
337        * configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
338        * Makefile.am: Don't include multilib.am.
339        Reflect merging configure.ac into $(top_srcdir)/configure.ac.
340
3412004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
342
343        * Makefile.am: Install asm.h to $(includedir)/rtems.
344
3452004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
346
347        * cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
348
3492004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
350
351        * cpu.c, rtems/score/cpu.h: Convert to using c99 fixed size types.
352
3532004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
354
355        * configure.ac: RTEMS_TOP([../../../..]).
356
3572004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * configure.ac: Move RTEMS_TOP one subdir down.
360
3612004-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * Makefile.am: Add PREINSTALL_DIRS.
364
3652004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
368        Add PREINSTALL_FILES to CLEANFILES.
369
3702004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * configure.ac: Requires automake >= 1.8.1.
373
3742004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * Makefile.am: Include compile.am, again.
377
3782004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        * Makefile.am: Convert to using automake compilation rules.
381
3822003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES.
385
3862003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
389
3902003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * Makefile.am: Remove TMPINSTALL_FILES.
393
3942003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * Makefile.am: Add $(dirstamp) to preinstallation rules.
397
3982003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * Makefile.am: Add $(dirstamp) to preinstallation rules.
401
4022003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
403
404        * Makefile.am: Don't use gmake rules for preinstallation.
405
4062003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * configure.ac: Remove RTEMS_CANONICAL_HOST.
409
4102003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * configure.ac: Remove RTEMS_CHECK_CPU.
413
4142003-09-26      Joel Sherrill <joel@OARcorp.com>
415
416        * rtems/score/cpu.h: Obsoleting HP PA-RISC port and removing all
417        references.
418
4192003-09-04      Joel Sherrill <joel@OARcorp.com>
420
421        * asm.h, cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
422        rtems/score/cpu_asm.h, rtems/score/types.h: URL for license changed.
423
4242003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
427
4282003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * Makefile.am: Use "all-local:" instead of "all:".
431
4322003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * configure.ac: Remove AC_CONFIG_AUX_DIR.
435
4362003-03-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * rtems/score/arm.h: Remove ARM_HAS_THUMB (Unused).
439
4402003-03-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
443        -D__ARMEB__. Fix minor typo in comment.
444
4452003-02-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__.
448
4492002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * configure.ac: Require autoconf-2.57 + automake-1.7.2.
452        * Makefile.am: Eliminate C_O_FILES, S_O_FILES, libscorecpu_a_OBJECTS.
453
4542002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * configure.ac: Fix package name.
457
4582002-11-04      Joel Sherrill <joel@OARcorp.com>
459
460        * cpu.c: Removed warning.
461
4622002-11-01      Joel Sherrill <joel@OARcorp.com>
463
464        * cpu.c: Removed warnings.
465
4662002-10-31      Joel Sherrill <joel@OARcorp.com>
467
468        * rtems/score/cpu.h: Removed warning.
469
4702002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
473
4742002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * .cvsignore: Reformat.
477        Add autom4te*cache.
478        Remove autom4te.cache.
479
4802002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
481
482        * rtems/score/cpu.h: Fix u16 and u32 swap routines.
483
4842002-08-05      Joel Sherrill <joel@OARcorp.com>
485
486        * rtems/score/cpu.h, rtems/score/types.h: Updated to fix some typos.
487
4882002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
489
490        * cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
491        rtems/score/cpu_asm.h, rtems/score/types.h: ARM port works
492        well enough to run all sptests, tmtests, and ttcp. 
493        In addition to general cleanup, there has been considerable
494        optimization to interrupt disable/enable, endian swapping,
495        and context switching.
496
4972002-07-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
500
5012002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
502
503        * Makefile.am: Use .$(OBJEXT) instead of .o.
504
5052002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * Makefile.am: Use . instead of .o.
508
5092002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
510
511        * rtems/score/cpu_asm.h: Enhanced to include register offsets.
512        * Makefile.am: Install rtems/score/cpu_asm.h.
513        * cpu.c: Significantly enhanced including the implementation of
514        _CPU_ISR_Get_level.
515        * cpu_asm.S: Improved behavior of context switch and interrupt
516        dispatching.
517        * rtems/score/arm.h: Improved the CPU model name determination.
518        * rtems/score/cpu.h: Improved interrupt disable/enable functions.
519
5202002-07-05      Joel Sherrill <joel@OARcorp.com>
521
522        * rtems/score/cpu.h: Filled in something that was marked XXX.
523
5242002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
525
526        * configure.ac: RTEMS_TOP(../../../..).
527
5282002-07-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
529
530        * rtems.c: Remove.
531        * Makefile.am: Reflect changes above.
532
5332002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * configure.ac: Remove RTEMS_PROJECT_ROOT.
536
5372002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * configure.ac: Add RTEMS_PROG_CCAS
540
5412002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * configure.ac: Use AC_CONFIG_AUX_DIR(../../../..).
544        Add AC_PROG_RANLIB.
545
5462002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
547
548        * Makefile.am: Include $(top_srcdir)/../../../automake/*.am.
549        Use ../../../aclocal.
550
5512002-04-18      Jay Monkman <jtm@smoothsmoothie.com>
552
553        * rtems/score/cpu.h (CPU_ISR_Disable and CPU_ISR_Enable): Correct them
554        where they correctly inform the compiler about the register they
555        are modifying.
556
5572001-04-03      Joel Sherrill <joel@OARcorp.com>
558
559        * Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
560        * rtems/score/a29ktypes.h: Removed.
561        * rtems/score/types.h: New file via CVS magic.
562        * Makefile.am, rtems/score/cpu.h: Account for name change.
563
5642002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
565
566        * configure.ac:
567        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
568        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
569        * Makefile.am: Remove AUTOMAKE_OPTIONS.
570
5712001-02-04      Joel Sherrill <joel@OARcorp.com>
572
573        * configure.ac: Removed references to rtems/Makefile and
574        rtems/score/Makefile.
575
5762002-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
577
578        * rtems/Makefile.am: Removed.
579        * rtems/score/Makefile.am: Removed.
580        * configure.ac: Reflect changes above.
581        * Makefile.am: Reflect changes above.
582
5832002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
586
5872002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * cpu.c: Include rtems/bspIo.h instead of bspIo.h.
590
5912001-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
592
593        * configure.ac: Use RTEMS_ENV_RTEMSCPU.
594
5952001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
596
597        * Makefile.am: Add multilib support.
598
5992001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
600
601        * asm.h: include cpuopts.h instead of targopts.h
602        * rtems/score/arm.h: Use __arm__.
603
6042001-11-28      Joel Sherrill <joel@OARcorp.com>,
605
606        This was tracked as PR91.
607        * rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which
608        is used to specify if the port uses the standard macro for this (FALSE).
609        A TRUE setting indicates the port provides its own implementation.
610
6112001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
612
613        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
614        * configure.in: Remove.
615        * configure.ac: New file, generated from configure.in by autoupdate.
616
6172001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
618
619        * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
620        * Makefile.am: Use 'PREINSTALL_FILES ='.
621
6222001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * Makefile.am, rtems/score/Makefile.am:
625        Apply include_*HEADERS instead of H_FILES.
626
6272001-01-03      Joel Sherrill <joel@OARcorp.com>
628
629        * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
630
6312000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
632
633        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
634
6352000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
636
637        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
638
6392000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
640
641        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
642        Switch to GNU canonicalization.
643
6442000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
645
646        * Makefile.am: Include compile.am, formatting.
647        * rtems/Makefile.am: Formatting.
648        * rtems/score/Makefile.am: Formatting.
649
6502000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
651
652        * cpu.c: Spacing issues.
653        * rtems/score/cpu.h: Removed warning by setting _level.
654
6552000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
656
657        * Makefile.am: Added S_O_FILES to list of objects.
658
6592000-08-10      Joel Sherrill <joel@OARcorp.com>
660
661        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.