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

4.104.115
Last change on this file since 9db18dd was 9db18dd, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 12/15/09 at 15:14:12

add support for ARM11, reimplement nested interrupts

  • Property mode set to 100644
File size: 16.9 KB
Line 
12009-12-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
2
3        * rtems/score/arm.h: Recognize ARMv5TEJ.
4        * arm_exc_interrupt.S: The previous implementation was broken.  In
5        case of a nested interrupt the link register of the INT mode was not
6        properly restored.  This lead to a major rewrite.  Interrupt
7        processing is now done in SVC mode.
8
92009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
10
11        * rtems/score/arm.h: Recognize ARMv7A.
12
132009-10-01      Joel Sherrill <joel.sherrill@oarcorp.com>
14
15        * rtems/score/arm.h: Recognize ARMv6J as needed by arm1136 variants.
16
172009-09-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
18
19        * rtems/score/cpu.h: Fix for inline asm in _CPU_Fatal_halt().
20        * rtems/asm.h: Added macro to define ARM functions.
21        * cpu_asm.S, arm_exc_handler_low.S: Use macro from above.
22
232009-08-19      Joel Sherrill <joel.sherrill@OARcorp.com>
24
25        * rtems/score/cpu.h: Mark _CPU_Context_restore() as noreturn so the
26        compiler will not generate code thinking it returns.
27
282009-07-15      Sebastian Huber <sebastian.huber@embedded-brains.de>
29
30        * arm_exc_handler_high.c, arm_exc_handler_low.S, arm_exc_interrupt.S:
31        New files.
32        * Makefile.am: Update.
33        * rtems/score/cpu.h:  Removed all generic comments.  Changed inline
34        assembler of interrupt support functions.  Removed operating system
35        support for fast interrupts (FIQ).  Overall cleanup.
36        * cpu.c: Changed type of arm_cpu_mode to uint32_t to match the type in
37        _CPU_Context_Initialize().  Moved exception handler code into
38        'arm_exc_handler_high.c'.  _CPU_ISR_install_vector() writes now only
39        if necessary.
40        * cpu_asm.S: Moved exception handler code into 'arm_exc_handler_low.S'.
41        * rtems/score/types.h: Removed superfluous defines.
42        * ChangeLog, thumb_isr.c: Removed files.
43
442009-05-05      Joel Sherrill <joel.sherrill@oarcorp.com>
45
46        * rtems/score/cpu.h: Remove warnings.
47
482009-02-11      Joel Sherrill <joel.sherrill@oarcorp.com>
49
50        * cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and
51        passing address of _Thread_Dispatch to _CPU_Initialize. Clean up
52        comments.
53
542008-09-11      Ralf Corsépius <ralf.corsepius@rtems.org>
55
56        * rtems/score/types.h: Do not define boolean, single_precision,
57        double_precision unless RTEMS_DEPRECATED_TYPES is given.
58
592008-09-08      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * cpu.c: Remove extraneous spaces.
62
632008-09-07      Ralf Corsépius <ralf.corsepius@rtems.org>
64
65        * Makefile.am: Merge thumb/Makefile.am.
66        * thumb/Makefile.am: Remove (superfluous).
67
682008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * cpu.c, rtems/score/cpu.h: Convert to "bool".
71
722008-08-21      Ralf Corsépius <ralf.corsepius@rtems.org>
73
74        * rtems/score/types.h: Include stdbool.h.
75        Use bool as base-type for boolean.
76
772008-08-18      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * cpu.c, rtems/score/cpu.h: Add void.
80
812008-04-18      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * cpu.c: Add comment.
84
852008-04-17      Joel Sherrill <joel.sherrill@oarcorp.com>
86
87        * cpu.c: Add arm_cpu_mode so ARM BSP can overrid default value for
88        cpsr.
89
902007-12-17      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * rtems/score/cpu.h: Add _CPU_Context_Get_SP() for stack check utility.
93
942007-12-17      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * rtems/score/cpu_asm.h: Sweep to make sure grep for COPYRIGHT passes.
97
982007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * rtems/score/cpu.h: Temporarily use C implementation of swap u32 for
101        thumb mode.
102
1032007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * cpu.c, rtems/score/cpu.h: Move interrupt_stack_size field from CPU
106        Table to Configuration Table. Eliminate CPU Table from all ports.
107        Delete references to CPU Table in all forms.
108
1092007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * rtems/score/cpu.h: Moved most of the remaining CPU Table fields to
112        the Configuration Table. This included pretasking_hook,
113        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
114        extra_mpci_receive_server_stack, stack_allocate_hook, and
115        stack_free_hook. As a side-effect of this effort some multiprocessing
116        code was made conditional and some style clean up occurred.
117
1182007-11-27      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * rtems/score/cpu.h: Do not inline _Thread_Enable_dispatch for Thumb to
121        save space.
122
1232007-11-26      Ray Xu <rayx.cn@gmail.com>
124
125        * cpu.c, score/cpu.h: Fix headers. Remove extra inline definition.
126        * cpu_asm.S: Note origin of Thumb support.
127
1282007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
129
130        * cpu.c: Fix headers.
131
1322007-11-03      Ray Xu <rayx.cn@gmail.com>
133
134        * cpu.c, cpu_asm.S, score/cpu.h : add support for ARM<->THUMB veneer
135          thumb  new dir to controll CPSR/SPRS in thumb mode
136
1372007-05-09      Ray Xu <rayx.cn@gmail.com>
138
139        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
140          implement a compact do_data_abort() in simple_abort.c
141
1422007-05-09      Ray Xu <rayx@gmail.com>
143
144        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
145          implement a compact do_data_abort() in simple_abort.c
146
1472007-05-09      Ray Xu <rayx@gmail.com>
148
149        * cpu.c: move do_data_abort() to libbsp/arm/shared/abort/
150          implement a compact do_data_abort() in simple_abort.c
151
1522007-05-09      Ralf Corsépius <ralf.corsepius@rtems.org>
153
154        * rtems/score/cpu.h: Remove CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES.
155
1562007-04-17      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * rtems/score/cpu.h:
159          Use Context_Control_fp* instead of void* for fp_contexts.
160          Eliminate evil casts.
161
1622006-11-17      Ralf Corsépius <ralf.corsepius@rtems.org>
163
164        * rtems/score/types.h: Remove unsigned64, signed64.
165
1662006-09-11      Joel Sherrill <joel@OARcorp.com>
167
168        * cpu.c: Remove warning.
169
1702006-06-02      Jay Monkman <jtm@lopingdog.com>
171
172        * cpu.c, cpu_asm.S: Fixed ARM Data Abort handling.
173
1742005-11-08      Ralf Corsepius <ralf.corsepius@rtems.org>
175
176        * rtems/score/types.h: Eliminate unsigned16, unsigned32.
177
1782005-10-27      Ralf Corsepius <ralf.corsepius@rtems.org>
179
180        * rtems/asm.h: Remove private version of CONCAT macros.
181        Include <rtems/concat.h> instead.
182
1832005-09-15      Jay Monkman <jtm@lopingdog.com>
184
185        PR 365/rtems
186        * rtems/score/arm.h, rtems/score/cpu.h: Removed unused ARM_HAS_CLZ
187        macro.
188
1892005-02-08      Ralf Corsepius <ralf.corsepius@rtems.org>
190
191        * Makefile.am: Split out preinstallation rules.
192        * preinstall.am: New (Split out from Makefile.am).
193
1942005-02-04      Ralf Corsepius <ralf.corsepius@rtems.org>
195
196        PR 754/rtems
197        * rtems/asm.h: New (relocated from .).
198        * asm.h: Remove (moved to rtems/asm.h).
199        * Makefile.am: Reflect changes above.
200
2012004-01-28      Ralf Corsepius <ralf.corsepiu@rtems.org>
202
203        * asm.h, rtems/score/arm.h, rtems/score/cpu.h,
204        rtems/score/cpu_asm.h, rtems/score/types.h: New header guards.
205
2062005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * rtems/score/types.h: Remove signed8, signed16, signed32,
209        unsigned8, unsigned16, unsigned32.
210
2112005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
212
213        * rtems/score/cpu.h: *_swap_u32( uint32_t ).
214
2152005-01-24      Ralf Corsepius <ralf.corsepius@rtems.org>
216
217        * rtems/score/types.h: #include <rtems/stdint.h>.
218
2192005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
222
2232005-01-01      Ralf Corsepius <ralf.corsepius@rtems.org>
224
225        * Makefile.am: Remove build-variant support.
226
2272004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
228
229        * rtems/score/types.h: Use __rtems_score_types_h as preprocessor
230        guard.
231
2322004-11-21      Ralf Corsepius <ralf.corsepius@rtems.org>
233
234        * asm.h: Add doxygen preamble.
235
2362004-10-02      Ralf Corsepius <ralf_corsepius@rtems.org>
237
238        * rtems/score/arm.h: Add doxygen preamble.
239        * rtems/score/cpu.h: Add doxygen preamble.
240        * rtems/score/cpu_asm.h: Add doxygen preamble.
241        * rtems/score/types.h: Add doxygen preamble.
242
2432004-09-29      Joel Sherrill <joel@OARcorp.com>
244
245        * rtems/score/cpu.h: i960 obsoleted and all references removed.
246
2472004-08-19      Jay Monkman <jtm@lopingdog.com>
248
249        PR 671/bsps
250        * rtems/score/cpu.h: Fixed bug in _CPU_ISR_Set_level, where input param
251        was always ignored.
252
2532004-04-09      Joel Sherrill <joel@OARcorp.com>
254
255        * rtems/score/cpu.h: Fix typo.
256
2572004-04-06      Ralf Corsepius <ralf_corsepius@rtems.org>
258
259        * configure.ac: Remove (Merged into $(top_srcdir)/configure.ac).
260        * Makefile.am: Don't include multilib.am.
261        Reflect merging configure.ac into $(top_srcdir)/configure.ac.
262
2632004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
264
265        * Makefile.am: Install asm.h to $(includedir)/rtems.
266
2672004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
268
269        * cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
270
2712004-03-30      Ralf Corsepius <ralf_corsepius@rtems.org>
272
273        * cpu.c, rtems/score/cpu.h: Convert to using c99 fixed size types.
274
2752004-03-29      Ralf Corsepius <ralf_corsepius@rtems.org>
276
277        * configure.ac: RTEMS_TOP([../../../..]).
278
2792004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * configure.ac: Move RTEMS_TOP one subdir down.
282
2832004-01-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * Makefile.am: Add PREINSTALL_DIRS.
286
2872004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * Makefile.am: Re-add dirstamps to PREINSTALL_FILES.
290        Add PREINSTALL_FILES to CLEANFILES.
291
2922004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * configure.ac: Requires automake >= 1.8.1.
295
2962004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * Makefile.am: Include compile.am, again.
299
3002004-01-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * Makefile.am: Convert to using automake compilation rules.
303
3042003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Use mkdir_p. Remove dirs from PREINSTALL_FILES.
307
3082003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
311
3122003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * Makefile.am: Remove TMPINSTALL_FILES.
315
3162003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * Makefile.am: Add $(dirstamp) to preinstallation rules.
319
3202003-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * Makefile.am: Add $(dirstamp) to preinstallation rules.
323
3242003-11-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * Makefile.am: Don't use gmake rules for preinstallation.
327
3282003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * configure.ac: Remove RTEMS_CANONICAL_HOST.
331
3322003-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * configure.ac: Remove RTEMS_CHECK_CPU.
335
3362003-09-26      Joel Sherrill <joel@OARcorp.com>
337
338        * rtems/score/cpu.h: Obsoleting HP PA-RISC port and removing all
339        references.
340
3412003-09-04      Joel Sherrill <joel@OARcorp.com>
342
343        * asm.h, cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
344        rtems/score/cpu_asm.h, rtems/score/types.h: URL for license changed.
345
3462003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
349
3502003-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Use "all-local:" instead of "all:".
353
3542003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * configure.ac: Remove AC_CONFIG_AUX_DIR.
357
3582003-03-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * rtems/score/arm.h: Remove ARM_HAS_THUMB (Unused).
361
3622003-03-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * rtems/score/cpu.h: Set up CPU_*_ENDIAN based on -D__ARMEL__ and
365        -D__ARMEB__. Fix minor typo in comment.
366
3672003-02-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * rtems/score/arm.h: Set up ARM_HAS_FPU based on -D__SOFTFP__.
370
3712002-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * configure.ac: Require autoconf-2.57 + automake-1.7.2.
374        * Makefile.am: Eliminate C_O_FILES, S_O_FILES, libscorecpu_a_OBJECTS.
375
3762002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * configure.ac: Fix package name.
379
3802002-11-04      Joel Sherrill <joel@OARcorp.com>
381
382        * cpu.c: Removed warning.
383
3842002-11-01      Joel Sherrill <joel@OARcorp.com>
385
386        * cpu.c: Removed warnings.
387
3882002-10-31      Joel Sherrill <joel@OARcorp.com>
389
390        * rtems/score/cpu.h: Removed warning.
391
3922002-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * configure.ac: Add nostdinc to AM_INIT_AUTOMAKE.
395
3962002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * .cvsignore: Reformat.
399        Add autom4te*cache.
400        Remove autom4te.cache.
401
4022002-10-04      Jay Monkman <jtm@smoothsmoothie.com>
403
404        * rtems/score/cpu.h: Fix u16 and u32 swap routines.
405
4062002-08-05      Joel Sherrill <joel@OARcorp.com>
407
408        * rtems/score/cpu.h, rtems/score/types.h: Updated to fix some typos.
409
4102002-07-30      Jay Monkman <jtm@smoothsmoothie.com>
411
412        * cpu.c, cpu_asm.S, rtems/score/arm.h, rtems/score/cpu.h,
413        rtems/score/cpu_asm.h, rtems/score/types.h: ARM port works
414        well enough to run all sptests, tmtests, and ttcp. 
415        In addition to general cleanup, there has been considerable
416        optimization to interrupt disable/enable, endian swapping,
417        and context switching.
418
4192002-07-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
420
421        * Makefile.am: Build libscorecpu.a instead of rtems-cpu.rel.
422
4232002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * Makefile.am: Use .$(OBJEXT) instead of .o.
426
4272002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * Makefile.am: Use . instead of .o.
430
4312002-07-17      Jay Monkman <jtm@smoothsmoothie.com>
432
433        * rtems/score/cpu_asm.h: Enhanced to include register offsets.
434        * Makefile.am: Install rtems/score/cpu_asm.h.
435        * cpu.c: Significantly enhanced including the implementation of
436        _CPU_ISR_Get_level.
437        * cpu_asm.S: Improved behavior of context switch and interrupt
438        dispatching.
439        * rtems/score/arm.h: Improved the CPU model name determination.
440        * rtems/score/cpu.h: Improved interrupt disable/enable functions.
441
4422002-07-05      Joel Sherrill <joel@OARcorp.com>
443
444        * rtems/score/cpu.h: Filled in something that was marked XXX.
445
4462002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * configure.ac: RTEMS_TOP(../../../..).
449
4502002-07-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * rtems.c: Remove.
453        * Makefile.am: Reflect changes above.
454
4552002-07-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * configure.ac: Remove RTEMS_PROJECT_ROOT.
458
4592002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * configure.ac: Add RTEMS_PROG_CCAS
462
4632002-06-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
464
465        * configure.ac: Use AC_CONFIG_AUX_DIR(../../../..).
466        Add AC_PROG_RANLIB.
467
4682002-06-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * Makefile.am: Include $(top_srcdir)/../../../automake/*.am.
471        Use ../../../aclocal.
472
4732002-04-18      Jay Monkman <jtm@smoothsmoothie.com>
474
475        * rtems/score/cpu.h (CPU_ISR_Disable and CPU_ISR_Enable): Correct them
476        where they correctly inform the compiler about the register they
477        are modifying.
478
4792001-04-03      Joel Sherrill <joel@OARcorp.com>
480
481        * Per PR94, all rtems/score/CPUtypes.h are named rtems/score/types.h.
482        * rtems/score/a29ktypes.h: Removed.
483        * rtems/score/types.h: New file via CVS magic.
484        * Makefile.am, rtems/score/cpu.h: Account for name change.
485
4862002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
487
488        * configure.ac:
489        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
490        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
491        * Makefile.am: Remove AUTOMAKE_OPTIONS.
492
4932001-02-04      Joel Sherrill <joel@OARcorp.com>
494
495        * configure.ac: Removed references to rtems/Makefile and
496        rtems/score/Makefile.
497
4982002-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
499
500        * rtems/Makefile.am: Removed.
501        * rtems/score/Makefile.am: Removed.
502        * configure.ac: Reflect changes above.
503        * Makefile.am: Reflect changes above.
504
5052002-02-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * configure.ac: Remove RTEMS_CHECK_CUSTOM_BSP.
508
5092002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * cpu.c: Include rtems/bspIo.h instead of bspIo.h.
512
5132001-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * configure.ac: Use RTEMS_ENV_RTEMSCPU.
516
5172001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
518
519        * Makefile.am: Add multilib support.
520
5212001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * asm.h: include cpuopts.h instead of targopts.h
524        * rtems/score/arm.h: Use __arm__.
525
5262001-11-28      Joel Sherrill <joel@OARcorp.com>,
527
528        This was tracked as PR91.
529        * rtems/score/cpu.h: Added CPU_PROVIDES_ISR_IS_IN_PROGRESS macro which
530        is used to specify if the port uses the standard macro for this (FALSE).
531        A TRUE setting indicates the port provides its own implementation.
532
5332001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
536        * configure.in: Remove.
537        * configure.ac: New file, generated from configure.in by autoupdate.
538
5392001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
540
541        * rtems/score/Makefile.am: Use 'PREINSTALL_FILES ='.
542        * Makefile.am: Use 'PREINSTALL_FILES ='.
543
5442001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
545
546        * Makefile.am, rtems/score/Makefile.am:
547        Apply include_*HEADERS instead of H_FILES.
548
5492001-01-03      Joel Sherrill <joel@OARcorp.com>
550
551        * rtems/score/cpu.h: Added _CPU_Initialize_vectors().
552
5532000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
554
555        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
556
5572000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
560
5612000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
562
563        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
564        Switch to GNU canonicalization.
565
5662000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
567
568        * Makefile.am: Include compile.am, formatting.
569        * rtems/Makefile.am: Formatting.
570        * rtems/score/Makefile.am: Formatting.
571
5722000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
573
574        * cpu.c: Spacing issues.
575        * rtems/score/cpu.h: Removed warning by setting _level.
576
5772000-08-29      Joel Sherrill <joel.sherrill@OARcorp.com>
578
579        * Makefile.am: Added S_O_FILES to list of objects.
580
5812000-08-10      Joel Sherrill <joel@OARcorp.com>
582
583        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.