source: rtems/c/src/lib/libbsp/sh/gensh1/ChangeLog @ b1ded240

4.104.115
Last change on this file since b1ded240 was 11a6c97, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 19:18:29

2008-09-15 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use shared bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. After factoring this out, it turned out that all SuperH BSPs has the same bsp_start() implementation so this was made shared.
  • startup/bspstart.c: Removed.
  • Property mode set to 100644
File size: 17.1 KB
Line 
12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
4        shared bsp_get_work_area() in its own file and rely on BSP Framework
5        to perform more initialization. After factoring this out, it turned
6        out that all SuperH BSPs has the same bsp_start() implementation so
7        this was made shared.
8        * startup/bspstart.c: Removed.
9
102008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
13        phase, all prototypes were removed from bsp.h and empty
14        implementations were removed and made to use the shared stub.
15
162008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
17
18        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
19        Framework to ask the BSP where it has memory for the RTEMS Workspace
20        and C Program Heap. These collectively are referred to as work area.
21        If the BSP supports this, then it does not have to include code to
22        split the available memory between the two areas. This reduces the
23        amount of code in the BSP specific bspstart.c file. Additionally, the
24        shared framework can initialize the C Library, call
25        rtems_debug_enable(), and dirty the work area memory. Until most/all
26        BSPs support this new capability, if the BSP supports this, it should
27        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
28        When the transition is complete, this autoconf macro can be removed.
29
302008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
31
32        * Makefile.am: Rework to avoid .rel files.
33
342008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
35
36        * startup/bspstart.c: Refactored and renamed initialization routines to
37        rtems_initialize_data_structures, rtems_initialize_before_drivers,
38        rtems_initialize_device_drivers, and
39        rtems_initialize_start_multitasking. This opened the sequence up so
40        that bootcard() could provide a more robust and flexible framework
41        which is easier to explain and understand. This also lays the
42        groundwork for sharing the division of available memory between the
43        RTEMS workspace and heap and the C library initialization across all
44        BSPs.
45
462008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
47
48        * startup/linkcmds: Add wildcard to gcc_except_table section so
49        programs compiled with gcc 4.3.x can link.
50
512007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
54        Configuration Table. Use the RTEMS provided accessor macros to obtain
55        configuration fields.
56
572007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
60        from CPU Table to Configuration Table. Eliminate CPU Table from all
61        ports. Delete references to CPU Table in all forms.
62
632007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
66        Table fields to the Configuration Table. This included
67        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
68        do_zero_of_workspace, extra_mpci_receive_server_stack,
69        stack_allocate_hook, and stack_free_hook. As a side-effect of this
70        effort some multiprocessing code was made conditional and some style
71        clean up occurred.
72
732007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
76        SuperH CPU Table and define another mechanism for drivers to obtain
77        this information.
78
792007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * Makefile.am: Separate debug IO from console so console driver is not
82        linked in all the time. This manaifested itself when the IO manager
83        optional manager stub dropped some symbols.
84
852007-05-03      Joel Sherrill <joel@OARcorp.com>
86
87        * startup/linkcmds: Handle .data.* sections. Also change directive
88        placing stack on onchip_ram to make ld happy.
89
902007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
91
92        * bsp_specs: Remove qrtems_debug.
93
942007-04-02      Joel Sherrill <joel@OARcorp.com>
95
96        * Makefile.am: Add dummy printk support so all tests link.
97
982006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * configure.ac: New BUG-REPORT address.
101
1022006-11-15      Joel Sherrill <joel@OARcorp.com>
103
104        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
105        file and simplified initialization.
106
1072006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
108
109        * Makefile.am: Remove superfluous -DASM.
110
1112006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
112
113        * configure.ac: Require autoconf-2.60. Require automake-1.10.
114
1152006-06-24      Joel Sherrill <joel@OARcorp.com>
116
117        * startup/linkcmds: Add .rela.dyn sections.
118
1192006-03-08      Joel Sherrill <joel@OARcorp.com>
120
121        * startup/linkcmds: Add .gnu.linkonce.b.* section.
122
1232006-02-08      Joel Sherrill <joel@OARcorp.com>
124
125        * startup/linkcmds: Add sections required by newer gcc versions.
126
1272006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
128
129        * Makefile.am: Add preinstall.am.
130
1312005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
132
133        * include/bsp.h: New header guard.
134
1352005-05-11      Joel Sherrill <joel@OARcorp.com>
136
137        * startup/linkcmds: Add .rodata.* sections.
138
1392005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
140
141        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
142
1432005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
144
145        * Makefile.am: Remove build-variant support.
146
1472004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
148
149        * configure.ac: Require automake > 1.9.
150
1512004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
152
153        PR 610/bsps
154        * Makefile.am: Add include/tm27.h, Cosmetics.
155        * include/tm27.h: Final cosmetics.
156
1572004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
158
159        * include/bsp.h: Split out tmtest27 support.
160        * include/tm27.h: New.
161
1622004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
163
164        PR 613/bsps
165        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
166
1672004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
168
169        PR 614/bsps
170        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
171
1722004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
173
174        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
175
1762004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
177
178        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
179        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
180
1812004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
182
183        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
184        types.
185
1862004-03-03      Joel Sherrill <joel@OARcorp.com>
187
188        * startup/linkcmds: Add more memory and sections so tests can link.
189        This is a generic BSP for a CPU model so OK to do this.
190
1912004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
192
193        * Makefile.am: Reflect changes to bsp.am.
194        Preinstall dist_project_lib*.
195
1962004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * Makefile.am: Reflect changes to bsp.am.
199
2002004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
201
202        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
203
2042004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
205
206        * Makefile.am: Pickup files from ../../sh/shared instead of
207        ../shared. Reformat.
208
2092004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
210
211        * Makefile.am: Cosmetics.
212
2132004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
214
215        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
216        Add RTEMS_PROG_CCAS.
217
2182004-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
221        startup/Makefile.am, wrapup/Makefile.am.
222        Use automake-compilation rules.
223        * console/Makefile.am, scitab/Makefile.am, startup/Makefile.am,
224        wrapup/Makefile.am: Remove.
225        * configure.ac: Reflect changes above.
226
2272004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Add PREINSTALL_DIRS.
230        * wrapup/Makefile.am: Reflect changes to libcpu.
231
2322004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
233
234        * wrapup/Makefile.am: Reflect changes to libcpu.
235
2362004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
237
238        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
239        Add PRE/TMPINSTALL_FILES to CLEANFILES.
240        * startup/Makefile.am: Ditto.
241
2422004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * start/Makefile.am: Remove.
245        * Makefile.am: Merge-in start/Makefile.am.
246        * configure.ac: Reflect changes above.
247
2482004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
249
250        * wrapup/Makefile.am: Eliminate $(LIB).
251        Use noinst_DATA to trigger building libbsp.a.
252
2532003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
256        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
257
2582003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
261        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
262
2632003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
266
2672003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * start/Makefile.am: Misc cleanups and fixes.
270        * startup/Makefile.am: Misc cleanups and fixes.
271        * wrapup/Makefile.am: Misc cleanups and fixes.
272
2732003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Add preinstallation dirstamp support.
276        * console/Makefile.am: Cosmetics.
277        * scitab/Makefile.am: Cosmetics.
278        * startup/Makefile.am: Cosmetics.
279        * wrapup/Makefile.am: Cosmetics.
280
2812003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
282
283        * console/Makefile.am: Remove all-local: $(ARCH).
284        * scitab/Makefile.am: Remove all-local: $(ARCH).
285        * start/Makefile.am: Remove all-local: $(ARCH).
286        * startup/Makefile.am: Remove all-local: $(ARCH).
287        * wrapup/Makefile.am: Remove all-local: $(ARCH).
288
2892003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * Makefile.am: Merge-in include/Makefile.am.
292        Reflect changes to bsp.am.
293        * include/Makefile.am: Remove.
294        * configure.ac: Reflect changes above.
295
2962003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * bsp_specs: Remove *lib:.
299
3002003-09-04      Joel Sherrill <joel@OARcorp.com>
301
302        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
303        startup/bspstart.c, startup/linkcmds: URL for license changed.
304
3052003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * Makefile.am: Reflect having moved aclocal/.
308
3092003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * Makefile.am: Reflect having moved automake/.
312        * console/Makefile.am: Reflect having moved automake/.
313        * include/Makefile.am: Reflect having moved automake/.
314        * scitab/Makefile.am: Reflect having moved automake/.
315        * start/Makefile.am: Reflect having moved automake/.
316        * startup/Makefile.am: Reflect having moved automake/.
317        * wrapup/Makefile.am: Reflect having moved automake/.
318
3192003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
322
3232003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        PR 445/bsps
326        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
327        Remove cpp, old_cpp (now unused).
328
3292003-06-13      Joel Sherrill <joel@OARcorp.com>
330
331        * startup/linkcmds: Removed warnings.
332
3332003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * configure.ac: Remove AC_CONFIG_AUX_DIR.
336
3372003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
340
3412003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * configure.ac: AC_PREREQ(2.57).
344
3452003-01-28      Joel Sherrill <joel@OARcorp.com>
346
347        * startup/linkcmds: Fix to work around truncated section names.
348
3492003-01-20      Joel Sherrill <joel@OARcorp.com>
350
351        * startup/linkcmds*: Add FreeBSD sysctl() sections.
352
3532003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
356
3572002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
360        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
361        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
362        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
363
3642002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
365
366        * start/Makefile.am: Use install-data-local to install startfile.
367
3682002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
371
3722002-11-07      Joel Sherrill <joel@OARcorp.com>
373
374        * startup/linkcmds: Include all .rodata* sections.
375
3762002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * .cvsignore: Reformat.
379        Add autom4te*cache.
380        Remove autom4te.cache.
381
3822002-09-14      Joel Sherrill <joel@OARcorp.com>
383
384        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
385        of all calls to bsp_libc_init() resulted in some cleanup here.
386
3872002-08-21      Joel Sherrill <joel@OARcorp.com>
388
389        * bsp_specs: Added support for -nostdlibs.
390
3912002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
394        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
395
3962002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
399        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
400        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
401        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
402
4032002-07-25      Joel Sherrill <joel@OARcorp.com>
404
405        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
406        to remove problems linking empty main(){} with BSP.
407
4082002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * start/Makefile.am: Eliminate PGM.
411        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
412
4132002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
416
4172002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
420        Remove $(OBJS) from all-local.
421
4222002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
425
4262001-05-09      Joel Sherrill <joel@OARcorp.com>
427
428        * startup/linkcmds: In support of gcc 3.1, added one of more
429        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
430        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
431        and direction of segments to memory regions may also have been
432        addressed.  This was a sweep across all BSPs.
433 
4342002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * configure.ac:
437        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
438        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
439        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
440        * Makefile.am: Remove AUTOMAKE_OPTIONS.
441        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
442        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
443        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
444        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
445        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
446
4472001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
450
4512001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * configure.ac: Replace RTEMS_BSPOPTS_BSP with RTEMS_BSPOPTS_SET (typo).
454
4552001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
458        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
459
4602001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
461
462        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
463
4642001-10-12      Joel Sherrill <joel@OARcorp.com>
465
466        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
467        startup/bspstart.c, startup/linkcmds: Fixed typo.
468
4692001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
472        * configure.in: Remove.
473        * configure.ac: New file, generated from configure.in by autoupdate.
474
4752001-09-27      Joel Sherrill <joel@OARcorp.com>
476
477        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
478
4792001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
480
481        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
482
4832001-06-19      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        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
490
4912001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
492
493        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]),
494        add bspopts.h.
495        * include/.cvsignore: Add stamp-h*, bspopts.h*.
496        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
497        * include/bsp.h: Add bspopts.h.
498
4992001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * startup/linkcmds: Remove OUTPUT_FORMAT.
502
5032001-01-05      Joel Sherrill <joel@OARcorp.com>
504
505        * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed
506        rest of make-target-options and moved them to BSP configure options.
507
5082001-01-05      Joel Sherrill <joel@OARcorp.com>
509
510        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
511        the movement of this component to libmisc.
512        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
513
5142000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
517
5182000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
521
5222000-11-01      Joel Sherrill <joel@OARcorp.com>
523
524        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
525        libcsupport.h moved from libc to lib/include/rtems and
526        now must be referenced as <rtems/XXX.h>.   Header file order
527        was cleaned up while doing this.
528
5292000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
532        Switch to GNU canonicalization.
533
5342000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
535
536        * scitab/Makefile.am: PROJECT_TOPdir.
537
5382000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
539
540        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
541        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
542
5432000-08-10      Joel Sherrill <joel@OARcorp.com>
544
545        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.