source: rtems/c/src/lib/libbsp/c4x/c4xsim/ChangeLog @ 820d1ab0

4.104.115
Last change on this file since 820d1ab0 was 820d1ab0, checked in by Chris Johns <chrisj@…>, on 04/28/09 at 06:34:00

2009-04-28 Chris Johns <chrisj@…>

  • start/start.S: Update for boot_card command line change.
  • Property mode set to 100644
File size: 17.1 KB
Line 
12009-04-28      Chris Johns <chrisj@rtems.org>
2
3        * start/start.S: Update for boot_card command line change.
4
52008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * bsp_specs: Move -e start from *link to *startfile to avoid warning
8        for undefined entry symbol when linking relocatables with binutils
9        2.19.
10
112008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
12
13        * clock/clock.c: include "../../../shared/clockdrv_shell.h".
14        * Makefile.am: Reflect changes above.
15
162008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
17
18        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
19        of building libbspstart.a, using automake-rules.
20
212008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * Makefile.am: Eliminate *_SOURCES.
24
252008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
28        components.
29
302008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * Makefile.am: Remove noinst_PROGRAMS (Unused).
33
342008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * configure.ac: Make letting boot_card() handle work area allocation
37        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
38        BSP_BOOTCARD_OPTIONS.
39
402008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * Makefile.am, console/debugio.c: Split out bspstart contents. Use
43        shared stub for bsp_start.
44        * startup/bsppretaskinghook.c: New file.
45        * startup/bspstart.c: Removed.
46
472008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
48
49        * include/bsp.h: Remove unnecessary boilerplate comments.
50
512008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
52
53        * Makefile.am, startup/linkcmds: Use top level shared
54        bsp_get_work_area() implementation.
55        * startup/bspgetworkarea.c: Removed.
56
572008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * clock/clock.c, startup/bspstart.c, startup/linkcmds: Add use of
60        bsp_get_work_area() in its own file and rely on BSP Framework to
61        perform more initialization.
62        * startup/bspgetworkarea.c: New file.
63
642008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
65
66        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
67        phase, all prototypes were removed from bsp.h and empty
68        implementations were removed and made to use the shared stub.
69
702008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
71
72        * timer/timer.c: Convert to "bool".
73
742008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
75
76        * timer/timer.c: Eliminate empty function from every benchmark timer
77        driver. Fix spelling.
78
792008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * timer/timer.c: Rename timer driver methods to follow RTEMS
82        programming conventions.
83
842008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
87        Framework to ask the BSP where it has memory for the RTEMS Workspace
88        and C Program Heap. These collectively are referred to as work area.
89        If the BSP supports this, then it does not have to include code to
90        split the available memory between the two areas. This reduces the
91        amount of code in the BSP specific bspstart.c file. Additionally, the
92        shared framework can initialize the C Library, call
93        rtems_debug_enable(), and dirty the work area memory. Until most/all
94        BSPs support this new capability, if the BSP supports this, it should
95        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
96        When the transition is complete, this autoconf macro can be removed.
97
982008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * Makefile.am: Rework to avoid .rel files.
101
1022008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
103
104        * startup/bspstart.c: Refactored and renamed initialization routines to
105        rtems_initialize_data_structures, rtems_initialize_before_drivers,
106        rtems_initialize_device_drivers, and
107        rtems_initialize_start_multitasking. This opened the sequence up so
108        that bootcard() could provide a more robust and flexible framework
109        which is easier to explain and understand. This also lays the
110        groundwork for sharing the division of available memory between the
111        RTEMS workspace and heap and the C library initialization across all
112        BSPs.
113
1142007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
115
116        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
117        the Configuration Table. Use the RTEMS provided accessor macros to
118        obtain configuration fields.
119
1202007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
123        from CPU Table to Configuration Table. Eliminate CPU Table from all
124        ports. Delete references to CPU Table in all forms.
125
1262007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
129        Table fields to the Configuration Table. This included
130        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
131        do_zero_of_workspace, extra_mpci_receive_server_stack,
132        stack_allocate_hook, and stack_free_hook. As a side-effect of this
133        effort some multiprocessing code was made conditional and some style
134        clean up occurred.
135
1362007-05-11      Ralf Corsépius <ralf.corsepius@rtems.org>
137
138        * clock/clock.c: include <tic4x/c4xio.h>.
139
1402007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
141
142        * bsp_specs: Remove qrtems_debug.
143
1442006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * configure.ac: New BUG-REPORT address.
147
1482006-11-15      Joel Sherrill <joel@OARcorp.com>
149
150        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
151        file and simplified initialization.
152
1532006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
154
155        * Makefile.am: Remove superfluous -DASM.
156
1572006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * configure.ac: Require autoconf-2.60. Require automake-1.10.
160
1612006-05-31      Joel Sherrill <joel@OARcorp.com>
162
163        * clock/clock.c: Switch to using shared clock driver shell.
164
1652006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
166
167        * Makefile.am: Add preinstall.am.
168
1692005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
170
171        * include/bsp.h: New header guard.
172
1732005-02-02      Ralf Corsepius <ralf.corsepius@rtems.org>
174
175        * include/tm27.h, timer/timer.c: #include <rtems/tic4x/c4xio.h>
176        instead of <rtems/tic4x/c4xio.h>.
177
1782005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
179
180        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
181
1822005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
183
184        * Makefile.am: Remove build-variant support.
185
1862004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
187
188        * configure.ac: Require automake > 1.9.
189
1902004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
191
192        PR 610/bsps
193        * Makefile.am: Add include/tm27.h, Cosmetics.
194        * include/tm27.h: Final cosmetics.
195
1962004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
197
198        * include/bsp.h: Split out tmtest27 support.
199        * include/tm27.h: New.
200
2012004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        PR 613/bsps
204        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
205
2062004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
207
208        PR 614/bsps
209        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
210
2112004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
212
213        * clock/clock.c, include/bsp.h, timer/timer.c: Include
214        <rtems/c4x/c4xio.h> instead of <c4xio.h>.
215
2162004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
217
218        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
219        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
220        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
221
2222004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
223
224        * clock/clock.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
225        Convert to using c99 fixed size types.
226
2272004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Reflect changes to bsp.am.
230        Preinstall dist_project_lib*.
231
2322004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
233
234        * Makefile.am: Reflect changes to bsp.am.
235
2362004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
237
238        * Makefile.am: Reflect changes to bsp.am.
239
2402004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
241
242        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
243
2442004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
245
246        * Makefile.am: Pickup files from ../../c4x/shared instead of
247        ../shared. Reformat.
248
2492004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
250
251        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
252        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
253        wrapup/Makefile.am.
254        Use automake compilation rules.
255        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
256        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
257        Remove.
258        * configure.ac: Reflect changes above.
259
2602004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
263        Add RTEMS_PROG_CCAS.
264
2652004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Add PREINSTALL_DIRS.
268
2692004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
270
271        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
272        Add PRE/TMPINSTALL_FILES to CLEANFILES.
273        * start/Makefile.am: Ditto.
274        * startup/Makefile.am: Ditto.
275
2762004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * wrapup/Makefile.am: Eliminate $(LIB).
279        Use noinst_DATA to trigger building libbsp.a.
280
2812003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
282
283        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
284        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
285
2862003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
289        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
290
2912003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
294
2952003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * start/Makefile.am: Misc cleanups and fixes.
298        * startup/Makefile.am: Misc cleanups and fixes.
299        * wrapup/Makefile.am: Misc cleanups and fixes.
300
3012003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * Makefile.am: Add preinstallation dirstamp support.
304        * clock/Makefile.am: Cosmetics.
305        * console/Makefile.am: Cosmetics.
306        * startup/Makefile.am: Cosmetics.
307        * timer/Makefile.am: Cosmetics.
308        * wrapup/Makefile.am: Cosmetics.
309
3102003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * clock/Makefile.am: Remove all-local: $(ARCH).
313        * console/Makefile.am: Remove all-local: $(ARCH).
314        * start/Makefile.am: Remove all-local: $(ARCH).
315        * startup/Makefile.am: Remove all-local: $(ARCH).
316        * timer/Makefile.am: Remove all-local: $(ARCH).
317        * wrapup/Makefile.am: Remove all-local: $(ARCH).
318
3192003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * Makefile.am: Merge-in include/Makefile.am.
322        Reflect changes to bsp.am.
323        * include/Makefile.am: Remove.
324        * configure.ac: Reflect changes above.
325
3262003-09-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * bsp_specs: Remove *lib:.
329
3302003-09-04      Joel Sherrill <joel@OARcorp.com>
331
332        * clock/clock.c, console/console.c, console/consolereserveresources.c,
333        console/debugio.c, include/bsp.h, startup/bspstart.c,
334        startup/spurious.c, timer/timer.c: URL for license changed.
335
3362003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Reflect having moved aclocal/.
339
3402003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Reflect having moved automake/.
343        * clock/Makefile.am: Reflect having moved automake/.
344        * console/Makefile.am: Reflect having moved automake/.
345        * include/Makefile.am: Reflect having moved automake/.
346        * start/Makefile.am: Reflect having moved automake/.
347        * startup/Makefile.am: Reflect having moved automake/.
348        * timer/Makefile.am: Reflect having moved automake/.
349        * wrapup/Makefile.am: Reflect having moved automake/.
350
3512003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        PR 452/bsps
354        * startup/Makefile.am: Remove USE_INIT_FINI.
355
3562003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
359
3602003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        PR 445/bsps
363        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
364        Remove cpp, old_cpp (now unused).
365
3662003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * configure.ac: Remove AC_CONFIG_AUX_DIR.
369
3702003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
373
3742003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * configure.ac: AC_PREREQ(2.57).
377
3782003-01-20      Joel Sherrill <joel@OARcorp.com>
379
380        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
381
3822002-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
385        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
386        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
387        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
388        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
389
3902002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
393        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
394        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
395        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
396        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
397
3982002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * start/Makefile.am: Use install-data-local to install startfile.
401
4022002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
403
404        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405
4062002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
409        changes.
410
4112002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * .cvsignore: Reformat.
414        Add autom4te*cache.
415        Remove autom4te.cache.
416
4172002-09-14      Joel Sherrill <joel@OARcorp.com>
418
419        * clock/clock.c: Per PR257, remove reference to c3x_set_ie.
420        c4x variant should use c4x_set_iie().
421
4222002-08-21      Joel Sherrill <joel@OARcorp.com>
423
424        * bsp_specs: Added support for -nostdlibs.
425
4262002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
429        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
430        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
431        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
432        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
433        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
434
4352002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
436
437        * start/Makefile.am: Eliminate PGM.
438        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
439
4402002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
443
4442002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
447        Remove $(OBJS) from all-local.
448
4492002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
452
4532002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * configure.ac:
456        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
457        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
458        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
459        * Makefile.am: Remove AUTOMAKE_OPTIONS.
460        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
461        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
462        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
463        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
464        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
465        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
466
4672002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
470        * startup/spurious.c: Include rtems/bspIo.h instead of bspIo.h.
471
4722001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
475        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
476
4772001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
480
4812001-10-12      Joel Sherrill <joel@OARcorp.com>
482
483        * console/console.c: Fixed typo.
4842001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
487        * configure.in: Remove.
488        * configure.ac: New file, generated from configure.in by autoupdate.
489
4902001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * include/Makefile.am: Use 'CLEANFILES ='.
493        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
494
4952001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * configure.in: Add bspopts.h, fix PACKAGE.
498        * include/.cvsignore: Add bspopts.h*, stamp-h*.
499        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
500        * include/bsp.h: Include bspopts.h.
501
5022001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
503
504        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
505
5062000-12-06      Joel Sherrill <joel@OARcorp.com>
507
508        * console/consolereserveresources.c: Removed code NOT file (YET).
509
5102000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
513
5142000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
517
5182000-11-01      Joel Sherrill <joel@OARcorp.com>
519
520        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
521        and libcsupport.h moved from libc to lib/include/rtems and
522        now must be referenced as <rtems/XXX.h>.   Header file order
523        was cleaned up while doing this.
524
5252000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
528        Switch to GNU canonicalization.
529
5302000-09-22      Joel Sherrill <joel@OARcorp.com>
531
532        * startup/linkcmds: Use default object format to avoid name
533        changes in object format due to tool version changes.
534
5352000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
538        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
539        Include compile.am
540
5412000-08-10      Joel Sherrill <joel@OARcorp.com>
542
543        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.