source: rtems/c/src/lib/libbsp/m68k/gen68360/ChangeLog @ 6ea100c1

4.104.114.95
Last change on this file since 6ea100c1 was 6ea100c1, checked in by Joel Sherrill <joel.sherrill@…>, on 05/12/08 at 18:43:55

2008-05-12 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Refactored and renamed initialization routines to rtems_initialize_data_structures, rtems_initialize_before_drivers, rtems_initialize_device_drivers, and rtems_initialize_start_multitasking. This opened the sequence up so that bootcard() could provide a more robust and flexible framework which is easier to explain and understand. This also lays the groundwork for sharing the division of available memory between the RTEMS workspace and heap and the C library initialization across all BSPs.
  • Property mode set to 100644
File size: 16.9 KB
Line 
12008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * startup/bspstart.c: Refactored and renamed initialization routines to
4        rtems_initialize_data_structures, rtems_initialize_before_drivers,
5        rtems_initialize_device_drivers, and
6        rtems_initialize_start_multitasking. This opened the sequence up so
7        that bootcard() could provide a more robust and flexible framework
8        which is easier to explain and understand. This also lays the
9        groundwork for sharing the division of available memory between the
10        RTEMS workspace and heap and the C library initialization across all
11        BSPs.
12
132008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
14
15        * Makefile.am: Remove all references to console_reserve_resources and
16        termios_reserve_resources.
17        * console/consolereserveresources.c: Removed.
18
192008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        * startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Add
22        wildcard to gcc_except_table section so programs compiled with gcc
23        4.3.x can link.
24
252007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
26
27        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
28        the Configuration Table. Use the RTEMS provided accessor macros to
29        obtain configuration fields.
30
312007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
34        from CPU Table to Configuration Table. Eliminate CPU Table from all
35        ports. Delete references to CPU Table in all forms.
36
372007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
40        Table fields to the Configuration Table. This included
41        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
42        do_zero_of_workspace, extra_mpci_receive_server_stack,
43        stack_allocate_hook, and stack_free_hook. As a side-effect of this
44        effort some multiprocessing code was made conditional and some style
45        clean up occurred.
46
472007-05-03      Joel Sherrill <joel@OARcorp.com>
48
49        * startup/linkcmds: Handle .data.* sections
50
512007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
52
53        * bsp_specs: Remove qrtems_debug.
54
552007-04-02      Joel Sherrill <joel@OARcorp.com>
56
57        * Makefile.am: Add dummy printk support so all tests link.
58
592007-03-11      Joel Sherrill <joel@OARcorp.com>
60
61        * startup/bspstart.c: Remove assignments of
62        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
63        value in boot_card.c
64
652006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
66
67        * network/network.c: Use ioctl_command_t as arg in ioctl-functions.
68
692006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
70
71        * configure.ac: New BUG-REPORT address.
72
732006-11-15      Joel Sherrill <joel@OARcorp.com>
74
75        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
76        file and simplified initialization.
77
782006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
79
80        * Makefile.am: Remove superfluous -DASM.
81
822006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
83
84        * configure.ac: Require autoconf-2.60. Require automake-1.10.
85
862006-02-08      Joel Sherrill <joel@OARcorp.com>
87
88        * startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Add
89        sections required by newer gcc versions.
90
912006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
92
93        * Makefile.am: Add preinstall.am.
94
952005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
96
97        * include/bsp.h: New header guard.
98
992005-04-26      Joel Sherrill <joel@OARcorp.com>
100
101        * startup/alloc360.c: Eliminate warnings.
102
1032005-03-11      Joel Sherrill <joel@OARcorp.com>
104
105        * startup/init68360.c: Add _RomBase declaration.
106
1072005-02-11      Joel Sherrill <joel@OARcorp.com>
108
109        * include/bsp.h, startup/init68360.c: Correct type of symbols from
110        linkcmds to compile with gcc 4.x.
111
1122005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
113
114        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
115
1162005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
117
118        * Makefile.am: Remove build-variant support.
119
1202004-11-25      Joel Sherrill <joel@OARcorp.com>
121
122        * startup/linkcmds, startup/linkcmds.bootp, startup/linkcmds.prom: Add
123        new bss sections .bss.* and .gnu.linkonce.b*.
124
1252004-10-28      Joel Sherrill <joel@OARcorp.com>
126
127        * startup/linkcmds: Add .gnu.linkonce.b.*.
128
1292004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
130
131        * configure.ac: Require automake > 1.9.
132
1332004-05-21      Joel Sherrill <joel@OARcorp.com>
134
135        * network/network.c: Include errno.h as a consequence of recent updates
136        to BSD header files.
137
1382004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
139
140        PR 610/bsps
141        * Makefile.am: Add include/tm27.h, Cosmetics.
142        * include/tm27.h: Final cosmetics.
143
1442004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
145
146        * include/bsp.h: Split out tmtest27 support.
147        * include/tm27.h: New.
148
1492004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
150
151        PR 613/bsps
152        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
153
1542004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
155
156        PR 614/bsps
157        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
158
1592004-04-03      Ralf Corsepiu <ralf_corsepiu@rtems.org>
160
161        * c/src/lib/libbsp/m68k/gen68360/clock/clock.c,
162        c/src/lib/libbsp/m68k/gen68360/console/console.c,
163        c/src/lib/libbsp/m68k/gen68360/console/consolereserveresources.c,
164        c/src/lib/libbsp/m68k/gen68360/network/network.c,
165        c/src/lib/libbsp/m68k/gen68360/startup/alloc360.c,
166        c/src/lib/libbsp/m68k/gen68360/startup/init68360.c,
167        c/src/lib/libbsp/m68k/gen68360/timer/timer.c: Include
168        <rtems/m68k/m68360.h> instead of <m68360.h>.
169
1702004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
171
172        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
173
1742004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
175
176        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
177        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
178        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
179
1802004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
181
182        * include/bsp.h, network/network.c, startup/bspstart.c,
183        startup/init68360.c, timer/timer.c: Convert to using c99 fixed size
184        types.
185
1862004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
187
188        * Makefile.am: Reflect changes to bsp.am.
189        Preinstall dist_project_lib*.
190
1912004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
192
193        * Makefile.am: Reflect changes to bsp.am.
194
1952004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
196
197        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
198
1992004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
200
201        * Makefile.am: Pickup files from ../../m68k/shared instead of
202        ../shared. Reformat.
203
2042004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
205
206        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
207
2082004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
209
210        PR 562/bsps
211        * Makefile.am: Remove references to m68k-gdbstub.c,
212        rtems-gdbstub-glue.c.
213
214        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
215        network/Makefile.am, startup/Makefile.am, timer/Makefile.am.
216        Use automake-compilation rules.
217        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
218        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
219        Remove.
220        * configure.ac: Reflect changes above.
221
2222004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
223
224        * Makefile.am: Add PREINSTALL_DIRS.
225        * wrapup/Makefile.am: Reflect changes to libcpu.
226
2272004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Remove non-existing file "times" from EXTRA_DIST.
230        * configure.ac: Add AM_CONDITIONAL(HAS_FPSP).
231        * wrapup/Makefile.am: Reflect changes to libcpu.
232
2332004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
236        Add PRE/TMPINSTALL_FILES to CLEANFILES.
237        * startup/Makefile.am: Ditto.
238
2392004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
240
241        * start/Makefile.am: Remove.
242        * Makefile.am: Merge-in start/Makefile.am.
243        * configure.ac: Reflect changes above.
244
2452004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * wrapup/Makefile.am: Eliminate $(LIB).
248        Use noinst_DATA to trigger building libbsp.a.
249
2502003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
253        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
254
2552003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
258        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
259
2602003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
263
2642003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
265
266        * start/Makefile.am: Misc cleanups and fixes.
267        * startup/Makefile.am: Misc cleanups and fixes.
268        * wrapup/Makefile.am: Misc cleanups and fixes.
269
2702003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * Makefile.am: Add preinstallation dirstamp support.
273        * clock/Makefile.am: Cosmetics.
274        * console/Makefile.am: Cosmetics.
275        * network/Makefile.am: Cosmetics.
276        * startup/Makefile.am: Cosmetics.
277        * timer/Makefile.am: Cosmetics.
278        * wrapup/Makefile.am: Cosmetics.
279
2802003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * clock/Makefile.am: Remove all-local: $(ARCH).
283        * console/Makefile.am: Remove all-local: $(ARCH).
284        * network/Makefile.am: Remove all-local: $(ARCH).
285        * start/Makefile.am: Remove all-local: $(ARCH).
286        * startup/Makefile.am: Remove all-local: $(ARCH).
287        * timer/Makefile.am: Remove all-local: $(ARCH).
288        * wrapup/Makefile.am: Remove all-local: $(ARCH).
289
2902003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * Makefile.am: Merge-in include/Makefile.am.
293        Reflect changes to bsp.am.
294        * include/Makefile.am: Remove.
295        * configure.ac: Reflect changes above.
296
2972003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * bsp_specs: Remove *lib:.
300
3012003-09-04      Joel Sherrill <joel@OARcorp.com>
302
303        * console/console.c, console/consolereserveresources.c, include/bsp.h,
304        start/start.S, startup/bspclean.c, startup/bspstart.c, timer/timer.c:
305        URL for license changed.
306
3072003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * Makefile.am: Reflect having moved aclocal/.
310
3112003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * Makefile.am: Reflect having moved automake/.
314        * clock/Makefile.am: Reflect having moved automake/.
315        * console/Makefile.am: Reflect having moved automake/.
316        * include/Makefile.am: Reflect having moved automake/.
317        * network/Makefile.am: Reflect having moved automake/.
318        * start/Makefile.am: Reflect having moved automake/.
319        * startup/Makefile.am: Reflect having moved automake/.
320        * timer/Makefile.am: Reflect having moved automake/.
321        * wrapup/Makefile.am: Reflect having moved automake/.
322
3232003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        PR 452/bsps
326        * startup/Makefile.am: Remove USE_INIT_FINI.
327
3282003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
331
3322003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        PR 445/bsps
335        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
336        Remove cpp, old_cpp (now unused).
337
3382003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * configure.ac: Remove AC_CONFIG_AUX_DIR.
341
3422003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
345
3462003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * configure.ac: AC_PREREQ(2.57).
349
3502003-01-20      Joel Sherrill <joel@OARcorp.com>
351
352        * startup/linkcmds*: Add FreeBSD sysctl() sections.
353
3542002-12-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
357        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
358        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
359        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
360        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
361        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
362
3632002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * start/Makefile.am: Use install-data-local to install startfile.
366
3672002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
370
3712002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * .cvsignore: Reformat.
374        Add autom4te*cache.
375        Remove autom4te.cache.
376
3772002-08-21      Joel Sherrill <joel@OARcorp.com>
378
379        * wrapup/Makefile.am: PR217 required that the idle task be moved to
380        libcpu so it could be more acutely aware of the CPU model.  This
381        file was modified to pick up the idle task from there.
382
3832002-08-21      Joel Sherrill <joel@OARcorp.com>
384
385        * bsp_specs: Added support for -nostdlibs.
386
3872002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
390        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
391        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
392        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
393        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
394        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
395        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
396
3972002-08-05      Joel Sherrill <joel@OARcorp.com>
398
399        * Per PR260 eliminate use of make-target-options.  This impacted
400        RTEMS allowing a distinction between the CPU32 and CPU32+ in the
401        SuperCore and required that the m68k optimized memcpy be moved
402        to libcpu.
403        * wrapup/Makefile.am: Pick up memcpy.o from libcpu.
404
4052002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * start/Makefile.am: Eliminate PGM.
408        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
409
4102002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * startup/Makefile.am: Add bsplib_DATA = linkcmds linkcmds.prom
413        linkcmds.bootp.
414
4152002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
418        Remove $(OBJS) from all-local.
419
4202002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
423
4242002-06-25      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
425
426        * startup/Makefile.am: Compile the m68k gdb stub and glue.
427
4282002-05-14      Eric Norum <eric.norum@usask.ca>
429
430        * startup/linkcmds.bootp, startup/linkcmds.prom: Per PR192 add
431        sections needed by gcc 3.1.  linkcmds had already been fixed on
432        a gcc 3.1 clean up sweep.
433
4342001-05-09      Joel Sherrill <joel@OARcorp.com>
435
436        * startup/linkcmds: In support of gcc 3.1, added one of more
437        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
438        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
439        and direction of segments to memory regions may also have been
440        addressed.  This was a sweep across all BSPs.
441 
4422002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * configure.ac:
445        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
446        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
447        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
448        * Makefile.am: Remove AUTOMAKE_OPTIONS.
449        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
450        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
451        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
452        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
453        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
454        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
455        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
456
4572001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
460
4612001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
464        * configure.in: Remove.
465        * configure.ac: New file, generated from configure.in by autoupdate.
466
4672001-09-27      Joel Sherrill <joel@OARcorp.com>
468
469        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
470
4712001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
474
4752001-09-14      Eric Norum <eric.norum@usask.ca>
476
477        * startup/init68360.c: Modifications to make gcc 3.x happy.
478
4792001-09-19      Eric Norum <eric.norum@usask.ca>
480
481        * README: Bring it more in line with reality.
482
4832001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * configure.in: Add bspopts.h.
486        * include/.cvsignore: Add bspopts.h*, stamp-h*.
487        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
488        * include/bsp.h: Include bspopts.h.
489
4902001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
491
492        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
493
4942001-01-12      Eric Norum <eric.norum@usask.ca>
495
496        * README, clock/Makefile.am, clock/ckinit.c, clock/clock.c:
497        Clock driver updated to use shell driver mechanism.
498        * clock/ckinit.c: Removed.
499        * clock/clock.c: New file.
500
5012000-12-19      Joel Sherrill <joel@OARcorp.com>
502
503        * Makefile.am: Removed unneeded blank line.
504
5052000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
508
5092000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
512
5132000-11-01      Joel Sherrill <joel@OARcorp.com>
514
515        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
516        and libcsupport.h moved from libc to lib/include/rtems and
517        now must be referenced as <rtems/XXX.h>.   Header file order
518        was cleaned up while doing this.
519
5202000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
523        Switch to GNU canonicalization.
524
5252000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
526
527        * startup/linkcmds: Added lines so DWARF debug information
528        would be available.  Otherwise gdb complains that the offsets
529        for the debug info are incorrect and doesn't load the files.
530
5312000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * clock/Makefile.am, console/Makefile.am, network/Makefile.am,
534        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
535        wrapup/Makefile.am: Include compile.am
536
5372000-08-10      Joel Sherrill <joel@OARcorp.com>
538
539        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.