source: rtems/c/src/lib/libbsp/c4x/c4xsim/ChangeLog @ 7ae2775

4.104.115
Last change on this file since 7ae2775 was d1be26b, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/09 at 23:21:23

2009-07-16 Joel Sherrill <joel.sherrill@…>

  • configure.ac: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs have the same options.
  • Property mode set to 100644
File size: 17.3 KB
Line 
12009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
4        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
5        have the same options.
6
72009-04-28      Chris Johns <chrisj@rtems.org>
8
9        * start/start.S: Update for boot_card command line change.
10
112008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * bsp_specs: Move -e start from *link to *startfile to avoid warning
14        for undefined entry symbol when linking relocatables with binutils
15        2.19.
16
172008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * clock/clock.c: include "../../../shared/clockdrv_shell.h".
20        * Makefile.am: Reflect changes above.
21
222008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
25        of building libbspstart.a, using automake-rules.
26
272008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * Makefile.am: Eliminate *_SOURCES.
30
312008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
32
33        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
34        components.
35
362008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
37
38        * Makefile.am: Remove noinst_PROGRAMS (Unused).
39
402008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * configure.ac: Make letting boot_card() handle work area allocation
43        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
44        BSP_BOOTCARD_OPTIONS.
45
462008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * Makefile.am, console/debugio.c: Split out bspstart contents. Use
49        shared stub for bsp_start.
50        * startup/bsppretaskinghook.c: New file.
51        * startup/bspstart.c: Removed.
52
532008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * include/bsp.h: Remove unnecessary boilerplate comments.
56
572008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * Makefile.am, startup/linkcmds: Use top level shared
60        bsp_get_work_area() implementation.
61        * startup/bspgetworkarea.c: Removed.
62
632008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * clock/clock.c, startup/bspstart.c, startup/linkcmds: Add use of
66        bsp_get_work_area() in its own file and rely on BSP Framework to
67        perform more initialization.
68        * startup/bspgetworkarea.c: New file.
69
702008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
71
72        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
73        phase, all prototypes were removed from bsp.h and empty
74        implementations were removed and made to use the shared stub.
75
762008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
77
78        * timer/timer.c: Convert to "bool".
79
802008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
81
82        * timer/timer.c: Eliminate empty function from every benchmark timer
83        driver. Fix spelling.
84
852008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
86
87        * timer/timer.c: Rename timer driver methods to follow RTEMS
88        programming conventions.
89
902008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
91
92        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
93        Framework to ask the BSP where it has memory for the RTEMS Workspace
94        and C Program Heap. These collectively are referred to as work area.
95        If the BSP supports this, then it does not have to include code to
96        split the available memory between the two areas. This reduces the
97        amount of code in the BSP specific bspstart.c file. Additionally, the
98        shared framework can initialize the C Library, call
99        rtems_debug_enable(), and dirty the work area memory. Until most/all
100        BSPs support this new capability, if the BSP supports this, it should
101        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
102        When the transition is complete, this autoconf macro can be removed.
103
1042008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * Makefile.am: Rework to avoid .rel files.
107
1082008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
109
110        * startup/bspstart.c: Refactored and renamed initialization routines to
111        rtems_initialize_data_structures, rtems_initialize_before_drivers,
112        rtems_initialize_device_drivers, and
113        rtems_initialize_start_multitasking. This opened the sequence up so
114        that bootcard() could provide a more robust and flexible framework
115        which is easier to explain and understand. This also lays the
116        groundwork for sharing the division of available memory between the
117        RTEMS workspace and heap and the C library initialization across all
118        BSPs.
119
1202007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
123        the Configuration Table. Use the RTEMS provided accessor macros to
124        obtain configuration fields.
125
1262007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
129        from CPU Table to Configuration Table. Eliminate CPU Table from all
130        ports. Delete references to CPU Table in all forms.
131
1322007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
133
134        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
135        Table fields to the Configuration Table. This included
136        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
137        do_zero_of_workspace, extra_mpci_receive_server_stack,
138        stack_allocate_hook, and stack_free_hook. As a side-effect of this
139        effort some multiprocessing code was made conditional and some style
140        clean up occurred.
141
1422007-05-11      Ralf Corsépius <ralf.corsepius@rtems.org>
143
144        * clock/clock.c: include <tic4x/c4xio.h>.
145
1462007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * bsp_specs: Remove qrtems_debug.
149
1502006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
151
152        * configure.ac: New BUG-REPORT address.
153
1542006-11-15      Joel Sherrill <joel@OARcorp.com>
155
156        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
157        file and simplified initialization.
158
1592006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * Makefile.am: Remove superfluous -DASM.
162
1632006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
164
165        * configure.ac: Require autoconf-2.60. Require automake-1.10.
166
1672006-05-31      Joel Sherrill <joel@OARcorp.com>
168
169        * clock/clock.c: Switch to using shared clock driver shell.
170
1712006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * Makefile.am: Add preinstall.am.
174
1752005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * include/bsp.h: New header guard.
178
1792005-02-02      Ralf Corsepius <ralf.corsepius@rtems.org>
180
181        * include/tm27.h, timer/timer.c: #include <rtems/tic4x/c4xio.h>
182        instead of <rtems/tic4x/c4xio.h>.
183
1842005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
187
1882005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * Makefile.am: Remove build-variant support.
191
1922004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
193
194        * configure.ac: Require automake > 1.9.
195
1962004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
197
198        PR 610/bsps
199        * Makefile.am: Add include/tm27.h, Cosmetics.
200        * include/tm27.h: Final cosmetics.
201
2022004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
203
204        * include/bsp.h: Split out tmtest27 support.
205        * include/tm27.h: New.
206
2072004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
208
209        PR 613/bsps
210        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
211
2122004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
213
214        PR 614/bsps
215        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
216
2172004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
218
219        * clock/clock.c, include/bsp.h, timer/timer.c: Include
220        <rtems/c4x/c4xio.h> instead of <c4xio.h>.
221
2222004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
223
224        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
225        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
226        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
227
2282004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
229
230        * clock/clock.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
231        Convert to using c99 fixed size types.
232
2332004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * Makefile.am: Reflect changes to bsp.am.
236        Preinstall dist_project_lib*.
237
2382004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * Makefile.am: Reflect changes to bsp.am.
241
2422004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * Makefile.am: Reflect changes to bsp.am.
245
2462004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
249
2502004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Pickup files from ../../c4x/shared instead of
253        ../shared. Reformat.
254
2552004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
258        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
259        wrapup/Makefile.am.
260        Use automake compilation rules.
261        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
262        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
263        Remove.
264        * configure.ac: Reflect changes above.
265
2662004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
269        Add RTEMS_PROG_CCAS.
270
2712004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Add PREINSTALL_DIRS.
274
2752004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
278        Add PRE/TMPINSTALL_FILES to CLEANFILES.
279        * start/Makefile.am: Ditto.
280        * startup/Makefile.am: Ditto.
281
2822004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * wrapup/Makefile.am: Eliminate $(LIB).
285        Use noinst_DATA to trigger building libbsp.a.
286
2872003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
290        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
291
2922003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
295        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
296
2972003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
300
3012003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * start/Makefile.am: Misc cleanups and fixes.
304        * startup/Makefile.am: Misc cleanups and fixes.
305        * wrapup/Makefile.am: Misc cleanups and fixes.
306
3072003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * Makefile.am: Add preinstallation dirstamp support.
310        * clock/Makefile.am: Cosmetics.
311        * console/Makefile.am: Cosmetics.
312        * startup/Makefile.am: Cosmetics.
313        * timer/Makefile.am: Cosmetics.
314        * wrapup/Makefile.am: Cosmetics.
315
3162003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * clock/Makefile.am: Remove all-local: $(ARCH).
319        * console/Makefile.am: Remove all-local: $(ARCH).
320        * start/Makefile.am: Remove all-local: $(ARCH).
321        * startup/Makefile.am: Remove all-local: $(ARCH).
322        * timer/Makefile.am: Remove all-local: $(ARCH).
323        * wrapup/Makefile.am: Remove all-local: $(ARCH).
324
3252003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * Makefile.am: Merge-in include/Makefile.am.
328        Reflect changes to bsp.am.
329        * include/Makefile.am: Remove.
330        * configure.ac: Reflect changes above.
331
3322003-09-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * bsp_specs: Remove *lib:.
335
3362003-09-04      Joel Sherrill <joel@OARcorp.com>
337
338        * clock/clock.c, console/console.c, console/consolereserveresources.c,
339        console/debugio.c, include/bsp.h, startup/bspstart.c,
340        startup/spurious.c, timer/timer.c: URL for license changed.
341
3422003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * Makefile.am: Reflect having moved aclocal/.
345
3462003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * Makefile.am: Reflect having moved automake/.
349        * clock/Makefile.am: Reflect having moved automake/.
350        * console/Makefile.am: Reflect having moved automake/.
351        * include/Makefile.am: Reflect having moved automake/.
352        * start/Makefile.am: Reflect having moved automake/.
353        * startup/Makefile.am: Reflect having moved automake/.
354        * timer/Makefile.am: Reflect having moved automake/.
355        * wrapup/Makefile.am: Reflect having moved automake/.
356
3572003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        PR 452/bsps
360        * startup/Makefile.am: Remove USE_INIT_FINI.
361
3622003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
365
3662003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        PR 445/bsps
369        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
370        Remove cpp, old_cpp (now unused).
371
3722003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * configure.ac: Remove AC_CONFIG_AUX_DIR.
375
3762003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
379
3802003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * configure.ac: AC_PREREQ(2.57).
383
3842003-01-20      Joel Sherrill <joel@OARcorp.com>
385
386        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
387
3882002-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
391        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
392        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
393        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
394        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
395
3962002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
399        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
400        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
401        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403
4042002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * start/Makefile.am: Use install-data-local to install startfile.
407
4082002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
411
4122002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
415        changes.
416
4172002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * .cvsignore: Reformat.
420        Add autom4te*cache.
421        Remove autom4te.cache.
422
4232002-09-14      Joel Sherrill <joel@OARcorp.com>
424
425        * clock/clock.c: Per PR257, remove reference to c3x_set_ie.
426        c4x variant should use c4x_set_iie().
427
4282002-08-21      Joel Sherrill <joel@OARcorp.com>
429
430        * bsp_specs: Added support for -nostdlibs.
431
4322002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
435        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
436        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
437        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
438        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
439        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
440
4412002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * start/Makefile.am: Eliminate PGM.
444        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
445
4462002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
449
4502002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
453        Remove $(OBJS) from all-local.
454
4552002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
458
4592002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * configure.ac:
462        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
463        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
464        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
465        * Makefile.am: Remove AUTOMAKE_OPTIONS.
466        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
467        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
468        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
469        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
470        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
471        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
472
4732002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
476        * startup/spurious.c: Include rtems/bspIo.h instead of bspIo.h.
477
4782001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
481        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
482
4832001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
486
4872001-10-12      Joel Sherrill <joel@OARcorp.com>
488
489        * console/console.c: Fixed typo.
4902001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
493        * configure.in: Remove.
494        * configure.ac: New file, generated from configure.in by autoupdate.
495
4962001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
497
498        * include/Makefile.am: Use 'CLEANFILES ='.
499        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
500
5012001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
502
503        * configure.in: Add bspopts.h, fix PACKAGE.
504        * include/.cvsignore: Add bspopts.h*, stamp-h*.
505        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
506        * include/bsp.h: Include bspopts.h.
507
5082001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
509
510        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
511
5122000-12-06      Joel Sherrill <joel@OARcorp.com>
513
514        * console/consolereserveresources.c: Removed code NOT file (YET).
515
5162000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
519
5202000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
523
5242000-11-01      Joel Sherrill <joel@OARcorp.com>
525
526        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
527        and libcsupport.h moved from libc to lib/include/rtems and
528        now must be referenced as <rtems/XXX.h>.   Header file order
529        was cleaned up while doing this.
530
5312000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
534        Switch to GNU canonicalization.
535
5362000-09-22      Joel Sherrill <joel@OARcorp.com>
537
538        * startup/linkcmds: Use default object format to avoid name
539        changes in object format due to tool version changes.
540
5412000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
544        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
545        Include compile.am
546
5472000-08-10      Joel Sherrill <joel@OARcorp.com>
548
549        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.