source: rtems/c/src/lib/libbsp/c4x/c4xsim/ChangeLog @ 29949e98

4.104.115
Last change on this file since 29949e98 was 29949e98, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/15/09 at 06:02:05

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

  • make/custom/c3xsim.cfg: New (relocated from /make/custom).
  • make/custom/c4xsim.cfg: New (relocated from /make/custom).
  • Property mode set to 100644
File size: 17.6 KB
Line 
12009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * make/custom/c3xsim.cfg: New (relocated from /make/custom).
4        * make/custom/c4xsim.cfg: New (relocated from /make/custom).
5
62009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
9
10 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
13        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
14        have the same options.
15
162009-04-28      Chris Johns <chrisj@rtems.org>
17
18        * start/start.S: Update for boot_card command line change.
19
202008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * bsp_specs: Move -e start from *link to *startfile to avoid warning
23        for undefined entry symbol when linking relocatables with binutils
24        2.19.
25
262008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * clock/clock.c: include "../../../shared/clockdrv_shell.h".
29        * Makefile.am: Reflect changes above.
30
312008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
32
33        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
34        of building libbspstart.a, using automake-rules.
35
362008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
37
38        * Makefile.am: Eliminate *_SOURCES.
39
402008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
41
42        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
43        components.
44
452008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
46
47        * Makefile.am: Remove noinst_PROGRAMS (Unused).
48
492008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * configure.ac: Make letting boot_card() handle work area allocation
52        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
53        BSP_BOOTCARD_OPTIONS.
54
552008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * Makefile.am, console/debugio.c: Split out bspstart contents. Use
58        shared stub for bsp_start.
59        * startup/bsppretaskinghook.c: New file.
60        * startup/bspstart.c: Removed.
61
622008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * include/bsp.h: Remove unnecessary boilerplate comments.
65
662008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
67
68        * Makefile.am, startup/linkcmds: Use top level shared
69        bsp_get_work_area() implementation.
70        * startup/bspgetworkarea.c: Removed.
71
722008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * clock/clock.c, startup/bspstart.c, startup/linkcmds: Add use of
75        bsp_get_work_area() in its own file and rely on BSP Framework to
76        perform more initialization.
77        * startup/bspgetworkarea.c: New file.
78
792008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
82        phase, all prototypes were removed from bsp.h and empty
83        implementations were removed and made to use the shared stub.
84
852008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
86
87        * timer/timer.c: Convert to "bool".
88
892008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
90
91        * timer/timer.c: Eliminate empty function from every benchmark timer
92        driver. Fix spelling.
93
942008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
95
96        * timer/timer.c: Rename timer driver methods to follow RTEMS
97        programming conventions.
98
992008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
102        Framework to ask the BSP where it has memory for the RTEMS Workspace
103        and C Program Heap. These collectively are referred to as work area.
104        If the BSP supports this, then it does not have to include code to
105        split the available memory between the two areas. This reduces the
106        amount of code in the BSP specific bspstart.c file. Additionally, the
107        shared framework can initialize the C Library, call
108        rtems_debug_enable(), and dirty the work area memory. Until most/all
109        BSPs support this new capability, if the BSP supports this, it should
110        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
111        When the transition is complete, this autoconf macro can be removed.
112
1132008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * Makefile.am: Rework to avoid .rel files.
116
1172008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
118
119        * startup/bspstart.c: Refactored and renamed initialization routines to
120        rtems_initialize_data_structures, rtems_initialize_before_drivers,
121        rtems_initialize_device_drivers, and
122        rtems_initialize_start_multitasking. This opened the sequence up so
123        that bootcard() could provide a more robust and flexible framework
124        which is easier to explain and understand. This also lays the
125        groundwork for sharing the division of available memory between the
126        RTEMS workspace and heap and the C library initialization across all
127        BSPs.
128
1292007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
130
131        * clock/clock.c, include/bsp.h, startup/bspstart.c: Eliminate copies of
132        the Configuration Table. Use the RTEMS provided accessor macros to
133        obtain configuration fields.
134
1352007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
136
137        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
138        from CPU Table to Configuration Table. Eliminate CPU Table from all
139        ports. Delete references to CPU Table in all forms.
140
1412007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
142
143        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
144        Table fields to the Configuration Table. This included
145        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
146        do_zero_of_workspace, extra_mpci_receive_server_stack,
147        stack_allocate_hook, and stack_free_hook. As a side-effect of this
148        effort some multiprocessing code was made conditional and some style
149        clean up occurred.
150
1512007-05-11      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * clock/clock.c: include <tic4x/c4xio.h>.
154
1552007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
156
157        * bsp_specs: Remove qrtems_debug.
158
1592006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * configure.ac: New BUG-REPORT address.
162
1632006-11-15      Joel Sherrill <joel@OARcorp.com>
164
165        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
166        file and simplified initialization.
167
1682006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
169
170        * Makefile.am: Remove superfluous -DASM.
171
1722006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * configure.ac: Require autoconf-2.60. Require automake-1.10.
175
1762006-05-31      Joel Sherrill <joel@OARcorp.com>
177
178        * clock/clock.c: Switch to using shared clock driver shell.
179
1802006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * Makefile.am: Add preinstall.am.
183
1842005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        * include/bsp.h: New header guard.
187
1882005-02-02      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * include/tm27.h, timer/timer.c: #include <rtems/tic4x/c4xio.h>
191        instead of <rtems/tic4x/c4xio.h>.
192
1932005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
194
195        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
196
1972005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * Makefile.am: Remove build-variant support.
200
2012004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        * configure.ac: Require automake > 1.9.
204
2052004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        PR 610/bsps
208        * Makefile.am: Add include/tm27.h, Cosmetics.
209        * include/tm27.h: Final cosmetics.
210
2112004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
212
213        * include/bsp.h: Split out tmtest27 support.
214        * include/tm27.h: New.
215
2162004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
217
218        PR 613/bsps
219        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
220
2212004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        PR 614/bsps
224        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
225
2262004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
227
228        * clock/clock.c, include/bsp.h, timer/timer.c: Include
229        <rtems/c4x/c4xio.h> instead of <c4xio.h>.
230
2312004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
232
233        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
234        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
235        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
236
2372004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
238
239        * clock/clock.c, include/bsp.h, startup/bspstart.c, timer/timer.c:
240        Convert to using c99 fixed size types.
241
2422004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * Makefile.am: Reflect changes to bsp.am.
245        Preinstall dist_project_lib*.
246
2472004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * Makefile.am: Reflect changes to bsp.am.
250
2512004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * Makefile.am: Reflect changes to bsp.am.
254
2552004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
258
2592004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Pickup files from ../../c4x/shared instead of
262        ../shared. Reformat.
263
2642004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
265
266        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
267        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
268        wrapup/Makefile.am.
269        Use automake compilation rules.
270        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
271        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
272        Remove.
273        * configure.ac: Reflect changes above.
274
2752004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
278        Add RTEMS_PROG_CCAS.
279
2802004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * Makefile.am: Add PREINSTALL_DIRS.
283
2842004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
285
286        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
287        Add PRE/TMPINSTALL_FILES to CLEANFILES.
288        * start/Makefile.am: Ditto.
289        * startup/Makefile.am: Ditto.
290
2912004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * wrapup/Makefile.am: Eliminate $(LIB).
294        Use noinst_DATA to trigger building libbsp.a.
295
2962003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
299        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
300
3012003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
304        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
305
3062003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
309
3102003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * start/Makefile.am: Misc cleanups and fixes.
313        * startup/Makefile.am: Misc cleanups and fixes.
314        * wrapup/Makefile.am: Misc cleanups and fixes.
315
3162003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * Makefile.am: Add preinstallation dirstamp support.
319        * clock/Makefile.am: Cosmetics.
320        * console/Makefile.am: Cosmetics.
321        * startup/Makefile.am: Cosmetics.
322        * timer/Makefile.am: Cosmetics.
323        * wrapup/Makefile.am: Cosmetics.
324
3252003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * clock/Makefile.am: Remove all-local: $(ARCH).
328        * console/Makefile.am: Remove all-local: $(ARCH).
329        * start/Makefile.am: Remove all-local: $(ARCH).
330        * startup/Makefile.am: Remove all-local: $(ARCH).
331        * timer/Makefile.am: Remove all-local: $(ARCH).
332        * wrapup/Makefile.am: Remove all-local: $(ARCH).
333
3342003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * Makefile.am: Merge-in include/Makefile.am.
337        Reflect changes to bsp.am.
338        * include/Makefile.am: Remove.
339        * configure.ac: Reflect changes above.
340
3412003-09-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * bsp_specs: Remove *lib:.
344
3452003-09-04      Joel Sherrill <joel@OARcorp.com>
346
347        * clock/clock.c, console/console.c, console/consolereserveresources.c,
348        console/debugio.c, include/bsp.h, startup/bspstart.c,
349        startup/spurious.c, timer/timer.c: URL for license changed.
350
3512003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * Makefile.am: Reflect having moved aclocal/.
354
3552003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Reflect having moved automake/.
358        * clock/Makefile.am: Reflect having moved automake/.
359        * console/Makefile.am: Reflect having moved automake/.
360        * include/Makefile.am: Reflect having moved automake/.
361        * start/Makefile.am: Reflect having moved automake/.
362        * startup/Makefile.am: Reflect having moved automake/.
363        * timer/Makefile.am: Reflect having moved automake/.
364        * wrapup/Makefile.am: Reflect having moved automake/.
365
3662003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        PR 452/bsps
369        * startup/Makefile.am: Remove USE_INIT_FINI.
370
3712003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
374
3752003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        PR 445/bsps
378        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
379        Remove cpp, old_cpp (now unused).
380
3812003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac: Remove AC_CONFIG_AUX_DIR.
384
3852003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
388
3892003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * configure.ac: AC_PREREQ(2.57).
392
3932003-01-20      Joel Sherrill <joel@OARcorp.com>
394
395        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
396
3972002-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
398
399        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
400        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
401        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404
4052002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
408        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
409        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
410        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
411        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
412
4132002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * start/Makefile.am: Use install-data-local to install startfile.
416
4172002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
420
4212002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
424        changes.
425
4262002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * .cvsignore: Reformat.
429        Add autom4te*cache.
430        Remove autom4te.cache.
431
4322002-09-14      Joel Sherrill <joel@OARcorp.com>
433
434        * clock/clock.c: Per PR257, remove reference to c3x_set_ie.
435        c4x variant should use c4x_set_iie().
436
4372002-08-21      Joel Sherrill <joel@OARcorp.com>
438
439        * bsp_specs: Added support for -nostdlibs.
440
4412002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
444        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
445        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
446        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
447        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
448        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
449
4502002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * start/Makefile.am: Eliminate PGM.
453        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
454
4552002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
458
4592002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
462        Remove $(OBJS) from all-local.
463
4642002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
467
4682002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * configure.ac:
471        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
472        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
473        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
474        * Makefile.am: Remove AUTOMAKE_OPTIONS.
475        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
476        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
478        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
479        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
480        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
481
4822002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
485        * startup/spurious.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-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
495
4962001-10-12      Joel Sherrill <joel@OARcorp.com>
497
498        * console/console.c: Fixed typo.
4992001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
502        * configure.in: Remove.
503        * configure.ac: New file, generated from configure.in by autoupdate.
504
5052001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * include/Makefile.am: Use 'CLEANFILES ='.
508        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
509
5102001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * configure.in: Add bspopts.h, fix PACKAGE.
513        * include/.cvsignore: Add bspopts.h*, stamp-h*.
514        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
515        * include/bsp.h: Include bspopts.h.
516
5172001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
518
519        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
520
5212000-12-06      Joel Sherrill <joel@OARcorp.com>
522
523        * console/consolereserveresources.c: Removed code NOT file (YET).
524
5252000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
528
5292000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
532
5332000-11-01      Joel Sherrill <joel@OARcorp.com>
534
535        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
536        and libcsupport.h moved from libc to lib/include/rtems and
537        now must be referenced as <rtems/XXX.h>.   Header file order
538        was cleaned up while doing this.
539
5402000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
541
542        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
543        Switch to GNU canonicalization.
544
5452000-09-22      Joel Sherrill <joel@OARcorp.com>
546
547        * startup/linkcmds: Use default object format to avoid name
548        changes in object format due to tool version changes.
549
5502000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
551
552        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
553        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am:
554        Include compile.am
555
5562000-08-10      Joel Sherrill <joel@OARcorp.com>
557
558        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.