source: rtems/c/src/lib/libbsp/m32c/m32cbsp/ChangeLog @ 49c8f45

4.104.115
Last change on this file since 49c8f45 was 6b2b37d2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/15/09 at 14:45:47

2009-09-15 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
  • Property mode set to 100644
File size: 17.0 KB
Line 
12009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
4
5 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
8        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
9        have the same options.
10
112009-05-18      Joel Sherrill <joel.sherrill@OARcorp.com>
12
13        * console/console-io.c: Fix typo.
14
152009-04-28      Chris Johns <chrisj@rtems.org>
16
17        * start/start.S: Update for boot_card command line change.
18
192008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
20
21        * bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
22        to avoid warning for undefined entry symbol when linking relocatables
23        with binutils 2.19.
24
252008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
26
27        * README: New file.
28
292008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac,
32        preinstall.am, console/console-io.c, console/syscalls.S,
33        include/.cvsignore, include/bsp.h, start/start.S, startup/bspstart.c,
34        startup/crtn.S, startup/linkcmds, timer/timer.c, tools/.cvsignore,
35        tools/Makefile.am, tools/configure.ac, tools/runtest.in: New files.
36
372008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
38
39        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
40
412008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * console/console-io.c: Add missing file and remove junk code.
44        * console/syscalls.S: New file.
45
462008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * startup/linkcmds: Simulator now appears to have 16M RAM support by
49        default in gdb 6.8.
50
512008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
52
53        * Makefile.am, console/console-io.c, include/bsp.h:
54
552008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * configure.ac: Make letting boot_card() handle work area allocation
58        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
59        BSP_BOOTCARD_OPTIONS.
60
612008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * Makefile.am: Split out bspstart contents. Use shared stub for
64        bsp_start.
65        * startup/h8bdinstallirq.c: New file.
66        * startup/bspstart.c: Removed.
67
682008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
69
70        * include/bsp.h: Remove unnecessary boilerplate comments.
71
722008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * Makefile.am, startup/linkcmds: Use top level shared
75        bsp_get_work_area() implementation.
76        * startup/bspgetworkarea.c: Removed.
77
782008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
79
80        * startup/bspstart.c: Remove unnecessary includes of
81        rtems/libcsupport.h and rtems/libio.h.
82
832008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
84
85        * Makefile.am, configure.ac, startup/__main.c, startup/bspstart.c:
86        Split out bsp_get_work_area() into its own file and user BSP
87        Framework to perform more initialization.
88        * startup/bspgetworkarea.c: New file.
89
902008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
93        phase, all prototypes were removed from bsp.h and empty
94        implementations were removed and made to use the shared stub.
95
962008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
97
98        * startup/__main.c: Add missing prototypes.
99
1002008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
101
102        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
103        Framework to ask the BSP where it has memory for the RTEMS Workspace
104        and C Program Heap. These collectively are referred to as work area.
105        If the BSP supports this, then it does not have to include code to
106        split the available memory between the two areas. This reduces the
107        amount of code in the BSP specific bspstart.c file. Additionally, the
108        shared framework can initialize the C Library, call
109        rtems_debug_enable(), and dirty the work area memory. Until most/all
110        BSPs support this new capability, if the BSP supports this, it should
111        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
112        When the transition is complete, this autoconf macro can be removed.
113
1142008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
115
116        * Makefile.am: Rework to avoid .rel files.
117
1182008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * startup/bspstart.c: Refactored and renamed initialization routines to
121        rtems_initialize_data_structures, rtems_initialize_before_drivers,
122        rtems_initialize_device_drivers, and
123        rtems_initialize_start_multitasking. This opened the sequence up so
124        that bootcard() could provide a more robust and flexible framework
125        which is easier to explain and understand. This also lays the
126        groundwork for sharing the division of available memory between the
127        RTEMS workspace and heap and the C library initialization across all
128        BSPs.
129
1302007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
131
132        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
133        Configuration Table. Use the RTEMS provided accessor macros to obtain
134        configuration fields.
135
1362007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
137
138        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
139        Configuration Table. Eliminate CPU Table from all ports. Delete
140        references to CPU Table in all forms.
141
1422007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
143
144        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
145        Table fields to the Configuration Table. This included
146        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
147        do_zero_of_workspace, extra_mpci_receive_server_stack,
148        stack_allocate_hook, and stack_free_hook. As a side-effect of this
149        effort some multiprocessing code was made conditional and some style
150        clean up occurred.
151
1522007-05-03      Joel Sherrill <joel@OARcorp.com>
153
154        * startup/linkcmds: Handle .data.* sections
155
1562007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * bsp_specs: Remove qrtems_debug.
159
1602006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
161
162        * configure.ac: New BUG-REPORT address.
163
1642006-11-15      Joel Sherrill <joel@OARcorp.com>
165
166        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
167        file and simplified initialization.
168
1692006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
170
171        * Makefile.am: Remove superfluous -DASM.
172
1732006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
174
175        * configure.ac: Require autoconf-2.60. Require automake-1.10.
176
1772006-02-08      Joel Sherrill <joel@OARcorp.com>
178
179        * startup/linkcmds: Add sections required by newer gcc versions.
180
1812006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
182
183        * Makefile.am: Add preinstall.am.
184
1852005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
186
187        * include/bsp.h: New header guard.
188
1892005-05-11      Joel Sherrill <joel@OARcorp.com>
190
191        * startup/linkcmds: Add .rodata.* sections.
192
1932005-03-07      Joel Sherrill <joel@OARcorp.com>
194
195        * Makefile.am: Add timerstub so more tests link.
196
1972005-03-07      Joel Sherrill <joel@OARcorp.com>
198
199        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
200
2012005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
202
203        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
204
2052005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
206
207        * Makefile.am: Remove build-variant support.
208
2092004-09-29      Joel Sherrill <joel@OARcorp.com>
210
211        * include/bsp.h, include/tm27.h: i960 obsoleted and all references
212        removed.
213
2142004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
215
216        * configure.ac: Require automake > 1.9.
217
2182004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
219
220        PR 610/bsps
221        * Makefile.am: Add include/tm27.h, Cosmetics.
222        * include/tm27.h: Final cosmetics.
223
2242004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
225
226        * include/bsp.h: Split out tmtest27 support.
227        * include/tm27.h: New.
228
2292004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
230
231        PR 613/bsps
232        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
233
2342004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
235
236        PR 614/bsps
237        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
238
2392004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
240
241        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
242        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
243        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
244
2452004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
246
247        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
248        types.
249
2502004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Reflect changes to bsp.am.
253        Preinstall dist_project_lib*.
254
2552004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Reflect changes to bsp.am.
258
2592004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
262
2632004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
266        start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am.
267        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
268        startup/Makefile.am, wrapup/Makefile.am: Remove.
269        Use automake compilation rules.
270        * configure.ac: Reflect changes above.
271
2722004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * Makefile.am: Add PREINSTALL_DIRS.
275
2762004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
279        Add PRE/TMPINSTALL_FILES to CLEANFILES.
280        * startup/Makefile.am: Ditto.
281
2822004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * wrapup/Makefile.am: Eliminate $(LIB).
285        Use noinst_DATA to trigger building libbsp.a.
286
2872003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
290        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
291
2922003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
295        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
296
2972003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
300
3012003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * clock/Makefile.am: Misc cleanups and fixes.
304        * start/Makefile.am: Misc cleanups and fixes.
305        * startup/Makefile.am: Misc cleanups and fixes.
306        * wrapup/Makefile.am: Misc cleanups and fixes.
307
3082003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * Makefile.am: Add dirstamps to preinstallation.
311        * clock/Makefile.am: Cosmetics.
312        * console/Makefile.am: Cosmetics.
313        * startup/Makefile.am: Cosmetics.
314        * wrapup/Makefile.am: Cosmetics.
315
3162003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * clock/Makefile.am: Remove all-local: $(ARCH).
319        * console/Makefile.am: Remove all-local: $(ARCH).
320        * start/Makefile.am: Remove all-local: $(ARCH).
321        * startup/Makefile.am: Remove all-local: $(ARCH).
322        * wrapup/Makefile.am: Remove all-local: $(ARCH).
323
3242003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * Makefile.am: Merge-in include/Makefile.am.
327        Reflect changes to bsp.am.
328        * include/Makefile.am: Remove.
329        * configure.ac: Reflect changes above.
330
3312003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * bsp_specs: Remove *lib:.
334
3352003-09-04      Joel Sherrill <joel@OARcorp.com>
336
337        * console/console-io.c, include/bsp.h, startup/bspstart.c: URL for
338        license changed.
339
3402003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Reflect having moved aclocal/.
343
3442003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346        * Makefile.am: Reflect having moved automake/.
347        * clock/Makefile.am: Reflect having moved automake/.
348        * console/Makefile.am: Reflect having moved automake/.
349        * include/Makefile.am: Reflect having moved automake/.
350        * start/Makefile.am: Reflect having moved automake/.
351        * startup/Makefile.am: Reflect having moved automake/.
352        * wrapup/Makefile.am: Reflect having moved automake/.
353
3542003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
357
3582003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        PR 445/bsps
361        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
362        Remove cpp, old_cpp (now unused).
363
3642003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
365
366        * configure.ac: Remove AC_CONFIG_AUX_DIR.
367
3682003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
371
3722003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * configure.ac: AC_PREREQ(2.57).
375
3762003-01-20      Joel Sherrill <joel@OARcorp.com>
377
378        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
379
3802002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
383        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
384        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
385        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
386
3872002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * start/Makefile.am: Use install-data-local to install startfile.
390
3912002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
394
3952002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * startup/bspstart.c: Add empty H8BD_Install_IRQ so the port will have
398        a routine to call.
399
4002002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * startup/bspstart.c: Remove ramStart to eliminate warning.
403
4042002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * .cvsignore: Reformat.
407        Add autom4te*cache.
408        Remove autom4te.cache.
409
4102002-08-21      Joel Sherrill <joel@OARcorp.com>
411
412        * bsp_specs: Added support for -nostdlibs.
413
4142002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
417        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
418        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
419        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
420        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
421
4222002-08-05      Joel Sherrill <joel@OARcorp.com>
423
424        * startup/bspstart.c, startup/linkcmds: Per PR247 , fix the linkcmds
425        to avoid overlapping sections and reworked the way the heap and
426        workspace are calculated.
427
4282002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * start/Makefile.am: Eliminate PGM.
431        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
432
4332002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
436
4372002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
440        Remove $(OBJS) from all-local.
441
4422002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * wrapup/Makefile.am: Add $(LIB) to all-local.
445
4462002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
449
4502002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * configure.ac:
453        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
454        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
455        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
456        * Makefile.am: Remove AUTOMAKE_OPTIONS.
457        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
458        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
459        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
460        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
461        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
462
4632002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
464
465        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
466
4672001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
470        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
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-io.c: Fixed typo.
484
4852001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
488        * configure.in: Remove.
489        * configure.ac: New file, generated from configure.in by autoupdate.
490
4912001-09-27      Joel Sherrill <joel@OARcorp.com>
492
493        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
494
4952001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * include/Makefile.am: Use 'CLEANFILES ='.
498        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
499
5002001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
501
502        * configure.in: Add bspopts.h.
503        * include/.cvsignore: Add bspopts.h*, stamp-h*.
504        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
505        * include/bsp.h: Include bspopts.h.
506
5072001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
508
509        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
510
5112001-01-03      Joel Sherrill <joel@OARcorp.com>
512
513        * console/console-io.c: Added console_initialize_hardware().
514
5152000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
518
5192000-11-09      Joel Sherrill <joel@OARcorp.com>
520
521        * configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
522        wrapup/Makefile.am: Added include of stub clock driver so ticker
523        would link.
524
5252000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
528
5292000-11-01      Joel Sherrill <joel@OARcorp.com>
530
531        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
532        libcsupport.h moved from libc to lib/include/rtems and
533        now must be referenced as <rtems/XXX.h>.   Header file order
534        was cleaned up while doing this.
535
5362000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
539        Switch to GNU canonicalization.
540
5412000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * console/Makefile.am, start/Makefile.am, startup/Makefile.am,
544        wrapup/Makefile.am: Include compile.am
545
5462000-08-10      Joel Sherrill <joel@OARcorp.com>
547
548        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.