source: rtems/c/src/lib/libbsp/m32c/m32cbsp/ChangeLog @ 89b2fdb4

4.115
Last change on this file since 89b2fdb4 was 89b2fdb4, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 14:54:53

2011-02-02 Ralf Corsépius <ralf.corsepius@…>

  • tools/configure.ac: Require autoconf-2.68, automake-1.11.1.
  • Property mode set to 100644
File size: 17.6 KB
Line 
12011-02-02      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * tools/configure.ac: Require autoconf-2.68, automake-1.11.1.
4
52010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * start/start.S: Verify boot_card() is passed a NULL.
8
92009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * make/custom/m32csim.cfg: Remove RTEMS_BSP_FAMILY.
12
132009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * configure.ac: Don't add -ansi -fasm to CFLAGS.
16
172009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * make/custom/m32csim.cfg: New (relocated from /make/custom).
20
212009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
24
25 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
26
27        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
28        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
29        have the same options.
30
312009-05-18      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * console/console-io.c: Fix typo.
34
352009-04-28      Chris Johns <chrisj@rtems.org>
36
37        * start/start.S: Update for boot_card command line change.
38
392008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
40
41        * bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
42        to avoid warning for undefined entry symbol when linking relocatables
43        with binutils 2.19.
44
452008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
46
47        * README: New file.
48
492008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac,
52        preinstall.am, console/console-io.c, console/syscalls.S,
53        include/.cvsignore, include/bsp.h, start/start.S, startup/bspstart.c,
54        startup/crtn.S, startup/linkcmds, timer/timer.c, tools/.cvsignore,
55        tools/Makefile.am, tools/configure.ac, tools/runtest.in: New files.
56
572008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
58
59        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
60
612008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * console/console-io.c: Add missing file and remove junk code.
64        * console/syscalls.S: New file.
65
662008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
67
68        * startup/linkcmds: Simulator now appears to have 16M RAM support by
69        default in gdb 6.8.
70
712008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * Makefile.am, console/console-io.c, include/bsp.h:
74
752008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * configure.ac: Make letting boot_card() handle work area allocation
78        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
79        BSP_BOOTCARD_OPTIONS.
80
812008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
82
83        * Makefile.am: Split out bspstart contents. Use shared stub for
84        bsp_start.
85        * startup/h8bdinstallirq.c: New file.
86        * startup/bspstart.c: Removed.
87
882008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * include/bsp.h: Remove unnecessary boilerplate comments.
91
922008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
93
94        * Makefile.am, startup/linkcmds: Use top level shared
95        bsp_get_work_area() implementation.
96        * startup/bspgetworkarea.c: Removed.
97
982008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
99
100        * startup/bspstart.c: Remove unnecessary includes of
101        rtems/libcsupport.h and rtems/libio.h.
102
1032008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
104
105        * Makefile.am, configure.ac, startup/__main.c, startup/bspstart.c:
106        Split out bsp_get_work_area() into its own file and user BSP
107        Framework to perform more initialization.
108        * startup/bspgetworkarea.c: New file.
109
1102008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
111
112        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
113        phase, all prototypes were removed from bsp.h and empty
114        implementations were removed and made to use the shared stub.
115
1162008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
117
118        * startup/__main.c: Add missing prototypes.
119
1202008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
123        Framework to ask the BSP where it has memory for the RTEMS Workspace
124        and C Program Heap. These collectively are referred to as work area.
125        If the BSP supports this, then it does not have to include code to
126        split the available memory between the two areas. This reduces the
127        amount of code in the BSP specific bspstart.c file. Additionally, the
128        shared framework can initialize the C Library, call
129        rtems_debug_enable(), and dirty the work area memory. Until most/all
130        BSPs support this new capability, if the BSP supports this, it should
131        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
132        When the transition is complete, this autoconf macro can be removed.
133
1342008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * Makefile.am: Rework to avoid .rel files.
137
1382008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
139
140        * startup/bspstart.c: Refactored and renamed initialization routines to
141        rtems_initialize_data_structures, rtems_initialize_before_drivers,
142        rtems_initialize_device_drivers, and
143        rtems_initialize_start_multitasking. This opened the sequence up so
144        that bootcard() could provide a more robust and flexible framework
145        which is easier to explain and understand. This also lays the
146        groundwork for sharing the division of available memory between the
147        RTEMS workspace and heap and the C library initialization across all
148        BSPs.
149
1502007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
151
152        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
153        Configuration Table. Use the RTEMS provided accessor macros to obtain
154        configuration fields.
155
1562007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
157
158        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
159        Configuration Table. Eliminate CPU Table from all ports. Delete
160        references to CPU Table in all forms.
161
1622007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
163
164        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
165        Table fields to the Configuration Table. This included
166        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
167        do_zero_of_workspace, extra_mpci_receive_server_stack,
168        stack_allocate_hook, and stack_free_hook. As a side-effect of this
169        effort some multiprocessing code was made conditional and some style
170        clean up occurred.
171
1722007-05-03      Joel Sherrill <joel@OARcorp.com>
173
174        * startup/linkcmds: Handle .data.* sections
175
1762007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
177
178        * bsp_specs: Remove qrtems_debug.
179
1802006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
181
182        * configure.ac: New BUG-REPORT address.
183
1842006-11-15      Joel Sherrill <joel@OARcorp.com>
185
186        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
187        file and simplified initialization.
188
1892006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
190
191        * Makefile.am: Remove superfluous -DASM.
192
1932006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
194
195        * configure.ac: Require autoconf-2.60. Require automake-1.10.
196
1972006-02-08      Joel Sherrill <joel@OARcorp.com>
198
199        * startup/linkcmds: Add sections required by newer gcc versions.
200
2012006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
202
203        * Makefile.am: Add preinstall.am.
204
2052005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
206
207        * include/bsp.h: New header guard.
208
2092005-05-11      Joel Sherrill <joel@OARcorp.com>
210
211        * startup/linkcmds: Add .rodata.* sections.
212
2132005-03-07      Joel Sherrill <joel@OARcorp.com>
214
215        * Makefile.am: Add timerstub so more tests link.
216
2172005-03-07      Joel Sherrill <joel@OARcorp.com>
218
219        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
220
2212005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
222
223        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
224
2252005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
226
227        * Makefile.am: Remove build-variant support.
228
2292004-09-29      Joel Sherrill <joel@OARcorp.com>
230
231        * include/bsp.h, include/tm27.h: i960 obsoleted and all references
232        removed.
233
2342004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
235
236        * configure.ac: Require automake > 1.9.
237
2382004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
239
240        PR 610/bsps
241        * Makefile.am: Add include/tm27.h, Cosmetics.
242        * include/tm27.h: Final cosmetics.
243
2442004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
245
246        * include/bsp.h: Split out tmtest27 support.
247        * include/tm27.h: New.
248
2492004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
250
251        PR 613/bsps
252        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
253
2542004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
255
256        PR 614/bsps
257        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
258
2592004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
260
261        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
262        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
263        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
264
2652004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
266
267        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
268        types.
269
2702004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * Makefile.am: Reflect changes to bsp.am.
273        Preinstall dist_project_lib*.
274
2752004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Reflect changes to bsp.am.
278
2792004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
282
2832004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
286        start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am.
287        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
288        startup/Makefile.am, wrapup/Makefile.am: Remove.
289        Use automake compilation rules.
290        * configure.ac: Reflect changes above.
291
2922004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * Makefile.am: Add PREINSTALL_DIRS.
295
2962004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
299        Add PRE/TMPINSTALL_FILES to CLEANFILES.
300        * startup/Makefile.am: Ditto.
301
3022004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
303
304        * wrapup/Makefile.am: Eliminate $(LIB).
305        Use noinst_DATA to trigger building libbsp.a.
306
3072003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
310        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
311
3122003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
315        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
316
3172003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
320
3212003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * clock/Makefile.am: Misc cleanups and fixes.
324        * start/Makefile.am: Misc cleanups and fixes.
325        * startup/Makefile.am: Misc cleanups and fixes.
326        * wrapup/Makefile.am: Misc cleanups and fixes.
327
3282003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * Makefile.am: Add dirstamps to preinstallation.
331        * clock/Makefile.am: Cosmetics.
332        * console/Makefile.am: Cosmetics.
333        * startup/Makefile.am: Cosmetics.
334        * wrapup/Makefile.am: Cosmetics.
335
3362003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * clock/Makefile.am: Remove all-local: $(ARCH).
339        * console/Makefile.am: Remove all-local: $(ARCH).
340        * start/Makefile.am: Remove all-local: $(ARCH).
341        * startup/Makefile.am: Remove all-local: $(ARCH).
342        * wrapup/Makefile.am: Remove all-local: $(ARCH).
343
3442003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346        * Makefile.am: Merge-in include/Makefile.am.
347        Reflect changes to bsp.am.
348        * include/Makefile.am: Remove.
349        * configure.ac: Reflect changes above.
350
3512003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * bsp_specs: Remove *lib:.
354
3552003-09-04      Joel Sherrill <joel@OARcorp.com>
356
357        * console/console-io.c, include/bsp.h, startup/bspstart.c: URL for
358        license changed.
359
3602003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        * Makefile.am: Reflect having moved aclocal/.
363
3642003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
365
366        * Makefile.am: Reflect having moved automake/.
367        * clock/Makefile.am: Reflect having moved automake/.
368        * console/Makefile.am: Reflect having moved automake/.
369        * include/Makefile.am: Reflect having moved automake/.
370        * start/Makefile.am: Reflect having moved automake/.
371        * startup/Makefile.am: Reflect having moved automake/.
372        * wrapup/Makefile.am: Reflect having moved automake/.
373
3742003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
377
3782003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        PR 445/bsps
381        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
382        Remove cpp, old_cpp (now unused).
383
3842003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * configure.ac: Remove AC_CONFIG_AUX_DIR.
387
3882003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
391
3922003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * configure.ac: AC_PREREQ(2.57).
395
3962003-01-20      Joel Sherrill <joel@OARcorp.com>
397
398        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
399
4002002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406
4072002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * start/Makefile.am: Use install-data-local to install startfile.
410
4112002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
414
4152002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * startup/bspstart.c: Add empty H8BD_Install_IRQ so the port will have
418        a routine to call.
419
4202002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * startup/bspstart.c: Remove ramStart to eliminate warning.
423
4242002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * .cvsignore: Reformat.
427        Add autom4te*cache.
428        Remove autom4te.cache.
429
4302002-08-21      Joel Sherrill <joel@OARcorp.com>
431
432        * bsp_specs: Added support for -nostdlibs.
433
4342002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
437        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
438        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
439        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
440        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
441
4422002-08-05      Joel Sherrill <joel@OARcorp.com>
443
444        * startup/bspstart.c, startup/linkcmds: Per PR247 , fix the linkcmds
445        to avoid overlapping sections and reworked the way the heap and
446        workspace are calculated.
447
4482002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
449
450        * start/Makefile.am: Eliminate PGM.
451        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
452
4532002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
456
4572002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
460        Remove $(OBJS) from all-local.
461
4622002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * wrapup/Makefile.am: Add $(LIB) to all-local.
465
4662002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
469
4702002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * configure.ac:
473        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
474        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
475        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
476        * Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
478        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
479        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
480        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
481        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
482
4832002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
486
4872001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
490        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
491
4922001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
495        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
496
4972001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
500
5012001-10-12      Joel Sherrill <joel@OARcorp.com>
502
503        * console/console-io.c: Fixed typo.
504
5052001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
508        * configure.in: Remove.
509        * configure.ac: New file, generated from configure.in by autoupdate.
510
5112001-09-27      Joel Sherrill <joel@OARcorp.com>
512
513        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
514
5152001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * include/Makefile.am: Use 'CLEANFILES ='.
518        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
519
5202001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * configure.in: Add bspopts.h.
523        * include/.cvsignore: Add bspopts.h*, stamp-h*.
524        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
525        * include/bsp.h: Include bspopts.h.
526
5272001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
528
529        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
530
5312001-01-03      Joel Sherrill <joel@OARcorp.com>
532
533        * console/console-io.c: Added console_initialize_hardware().
534
5352000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
538
5392000-11-09      Joel Sherrill <joel@OARcorp.com>
540
541        * configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
542        wrapup/Makefile.am: Added include of stub clock driver so ticker
543        would link.
544
5452000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
548
5492000-11-01      Joel Sherrill <joel@OARcorp.com>
550
551        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
552        libcsupport.h moved from libc to lib/include/rtems and
553        now must be referenced as <rtems/XXX.h>.   Header file order
554        was cleaned up while doing this.
555
5562000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
559        Switch to GNU canonicalization.
560
5612000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
562
563        * console/Makefile.am, start/Makefile.am, startup/Makefile.am,
564        wrapup/Makefile.am: Include compile.am
565
5662000-08-10      Joel Sherrill <joel@OARcorp.com>
567
568        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.