source: rtems/c/src/lib/libbsp/h8300/h8sim/ChangeLog @ 9c8aceb

4.104.115
Last change on this file since 9c8aceb was de907016, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/20/09 at 08:44:36

2009-10-20 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Don't add -ansi -fasm to CFLAGS.
  • Property mode set to 100644
File size: 17.6 KB
Line 
12009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Don't add -ansi -fasm to CFLAGS.
4
52009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * make/custom/h8sim.cfg: New (relocated from /make/custom).
8        * make/custom/h8sxsim.cfg: New (relocated from /make/custom).
9
102009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
13
14 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
17        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
18        have the same options.
19
202009-04-28      Chris Johns <chrisj@rtems.org>
21
22        * start/start.S: Update for boot_card command line change.
23
242008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * bsp_specs: Move -e start from *link to *startfile to avoid warning
27        for undefined entry symbol when linking relocatables with binutils
28        2.19.
29
302008-10-14      Joel Sherrill <joel.sherrill@oarcorp.com>
31
32        * startup/linkcmds: Do not specify architecture since the linker gets
33        it right even with multiple variants.
34
352008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
36
37        * Makefile.am, preinstall.am: Use shared tm27.h stub.
38        * include/tm27.h: Removed.
39
402008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
41
42        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
43        of building libbspstart.a, using automake-rules.
44
452008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
46
47        * Makefile.am: Eliminate *_SOURCES.
48
492008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
50
51        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
52        components.
53
542008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
55
56        * Makefile.am: Remove noinst_PROGRAMS (Unused).
57
582008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
59
60        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
61
622008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * console/console-io.c: Add missing file and remove junk code.
65        * console/syscalls.S: New file.
66
672008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * startup/linkcmds: Simulator now appears to have 16M RAM support by
70        default in gdb 6.8.
71
722008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * Makefile.am, console/console-io.c, include/bsp.h:
75
762008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * configure.ac: Make letting boot_card() handle work area allocation
79        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
80        BSP_BOOTCARD_OPTIONS.
81
822008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
83
84        * Makefile.am: Split out bspstart contents. Use shared stub for
85        bsp_start.
86        * startup/h8bdinstallirq.c: New file.
87        * startup/bspstart.c: Removed.
88
892008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
90
91        * include/bsp.h: Remove unnecessary boilerplate comments.
92
932008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
94
95        * Makefile.am, startup/linkcmds: Use top level shared
96        bsp_get_work_area() implementation.
97        * startup/bspgetworkarea.c: Removed.
98
992008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * startup/bspstart.c: Remove unnecessary includes of
102        rtems/libcsupport.h and rtems/libio.h.
103
1042008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
105
106        * Makefile.am, configure.ac, startup/__main.c, startup/bspstart.c:
107        Split out bsp_get_work_area() into its own file and user BSP
108        Framework to perform more initialization.
109        * startup/bspgetworkarea.c: New file.
110
1112008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
112
113        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
114        phase, all prototypes were removed from bsp.h and empty
115        implementations were removed and made to use the shared stub.
116
1172008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
118
119        * startup/__main.c: Add missing prototypes.
120
1212008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
122
123        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
124        Framework to ask the BSP where it has memory for the RTEMS Workspace
125        and C Program Heap. These collectively are referred to as work area.
126        If the BSP supports this, then it does not have to include code to
127        split the available memory between the two areas. This reduces the
128        amount of code in the BSP specific bspstart.c file. Additionally, the
129        shared framework can initialize the C Library, call
130        rtems_debug_enable(), and dirty the work area memory. Until most/all
131        BSPs support this new capability, if the BSP supports this, it should
132        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
133        When the transition is complete, this autoconf macro can be removed.
134
1352008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
136
137        * Makefile.am: Rework to avoid .rel files.
138
1392008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        * startup/bspstart.c: Refactored and renamed initialization routines to
142        rtems_initialize_data_structures, rtems_initialize_before_drivers,
143        rtems_initialize_device_drivers, and
144        rtems_initialize_start_multitasking. This opened the sequence up so
145        that bootcard() could provide a more robust and flexible framework
146        which is easier to explain and understand. This also lays the
147        groundwork for sharing the division of available memory between the
148        RTEMS workspace and heap and the C library initialization across all
149        BSPs.
150
1512007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
152
153        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
154        Configuration Table. Use the RTEMS provided accessor macros to obtain
155        configuration fields.
156
1572007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
158
159        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
160        Configuration Table. Eliminate CPU Table from all ports. Delete
161        references to CPU Table in all forms.
162
1632007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
164
165        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
166        Table fields to the Configuration Table. This included
167        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
168        do_zero_of_workspace, extra_mpci_receive_server_stack,
169        stack_allocate_hook, and stack_free_hook. As a side-effect of this
170        effort some multiprocessing code was made conditional and some style
171        clean up occurred.
172
1732007-05-03      Joel Sherrill <joel@OARcorp.com>
174
175        * startup/linkcmds: Handle .data.* sections
176
1772007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
178
179        * bsp_specs: Remove qrtems_debug.
180
1812006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * configure.ac: New BUG-REPORT address.
184
1852006-11-15      Joel Sherrill <joel@OARcorp.com>
186
187        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
188        file and simplified initialization.
189
1902006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
191
192        * Makefile.am: Remove superfluous -DASM.
193
1942006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
195
196        * configure.ac: Require autoconf-2.60. Require automake-1.10.
197
1982006-02-08      Joel Sherrill <joel@OARcorp.com>
199
200        * startup/linkcmds: Add sections required by newer gcc versions.
201
2022006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
203
204        * Makefile.am: Add preinstall.am.
205
2062005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * include/bsp.h: New header guard.
209
2102005-05-11      Joel Sherrill <joel@OARcorp.com>
211
212        * startup/linkcmds: Add .rodata.* sections.
213
2142005-03-07      Joel Sherrill <joel@OARcorp.com>
215
216        * Makefile.am: Add timerstub so more tests link.
217
2182005-03-07      Joel Sherrill <joel@OARcorp.com>
219
220        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
221
2222005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
223
224        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
225
2262005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
227
228        * Makefile.am: Remove build-variant support.
229
2302004-09-29      Joel Sherrill <joel@OARcorp.com>
231
232        * include/bsp.h, include/tm27.h: i960 obsoleted and all references
233        removed.
234
2352004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
236
237        * configure.ac: Require automake > 1.9.
238
2392004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
240
241        PR 610/bsps
242        * Makefile.am: Add include/tm27.h, Cosmetics.
243        * include/tm27.h: Final cosmetics.
244
2452004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
246
247        * include/bsp.h: Split out tmtest27 support.
248        * include/tm27.h: New.
249
2502004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
251
252        PR 613/bsps
253        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
254
2552004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
256
257        PR 614/bsps
258        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
259
2602004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
261
262        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
263        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
264        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
265
2662004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
267
268        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
269        types.
270
2712004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Reflect changes to bsp.am.
274        Preinstall dist_project_lib*.
275
2762004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * Makefile.am: Reflect changes to bsp.am.
279
2802004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
283
2842004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
285
286        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
287        start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am.
288        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
289        startup/Makefile.am, wrapup/Makefile.am: Remove.
290        Use automake compilation rules.
291        * configure.ac: Reflect changes above.
292
2932004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * Makefile.am: Add PREINSTALL_DIRS.
296
2972004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
300        Add PRE/TMPINSTALL_FILES to CLEANFILES.
301        * startup/Makefile.am: Ditto.
302
3032004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * wrapup/Makefile.am: Eliminate $(LIB).
306        Use noinst_DATA to trigger building libbsp.a.
307
3082003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
311        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
312
3132003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
316        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
317
3182003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
319
320        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
321
3222003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
323
324        * clock/Makefile.am: Misc cleanups and fixes.
325        * start/Makefile.am: Misc cleanups and fixes.
326        * startup/Makefile.am: Misc cleanups and fixes.
327        * wrapup/Makefile.am: Misc cleanups and fixes.
328
3292003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * Makefile.am: Add dirstamps to preinstallation.
332        * clock/Makefile.am: Cosmetics.
333        * console/Makefile.am: Cosmetics.
334        * startup/Makefile.am: Cosmetics.
335        * wrapup/Makefile.am: Cosmetics.
336
3372003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * clock/Makefile.am: Remove all-local: $(ARCH).
340        * console/Makefile.am: Remove all-local: $(ARCH).
341        * start/Makefile.am: Remove all-local: $(ARCH).
342        * startup/Makefile.am: Remove all-local: $(ARCH).
343        * wrapup/Makefile.am: Remove all-local: $(ARCH).
344
3452003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * Makefile.am: Merge-in include/Makefile.am.
348        Reflect changes to bsp.am.
349        * include/Makefile.am: Remove.
350        * configure.ac: Reflect changes above.
351
3522003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * bsp_specs: Remove *lib:.
355
3562003-09-04      Joel Sherrill <joel@OARcorp.com>
357
358        * console/console-io.c, include/bsp.h, startup/bspstart.c: URL for
359        license changed.
360
3612003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * Makefile.am: Reflect having moved aclocal/.
364
3652003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * Makefile.am: Reflect having moved automake/.
368        * clock/Makefile.am: Reflect having moved automake/.
369        * console/Makefile.am: Reflect having moved automake/.
370        * include/Makefile.am: Reflect having moved automake/.
371        * start/Makefile.am: Reflect having moved automake/.
372        * startup/Makefile.am: Reflect having moved automake/.
373        * wrapup/Makefile.am: Reflect having moved automake/.
374
3752003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
378
3792003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        PR 445/bsps
382        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
383        Remove cpp, old_cpp (now unused).
384
3852003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * configure.ac: Remove AC_CONFIG_AUX_DIR.
388
3892003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
392
3932003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * configure.ac: AC_PREREQ(2.57).
396
3972003-01-20      Joel Sherrill <joel@OARcorp.com>
398
399        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
400
4012002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
407
4082002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * start/Makefile.am: Use install-data-local to install startfile.
411
4122002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
415
4162002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * startup/bspstart.c: Add empty H8BD_Install_IRQ so the port will have
419        a routine to call.
420
4212002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * startup/bspstart.c: Remove ramStart to eliminate warning.
424
4252002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * .cvsignore: Reformat.
428        Add autom4te*cache.
429        Remove autom4te.cache.
430
4312002-08-21      Joel Sherrill <joel@OARcorp.com>
432
433        * bsp_specs: Added support for -nostdlibs.
434
4352002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
436
437        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
438        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
439        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
440        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
441        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
442
4432002-08-05      Joel Sherrill <joel@OARcorp.com>
444
445        * startup/bspstart.c, startup/linkcmds: Per PR247 , fix the linkcmds
446        to avoid overlapping sections and reworked the way the heap and
447        workspace are calculated.
448
4492002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * start/Makefile.am: Eliminate PGM.
452        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
453
4542002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
457
4582002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
461        Remove $(OBJS) from all-local.
462
4632002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
464
465        * wrapup/Makefile.am: Add $(LIB) to all-local.
466
4672002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
470
4712002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * configure.ac:
474        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
475        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
476        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * Makefile.am: Remove AUTOMAKE_OPTIONS.
478        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
479        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
480        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
481        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
482        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
483
4842002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
487
4882001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
491        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
492
4932001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
496        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
497
4982001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
499
500        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
501
5022001-10-12      Joel Sherrill <joel@OARcorp.com>
503
504        * console/console-io.c: Fixed typo.
505
5062001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
509        * configure.in: Remove.
510        * configure.ac: New file, generated from configure.in by autoupdate.
511
5122001-09-27      Joel Sherrill <joel@OARcorp.com>
513
514        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
515
5162001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * include/Makefile.am: Use 'CLEANFILES ='.
519        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
520
5212001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.in: Add bspopts.h.
524        * include/.cvsignore: Add bspopts.h*, stamp-h*.
525        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
526        * include/bsp.h: Include bspopts.h.
527
5282001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
529
530        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
531
5322001-01-03      Joel Sherrill <joel@OARcorp.com>
533
534        * console/console-io.c: Added console_initialize_hardware().
535
5362000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
539
5402000-11-09      Joel Sherrill <joel@OARcorp.com>
541
542        * configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
543        wrapup/Makefile.am: Added include of stub clock driver so ticker
544        would link.
545
5462000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
547
548        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
549
5502000-11-01      Joel Sherrill <joel@OARcorp.com>
551
552        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
553        libcsupport.h moved from libc to lib/include/rtems and
554        now must be referenced as <rtems/XXX.h>.   Header file order
555        was cleaned up while doing this.
556
5572000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
560        Switch to GNU canonicalization.
561
5622000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
563
564        * console/Makefile.am, start/Makefile.am, startup/Makefile.am,
565        wrapup/Makefile.am: Include compile.am
566
5672000-08-10      Joel Sherrill <joel@OARcorp.com>
568
569        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.