source: rtems/cpukit/score/cpu/arm/ChangeLog @ 9f9371f

4.115
Last change on this file since 9f9371f was 9f9371f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/11 at 09:08:14

2011-02-11 Ralf Corsépius <ralf.corsepius@…>

  • cpu.c, rtems/score/cpu.h: Use "asm" instead of "asm" for improved c99-compliance.
  • Property mode set to 100644
File size: 19.5 KB
Line 
12011-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * cpu.c, rtems/score/cpu.h:
4        Use "__asm__" instead of "asm" for improved c99-compliance.
5
62010-11-23      Gedare Bloom <giddyup44@yahoo.com>
7
8        PR 1719/cpukit
9        * arm_exc_abort.S: Avoid "bx" instruction to support ARMv4 and below.
10
112010-11-22      Sebastian Huber <sebastian.huber@embedded-brains.de>
12
13        * rtems/score/cpu.h: Set alignment requirements according to AAPCS.
14
152010-07-29      Gedare Bloom <giddyup44@yahoo.com>
16
17        PR 1635/cpukit
18        * rtems/score/types.h: Refactoring of priority handling, to isolate the
19        bitmap implementation of priorities in the supercore so that priority
20        management is a little more modular. This change is in anticipation
21        of scheduler implementations that can select how they manage tracking
22        priority levels / finding the highest priority ready task. Note that
23        most of the changes here are simple renaming, to clarify the use of
24        the bitmap-based priority management.
25
262010-07-16      Sebastian Huber <sebastian.huber@embedded-brains.de>
27
28        * rtems/score/cpu.h: Include <rtems/score/types.h> first.
29        * rtems/score/types.h: Use <rtems/score/basedefs.h> header file.
30
312010-07-06      Sebastian Huber <sebastian.huber@embedded-brains.de>
32
33        * rtems/score/cpu.h: Removed CPU_ENABLE_C_ISR_DISPATCH_IMPLEMENTATION
34        define.
35
362010-06-28      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        PR 1573/cpukit
39        * arm_exc_interrupt.S: Add a per cpu data structure which contains the
40        information required by RTEMS for each CPU core. This encapsulates
41        information such as thread executing, heir, idle and dispatch needed.
42
432010-05-10      Joel Sherrill <joel.sherrilL@OARcorp.com>
44
45        * rtems/score/arm.h: Make it a warning not error that the FPU multilib
46        is not supported yet.
47
482010-04-08      Sebastian Huber <sebastian.huber@embedded-brains.de>
49
50        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
51        arm_exc_interrupt.S, cpu.c, cpu_asm.S, rtems/asm.h, rtems/score/arm.h,
52        rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h:
53        Documentation.
54
552010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * arm_exc_abort.S: Fix warnings about TRUE/FALSE not defined.
58
592010-03-27      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * arm_exc_abort.S, arm_exc_handler_high.c, arm_exc_handler_low.S,
62        arm_exc_interrupt.S, cpu.c, cpu_asm.S: Add include of config.h
63
642010-01-12      Sebastian Huber <sebastian.huber@embedded-brains.de>
65
66        * arm_exc_abort.S: New file.
67        * Makefile.am: Update for new file.
68        * arm_exc_interrupt.S, cpu.c, rtems/asm.h, rtems/score/cpu.h: Changed
69        macros which switch from and to THUMB mode.  Added a default prefetch
70        and data abort handler which reports the complete processor context.
71        Added PSR defines.
72
732009-12-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
74
75        * rtems/score/arm.h: Recognize ARMv5TEJ.
76        * arm_exc_interrupt.S: The previous implementation was broken.  In
77        case of a nested interrupt the link register of the INT mode was not
78        properly restored.  This lead to a major rewrite.  Interrupt
79        processing is now done in SVC mode.
80
812009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
82
83        * rtems/score/arm.h: Recognize ARMv7A.
84
852009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
86
87        * rtems/score/arm.h: Recognize ARMv6J as needed by arm1136 variants.
88
892009-09-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
90
91        * rtems/score/cpu.h: Fix for inline asm in _CPU_Fatal_halt().
92        * rtems/asm.h: Added macro to define ARM functions.
93        * cpu_asm.S, arm_exc_handler_low.S: Use macro from above.
94
952009-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
96
97        * rtems/score/cpu.h: Mark _CPU_Context_restore() as noreturn so the
98        compiler will not generate code thinking it returns.
99
1002009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
101
102        * arm_exc_handler_high.c, arm_exc_handler_low.S, arm_exc_interrupt.S:
103        New files.
104        * Makefile.am: Update.
105        * rtems/score/cpu.h:  Removed all generic comments.  Changed inline
106        assembler of interrupt support functions.  Removed operating system
107        support for fast interrupts (FIQ).  Overall cleanup.
108        * cpu.c: Changed type of arm_cpu_mode to uint32_t to match the type in
109        _CPU_Context_Initialize().  Moved exception handler code into
110        'arm_exc_handler_high.c'.  _CPU_ISR_install_vector() writes now only
111        if necessary.
112        * cpu_asm.S: Moved exception handler code into 'arm_exc_handler_low.S'.
113        * rtems/score/types.h: Removed superfluous defines.
114        * ChangeLog, thumb_isr.c: Removed files.
115
1162009-05-05      Joel Sherrill <joel.sherrill@oarcorp.com>
117
118        * rtems/score/cpu.h: Remove warnings.
119
1202009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
121
122        * cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
123        passing address of _Thread_Dispatch to _CPU_Initialize. Clean up
124        comments.
125
1262008-09-11      Ralf Corsépius <ralf.corsepius@rtems.org>
127
128        * rtems/score/types.h: Do not define boolean, single_precision,
129        double_precision unless RTEMS_DEPRECATED_TYPES is given.
130
1312008-09-08      Joel Sherrill <joel.sherrill@oarcorp.com>
132
133        * cpu.c: Remove extraneous spaces.
134
1352008-09-07      Ralf Corsépius <ralf.corsepius@rtems.org>
136
137        * Makefile.am: Merge thumb/Makefile.am.
138        * thumb/Makefile.am: Remove (superfluous).
139
1402008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
141
142        * cpu.c, rtems/score/cpu.h: Convert to "bool".
143
1442008-08-21      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * rtems/score/types.h: Include stdbool.h.
147        Use bool as base-type for boolean.
148
1492008-08-18      Joel Sherrill <joel.sherrill@OARcorp.com>
150
151        * cpu.c, rtems/score/cpu.h: Add void.
152
1532008-04-18      Joel Sherrill <joel.sherrill@OARcorp.com>
154
155        * cpu.c: Add comment.
156
1572008-04-17      Joel Sherrill <joel.sherrill@oarcorp.com>
158
159        * cpu.c: Add arm_cpu_mode so ARM BSP can overrid default value for
160        cpsr.
161
1622007-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
163
164        * rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
165
1662007-12-17      Joel Sherrill <joel.sherrill@OARcorp.com>
167
168        * rtems/score/cpu_asm.h: Sweep to make sure grep for COPYRIGHT passes.
169
1702007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
171
172        * rtems/score/cpu.h: Temporarily use C implementation of swap u32 for
173        thumb mode.
174
1752007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
176
177        * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
178        Table to Configuration Table. Eliminate CPU Table from all ports.
179        Delete references to CPU Table in all forms.
180
1812007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
182
183        * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
184        the Configuration Table. This included pretasking_hook,
185        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
186        extra_mpci_receive_server_stack, stack_allocate_hook, and
187        stack_free_hook. As a side-effect of this effort some multiprocessing
188        code was made conditional and some style clean up occurred.
189
1902007-11-27      Joel Sherrill <joel.sherrill@OARcorp.com>
191
192        * rtems/score/cpu.h: Do not inline _Thread_Enable_dispatch for Thumb to
193        save space.
194
1952007-11-26      Ray Xu <rayx.cn@gmail.com>
196
197        * cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
198        * cpu_asm.S: Note origin of Thumb support.
199
2002007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
201
202        * cpu.c: Fix headers.
203
2042007-11-03      Ray Xu <rayx.cn@gmail.com>
205
206        * cpu.c, cpu_asm.S, score/cpu.h : add support for ARM<->THUMB veneer
207          thumb  new dir to controll CPSR/SPRS in thumb mode
208
2092007-05-09      Ray Xu <rayx.cn@gmail.com>
210
211        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
212          implement a compact do_data_abort() in simple_abort.c
213
2142007-05-09      Ray Xu <rayx@gmail.com>
215
216        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
217          implement a compact do_data_abort() in simple_abort.c
218
2192007-05-09      Ray Xu <rayx@gmail.com>
220
221        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
222          implement a compact do_data_abort() in simple_abort.c
223
2242007-05-09      Ralf Corsépius <ralf.corsepius@rtems.org>
225
226        * rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
227
2282007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
229
230        * rtems/score/cpu.h:
231          Use Context_Control_fp* instead of void* for fp_contexts.
232          Eliminate evil casts.
233
2342006-11-17      Ralf Corsépius <ralf.corsepius@rtems.org>
235
236        * rtems/score/types.h: Remove unsigned64, signed64.
237
2382006-09-11      Joel Sherrill <joel@OARcorp.com>
239
240        * cpu.c: Remove warning.
241
2422006-06-02      Jay Monkman <jtm@lopingdog.com>
243
244        * cpu.c, cpu_asm.S: Fixed ARM Data Abort handling.
245
2462005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
247
248        * rtems/score/types.h: Eliminate unsigned16, unsigned32.
249
2502005-10-27      Ralf Corsepius <ralf.corsepius@rtems.org>
251
252        * rtems/asm.h: Remove private version of CONCAT macros.
253        Include <rtems/concat.h> instead.
254
2552005-09-15      Jay Monkman <jtm@lopingdog.com>
256
257        PR 365/rtems
258        * rtems/score/arm.h, rtems/score/cpu.h: Removed unused ARM_HAS_CLZ
259        macro.
260
2612005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
262
263        * Makefile.am: Split out preinstallation rules.
264        * preinstall.am: New (Split out from Makefile.am).
265
2662005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
267
268        PR 754/rtems
269        * rtems/asm.h: New (relocated from .).
270        * asm.h: Remove (moved to rtems/asm.h).
271        * Makefile.am: Reflect changes above.
272
2732004-01-28      Ralf Corsepius <ralf.corsepiu@rtems.org>
274
275        * asm.h, rtems/score/arm.h, rtems/score/cpu.h,
276        rtems/score/cpu_asm.h, rtems/score/types.h: New header guards.
277
2782005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
279
280        * rtems/score/types.h: Remove signed8, signed16, signed32,
281        unsigned8, unsigned16, unsigned32.
282
2832005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
284
285        * rtems/score/cpu.h: *_swap_u32( uint32_t ).
286
2872005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
288
289        * rtems/score/types.h: #include <rtems/stdint.h>.
290
2912005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
292
293        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
294
2952005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
296
297        * Makefile.am: Remove build-variant support.
298
2992004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
300
301        * rtems/score/types.h: Use __rtems_score_types_h as preprocessor
302        guard.
303
3042004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
305
306        * asm.h: Add doxygen preamble.
307
3082004-10-02      Ralf Corsepius <ralf_corsepius@rtems.org>
309
310        * rtems/score/arm.h: Add doxygen preamble.
311        * rtems/score/cpu.h: Add doxygen preamble.
312        * rtems/score/cpu_asm.h: Add doxygen preamble.
313        * rtems/score/types.h: Add doxygen preamble.
314
3152004-09-29      Joel Sherrill <joel@OARcorp.com>
316
317        * rtems/score/cpu.h: i960 obsoleted and all references removed.
318
3192004-08-19      Jay Monkman <jtm@lopingdog.com>
320
321        PR 671/bsps
322        * rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
323        was always ignored.
324
3252004-04-09      Joel Sherrill <joel@OARcorp.com>
326
327        * rtems/score/cpu.h: Fix typo.
328
3292004-04-06      Ralf Corsepius <ralf_corsepius@rtems.org>
330
331        * configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
332        * Makefile.am: Don't include multilib.am.
333        Reflect merging configure.ac into $(top_srcdir)/configure.ac.
334
3352004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
336
337        * Makefile.am: Install asm.h to $(includedir)/rtems.
338
3392004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
340
341        * cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
342
3432004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
344
345        * cpu.c, rtems/score/cpu.h: Convert to using c99 fixed size types.
346
3472004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
348
349        * configure.ac: RTEMS_TOP([../../../..]).
350
3512004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * configure.ac: Move RTEMS_TOP one subdir down.
354
3552004-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Add PREINSTALL_DIRS.
358
3592004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
362        Add PREINSTALL_FILES to CLEANFILES.
363
3642004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
365
366        * configure.ac: Requires automake >= 1.8.1.
367
3682004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * Makefile.am: Include compile.am, again.
371
3722004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * Makefile.am: Convert to using automake compilation rules.
375
3762003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES.
379
3802003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
383
3842003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * Makefile.am: Remove TMPINSTALL_FILES.
387
3882003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * Makefile.am: Add $(dirstamp) to preinstallation rules.
391
3922003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * Makefile.am: Add $(dirstamp) to preinstallation rules.
395
3962003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * Makefile.am: Don't use gmake rules for preinstallation.
399
4002003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * configure.ac: Remove RTEMS_CANONICAL_HOST.
403
4042003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * configure.ac: Remove RTEMS_CHECK_CPU.
407
4082003-09-26      Joel Sherrill <joel@OARcorp.com>
409
410        * rtems/score/cpu.h: Obsoleting HP PA-RISC port and removing all
411        references.
412
4132003-09-04      Joel Sherrill <joel@OARcorp.com>
414
415        * asm.h, cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
416        rtems/score/cpu_asm.h, rtems/score/types.h: URL for license changed.
417
4182003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
421
4222003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * Makefile.am: Use "all-local:" instead of "all:".
425
4262003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * configure.ac: Remove AC_CONFIG_AUX_DIR.
429
4302003-03-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * rtems/score/arm.h: Remove ARM_HAS_THUMB (Unused).
433
4342003-03-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
437        -D__ARMEB__. Fix minor typo in comment.
438
4392003-02-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
440
441        * rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__.
442
4432002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * configure.ac: Require autoconf-2.57 + automake-1.7.2.
446        * Makefile.am: Eliminate C_O_FILES, S_O_FILES, libscorecpu_a_OBJECTS.
447
4482002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
449
450        * configure.ac: Fix package name.
451
4522002-11-04      Joel Sherrill <joel@OARcorp.com>
453
454        * cpu.c: Removed warning.
455
4562002-11-01      Joel Sherrill <joel@OARcorp.com>
457
458        * cpu.c: Removed warnings.
459
4602002-10-31      Joel Sherrill <joel@OARcorp.com>
461
462        * rtems/score/cpu.h: Removed warning.
463
4642002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
467
4682002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * .cvsignore: Reformat.
471        Add autom4te*cache.
472        Remove autom4te.cache.
473
4742002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
475
476        * rtems/score/cpu.h: Fix u16 and u32 swap routines.
477
4782002-08-05      Joel Sherrill <joel@OARcorp.com>
479
480        * rtems/score/cpu.h, rtems/score/types.h: Updated to fix some typos.
481
4822002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
483
484        * cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
485        rtems/score/cpu_asm.h, rtems/score/types.h: ARM port works
486        well enough to run all sptests, tmtests, and ttcp. 
487        In addition to general cleanup, there has been considerable
488        optimization to interrupt disable/enable, endian swapping,
489        and context switching.
490
4912002-07-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
492
493        * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
494
4952002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * Makefile.am: Use .$(OBJEXT) instead of .o.
498
4992002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * Makefile.am: Use . instead of .o.
502
5032002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
504
505        * rtems/score/cpu_asm.h: Enhanced to include register offsets.
506        * Makefile.am: Install rtems/score/cpu_asm.h.
507        * cpu.c: Significantly enhanced including the implementation of
508        _CPU_ISR_Get_level.
509        * cpu_asm.S: Improved behavior of context switch and interrupt
510        dispatching.
511        * rtems/score/arm.h: Improved the CPU model name determination.
512        * rtems/score/cpu.h: Improved interrupt disable/enable functions.
513
5142002-07-05      Joel Sherrill <joel@OARcorp.com>
515
516        * rtems/score/cpu.h: Filled in something that was marked XXX.
517
5182002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * configure.ac: RTEMS_TOP(../../../..).
521
5222002-07-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
523
524        * rtems.c: Remove.
525        * Makefile.am: Reflect changes above.
526
5272002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
528
529        * configure.ac: Remove RTEMS_PROJECT_ROOT.
530
5312002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * configure.ac: Add RTEMS_PROG_CCAS
534
5352002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * configure.ac: Use AC_CONFIG_AUX_DIR(../../../..).
538        Add AC_PROG_RANLIB.
539
5402002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
541
542        * Makefile.am: Include $(top_srcdir)/../../../automake/*.am.
543        Use ../../../aclocal.
544
5452002-04-18      Jay Monkman <jtm@smoothsmoothie.com>
546
547        * rtems/score/cpu.h (CPU_ISR_Disable and CPU_ISR_Enable): Correct them
548        where they correctly inform the compiler about the register they
549        are modifying.
550
5512001-04-03      Joel Sherrill <joel@OARcorp.com>
552
553        * Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
554        * rtems/score/a29ktypes.h: Removed.
555        * rtems/score/types.h: New file via CVS magic.
556        * Makefile.am, rtems/score/cpu.h: Account for name change.
557
5582002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * configure.ac:
561        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
562        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
563        * Makefile.am: Remove AUTOMAKE_OPTIONS.
564
5652001-02-04      Joel Sherrill <joel@OARcorp.com>
566
567        * configure.ac: Removed references to rtems/Makefile and
568        rtems/score/Makefile.
569
5702002-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
571
572        * rtems/Makefile.am: Removed.
573        * rtems/score/Makefile.am: Removed.
574        * configure.ac: Reflect changes above.
575        * Makefile.am: Reflect changes above.
576
5772002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
578
579        * configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
580
5812002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
582
583        * cpu.c: Include rtems/bspIo.h instead of bspIo.h.
584
5852001-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
586
587        * configure.ac: Use RTEMS_ENV_RTEMSCPU.
588
5892001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
590
591        * Makefile.am: Add multilib support.
592
5932001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
594
595        * asm.h: include cpuopts.h instead of targopts.h
596        * rtems/score/arm.h: Use __arm__.
597
5982001-11-28      Joel Sherrill <joel@OARcorp.com>,
599
600        This was tracked as PR91.
601        * rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which
602        is used to specify if the port uses the standard macro for this (FALSE).
603        A TRUE setting indicates the port provides its own implementation.
604
6052001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
606
607        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
608        * configure.in: Remove.
609        * configure.ac: New file, generated from configure.in by autoupdate.
610
6112001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
612
613        * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
614        * Makefile.am: Use 'PREINSTALL_FILES ='.
615
6162001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
617
618        * Makefile.am, rtems/score/Makefile.am:
619        Apply include_*HEADERS instead of H_FILES.
620
6212001-01-03      Joel Sherrill <joel@OARcorp.com>
622
623        * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
624
6252000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
626
627        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
628
6292000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
630
631        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
632
6332000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
634
635        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
636        Switch to GNU canonicalization.
637
6382000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
639
640        * Makefile.am: Include compile.am, formatting.
641        * rtems/Makefile.am: Formatting.
642        * rtems/score/Makefile.am: Formatting.
643
6442000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
645
646        * cpu.c: Spacing issues.
647        * rtems/score/cpu.h: Removed warning by setting _level.
648
6492000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
650
651        * Makefile.am: Added S_O_FILES to list of objects.
652
6532000-08-10      Joel Sherrill <joel@OARcorp.com>
654
655        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.