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

4.104.115
Last change on this file since 2a65e6d5 was 2a65e6d5, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 20:13:39

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

  • Makefile.am, startup/linkcmds: Use top level shared bsp_get_work_area() implementation.
  • Property mode set to 100644
File size: 17.3 KB
Line 
12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, startup/linkcmds: Use top level shared
4        bsp_get_work_area() implementation.
5
62008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
9        shared bsp_get_work_area() in its own file and rely on BSP Framework
10        to perform more initialization. After factoring this out, it turned
11        out that all SuperH BSPs has the same bsp_start() implementation so
12        this was made shared.
13        * startup/bspstart.c: Removed.
14
152008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
18        phase, all prototypes were removed from bsp.h and empty
19        implementations were removed and made to use the shared stub.
20
212008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
22
23        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
24        Framework to ask the BSP where it has memory for the RTEMS Workspace
25        and C Program Heap. These collectively are referred to as work area.
26        If the BSP supports this, then it does not have to include code to
27        split the available memory between the two areas. This reduces the
28        amount of code in the BSP specific bspstart.c file. Additionally, the
29        shared framework can initialize the C Library, call
30        rtems_debug_enable(), and dirty the work area memory. Until most/all
31        BSPs support this new capability, if the BSP supports this, it should
32        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
33        When the transition is complete, this autoconf macro can be removed.
34
352008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
36
37        * Makefile.am: Rework to avoid .rel files.
38
392008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
40
41        * startup/bspstart.c: Refactored and renamed initialization routines to
42        rtems_initialize_data_structures, rtems_initialize_before_drivers,
43        rtems_initialize_device_drivers, and
44        rtems_initialize_start_multitasking. This opened the sequence up so
45        that bootcard() could provide a more robust and flexible framework
46        which is easier to explain and understand. This also lays the
47        groundwork for sharing the division of available memory between the
48        RTEMS workspace and heap and the C library initialization across all
49        BSPs.
50
512008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * startup/linkcmds: Add wildcard to gcc_except_table section so
54        programs compiled with gcc 4.3.x can link.
55
562007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
57
58        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
59        Configuration Table. Use the RTEMS provided accessor macros to obtain
60        configuration fields.
61
622007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
63
64        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
65        from CPU Table to Configuration Table. Eliminate CPU Table from all
66        ports. Delete references to CPU Table in all forms.
67
682007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
71        Table fields to the Configuration Table. This included
72        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
73        do_zero_of_workspace, extra_mpci_receive_server_stack,
74        stack_allocate_hook, and stack_free_hook. As a side-effect of this
75        effort some multiprocessing code was made conditional and some style
76        clean up occurred.
77
782007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
79
80        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
81        SuperH CPU Table and define another mechanism for drivers to obtain
82        this information.
83
842007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * Makefile.am: Separate debug IO from console so console driver is not
87        linked in all the time. This manaifested itself when the IO manager
88        optional manager stub dropped some symbols.
89
902007-05-03      Joel Sherrill <joel@OARcorp.com>
91
92        * startup/linkcmds: Handle .data.* sections. Also change directive
93        placing stack on onchip_ram to make ld happy.
94
952007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
96
97        * bsp_specs: Remove qrtems_debug.
98
992007-04-02      Joel Sherrill <joel@OARcorp.com>
100
101        * Makefile.am: Add dummy printk support so all tests link.
102
1032006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * configure.ac: New BUG-REPORT address.
106
1072006-11-15      Joel Sherrill <joel@OARcorp.com>
108
109        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
110        file and simplified initialization.
111
1122006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
113
114        * Makefile.am: Remove superfluous -DASM.
115
1162006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
117
118        * configure.ac: Require autoconf-2.60. Require automake-1.10.
119
1202006-06-24      Joel Sherrill <joel@OARcorp.com>
121
122        * startup/linkcmds: Add .rela.dyn sections.
123
1242006-03-08      Joel Sherrill <joel@OARcorp.com>
125
126        * startup/linkcmds: Add .gnu.linkonce.b.* section.
127
1282006-02-08      Joel Sherrill <joel@OARcorp.com>
129
130        * startup/linkcmds: Add sections required by newer gcc versions.
131
1322006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
133
134        * Makefile.am: Add preinstall.am.
135
1362005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
137
138        * include/bsp.h: New header guard.
139
1402005-05-11      Joel Sherrill <joel@OARcorp.com>
141
142        * startup/linkcmds: Add .rodata.* sections.
143
1442005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
145
146        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
147
1482005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
149
150        * Makefile.am: Remove build-variant support.
151
1522004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
153
154        * configure.ac: Require automake > 1.9.
155
1562004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
157
158        PR 610/bsps
159        * Makefile.am: Add include/tm27.h, Cosmetics.
160        * include/tm27.h: Final cosmetics.
161
1622004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
163
164        * include/bsp.h: Split out tmtest27 support.
165        * include/tm27.h: New.
166
1672004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
168
169        PR 613/bsps
170        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
171
1722004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
173
174        PR 614/bsps
175        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
176
1772004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
178
179        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
180
1812004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
182
183        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
184        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
185
1862004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
187
188        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
189        types.
190
1912004-03-03      Joel Sherrill <joel@OARcorp.com>
192
193        * startup/linkcmds: Add more memory and sections so tests can link.
194        This is a generic BSP for a CPU model so OK to do this.
195
1962004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * Makefile.am: Reflect changes to bsp.am.
199        Preinstall dist_project_lib*.
200
2012004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
202
203        * Makefile.am: Reflect changes to bsp.am.
204
2052004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
206
207        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
208
2092004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
210
211        * Makefile.am: Pickup files from ../../sh/shared instead of
212        ../shared. Reformat.
213
2142004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
215
216        * Makefile.am: Cosmetics.
217
2182004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
221        Add RTEMS_PROG_CCAS.
222
2232004-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
224
225        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
226        startup/Makefile.am, wrapup/Makefile.am.
227        Use automake-compilation rules.
228        * console/Makefile.am, scitab/Makefile.am, startup/Makefile.am,
229        wrapup/Makefile.am: Remove.
230        * configure.ac: Reflect changes above.
231
2322004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
233
234        * Makefile.am: Add PREINSTALL_DIRS.
235        * wrapup/Makefile.am: Reflect changes to libcpu.
236
2372004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
238
239        * wrapup/Makefile.am: Reflect changes to libcpu.
240
2412004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
244        Add PRE/TMPINSTALL_FILES to CLEANFILES.
245        * startup/Makefile.am: Ditto.
246
2472004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * start/Makefile.am: Remove.
250        * Makefile.am: Merge-in start/Makefile.am.
251        * configure.ac: Reflect changes above.
252
2532004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * wrapup/Makefile.am: Eliminate $(LIB).
256        Use noinst_DATA to trigger building libbsp.a.
257
2582003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
259
260        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
261        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
262
2632003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
266        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
267
2682003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
269
270        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
271
2722003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * start/Makefile.am: Misc cleanups and fixes.
275        * startup/Makefile.am: Misc cleanups and fixes.
276        * wrapup/Makefile.am: Misc cleanups and fixes.
277
2782003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * Makefile.am: Add preinstallation dirstamp support.
281        * console/Makefile.am: Cosmetics.
282        * scitab/Makefile.am: Cosmetics.
283        * startup/Makefile.am: Cosmetics.
284        * wrapup/Makefile.am: Cosmetics.
285
2862003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * console/Makefile.am: Remove all-local: $(ARCH).
289        * scitab/Makefile.am: Remove all-local: $(ARCH).
290        * start/Makefile.am: Remove all-local: $(ARCH).
291        * startup/Makefile.am: Remove all-local: $(ARCH).
292        * wrapup/Makefile.am: Remove all-local: $(ARCH).
293
2942003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * Makefile.am: Merge-in include/Makefile.am.
297        Reflect changes to bsp.am.
298        * include/Makefile.am: Remove.
299        * configure.ac: Reflect changes above.
300
3012003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * bsp_specs: Remove *lib:.
304
3052003-09-04      Joel Sherrill <joel@OARcorp.com>
306
307        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
308        startup/bspstart.c, startup/linkcmds: URL for license changed.
309
3102003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * Makefile.am: Reflect having moved aclocal/.
313
3142003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * Makefile.am: Reflect having moved automake/.
317        * console/Makefile.am: Reflect having moved automake/.
318        * include/Makefile.am: Reflect having moved automake/.
319        * scitab/Makefile.am: Reflect having moved automake/.
320        * start/Makefile.am: Reflect having moved automake/.
321        * startup/Makefile.am: Reflect having moved automake/.
322        * wrapup/Makefile.am: Reflect having moved automake/.
323
3242003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
327
3282003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        PR 445/bsps
331        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
332        Remove cpp, old_cpp (now unused).
333
3342003-06-13      Joel Sherrill <joel@OARcorp.com>
335
336        * startup/linkcmds: Removed warnings.
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-28      Joel Sherrill <joel@OARcorp.com>
351
352        * startup/linkcmds: Fix to work around truncated section names.
353
3542003-01-20      Joel Sherrill <joel@OARcorp.com>
355
356        * startup/linkcmds*: Add FreeBSD sysctl() sections.
357
3582003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
361
3622002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
365        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
366        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
367        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
368
3692002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * start/Makefile.am: Use install-data-local to install startfile.
372
3732002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
376
3772002-11-07      Joel Sherrill <joel@OARcorp.com>
378
379        * startup/linkcmds: Include all .rodata* sections.
380
3812002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * .cvsignore: Reformat.
384        Add autom4te*cache.
385        Remove autom4te.cache.
386
3872002-09-14      Joel Sherrill <joel@OARcorp.com>
388
389        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
390        of all calls to bsp_libc_init() resulted in some cleanup here.
391
3922002-08-21      Joel Sherrill <joel@OARcorp.com>
393
394        * bsp_specs: Added support for -nostdlibs.
395
3962002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
399        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
400
4012002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
404        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
405        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
406        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
407
4082002-07-25      Joel Sherrill <joel@OARcorp.com>
409
410        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
411        to remove problems linking empty main(){} with BSP.
412
4132002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * start/Makefile.am: Eliminate PGM.
416        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
417
4182002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
421
4222002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
425        Remove $(OBJS) from all-local.
426
4272002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
430
4312001-05-09      Joel Sherrill <joel@OARcorp.com>
432
433        * startup/linkcmds: In support of gcc 3.1, added one of more
434        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
435        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
436        and direction of segments to memory regions may also have been
437        addressed.  This was a sweep across all BSPs.
438 
4392002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
440
441        * configure.ac:
442        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
443        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
444        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
445        * Makefile.am: Remove AUTOMAKE_OPTIONS.
446        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
447        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
448        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
449        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
450        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
451
4522001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
455
4562001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
457
458        * configure.ac: Replace RTEMS_BSPOPTS_BSP with RTEMS_BSPOPTS_SET (typo).
459
4602001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
461
462        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
463        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
464
4652001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
468
4692001-10-12      Joel Sherrill <joel@OARcorp.com>
470
471        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
472        startup/bspstart.c, startup/linkcmds: Fixed typo.
473
4742001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
477        * configure.in: Remove.
478        * configure.ac: New file, generated from configure.in by autoupdate.
479
4802001-09-27      Joel Sherrill <joel@OARcorp.com>
481
482        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
483
4842001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
487
4882001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * configure.in: Add bspopts.h.
491        * include/.cvsignore: Add bspopts.h*, stamp-h*.
492        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
493        * include/bsp.h: Include bspopts.h.
494        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
495
4962001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
497
498        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]),
499        add bspopts.h.
500        * include/.cvsignore: Add stamp-h*, bspopts.h*.
501        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
502        * include/bsp.h: Add bspopts.h.
503
5042001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * startup/linkcmds: Remove OUTPUT_FORMAT.
507
5082001-01-05      Joel Sherrill <joel@OARcorp.com>
509
510        * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed
511        rest of make-target-options and moved them to BSP configure options.
512
5132001-01-05      Joel Sherrill <joel@OARcorp.com>
514
515        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
516        the movement of this component to libmisc.
517        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
518
5192000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
522
5232000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
526
5272000-11-01      Joel Sherrill <joel@OARcorp.com>
528
529        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
530        libcsupport.h moved from libc to lib/include/rtems and
531        now must be referenced as <rtems/XXX.h>.   Header file order
532        was cleaned up while doing this.
533
5342000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
535
536        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
537        Switch to GNU canonicalization.
538
5392000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
540
541        * scitab/Makefile.am: PROJECT_TOPdir.
542
5432000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
544
545        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
546        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
547
5482000-08-10      Joel Sherrill <joel@OARcorp.com>
549
550        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.