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

4.104.115
Last change on this file since de237f4 was de237f4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/07/10 at 21:50:11

2010-04-07 Joel Sherrill <joel.sherrill@…>

  • start/start.S: Verify boot_card() is passed a NULL.
  • Property mode set to 100644
File size: 17.5 KB
Line 
12010-04-07      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * start/start.S: Verify boot_card() is passed a NULL.
4
52009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * make/custom/m32csim.cfg: Remove RTEMS_BSP_FAMILY.
8
92009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * configure.ac: Don't add -ansi -fasm to CFLAGS.
12
132009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * make/custom/m32csim.cfg: New (relocated from /make/custom).
16
172009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
20
21 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
22
23        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
24        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
25        have the same options.
26
272009-05-18      Joel Sherrill <joel.sherrill@OARcorp.com>
28
29        * console/console-io.c: Fix typo.
30
312009-04-28      Chris Johns <chrisj@rtems.org>
32
33        * start/start.S: Update for boot_card command line change.
34
352008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
36
37        * bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
38        to avoid warning for undefined entry symbol when linking relocatables
39        with binutils 2.19.
40
412008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * README: New file.
44
452008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
46
47        * .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac,
48        preinstall.am, console/console-io.c, console/syscalls.S,
49        include/.cvsignore, include/bsp.h, start/start.S, startup/bspstart.c,
50        startup/crtn.S, startup/linkcmds, timer/timer.c, tools/.cvsignore,
51        tools/Makefile.am, tools/configure.ac, tools/runtest.in: New files.
52
532008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
54
55        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
56
572008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * console/console-io.c: Add missing file and remove junk code.
60        * console/syscalls.S: New file.
61
622008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * startup/linkcmds: Simulator now appears to have 16M RAM support by
65        default in gdb 6.8.
66
672008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * Makefile.am, console/console-io.c, include/bsp.h:
70
712008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
72
73        * configure.ac: Make letting boot_card() handle work area allocation
74        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
75        BSP_BOOTCARD_OPTIONS.
76
772008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * Makefile.am: Split out bspstart contents. Use shared stub for
80        bsp_start.
81        * startup/h8bdinstallirq.c: New file.
82        * startup/bspstart.c: Removed.
83
842008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * include/bsp.h: Remove unnecessary boilerplate comments.
87
882008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
89
90        * Makefile.am, startup/linkcmds: Use top level shared
91        bsp_get_work_area() implementation.
92        * startup/bspgetworkarea.c: Removed.
93
942008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
95
96        * startup/bspstart.c: Remove unnecessary includes of
97        rtems/libcsupport.h and rtems/libio.h.
98
992008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * Makefile.am, configure.ac, startup/__main.c, startup/bspstart.c:
102        Split out bsp_get_work_area() into its own file and user BSP
103        Framework to perform more initialization.
104        * startup/bspgetworkarea.c: New file.
105
1062008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
107
108        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
109        phase, all prototypes were removed from bsp.h and empty
110        implementations were removed and made to use the shared stub.
111
1122008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
113
114        * startup/__main.c: Add missing prototypes.
115
1162008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
117
118        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
119        Framework to ask the BSP where it has memory for the RTEMS Workspace
120        and C Program Heap. These collectively are referred to as work area.
121        If the BSP supports this, then it does not have to include code to
122        split the available memory between the two areas. This reduces the
123        amount of code in the BSP specific bspstart.c file. Additionally, the
124        shared framework can initialize the C Library, call
125        rtems_debug_enable(), and dirty the work area memory. Until most/all
126        BSPs support this new capability, if the BSP supports this, it should
127        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
128        When the transition is complete, this autoconf macro can be removed.
129
1302008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
131
132        * Makefile.am: Rework to avoid .rel files.
133
1342008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * startup/bspstart.c: Refactored and renamed initialization routines to
137        rtems_initialize_data_structures, rtems_initialize_before_drivers,
138        rtems_initialize_device_drivers, and
139        rtems_initialize_start_multitasking. This opened the sequence up so
140        that bootcard() could provide a more robust and flexible framework
141        which is easier to explain and understand. This also lays the
142        groundwork for sharing the division of available memory between the
143        RTEMS workspace and heap and the C library initialization across all
144        BSPs.
145
1462007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
147
148        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
149        Configuration Table. Use the RTEMS provided accessor macros to obtain
150        configuration fields.
151
1522007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
153
154        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
155        Configuration Table. Eliminate CPU Table from all ports. Delete
156        references to CPU Table in all forms.
157
1582007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
159
160        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
161        Table fields to the Configuration Table. This included
162        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
163        do_zero_of_workspace, extra_mpci_receive_server_stack,
164        stack_allocate_hook, and stack_free_hook. As a side-effect of this
165        effort some multiprocessing code was made conditional and some style
166        clean up occurred.
167
1682007-05-03      Joel Sherrill <joel@OARcorp.com>
169
170        * startup/linkcmds: Handle .data.* sections
171
1722007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * bsp_specs: Remove qrtems_debug.
175
1762006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
177
178        * configure.ac: New BUG-REPORT address.
179
1802006-11-15      Joel Sherrill <joel@OARcorp.com>
181
182        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
183        file and simplified initialization.
184
1852006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
186
187        * Makefile.am: Remove superfluous -DASM.
188
1892006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
190
191        * configure.ac: Require autoconf-2.60. Require automake-1.10.
192
1932006-02-08      Joel Sherrill <joel@OARcorp.com>
194
195        * startup/linkcmds: Add sections required by newer gcc versions.
196
1972006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * Makefile.am: Add preinstall.am.
200
2012005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
202
203        * include/bsp.h: New header guard.
204
2052005-05-11      Joel Sherrill <joel@OARcorp.com>
206
207        * startup/linkcmds: Add .rodata.* sections.
208
2092005-03-07      Joel Sherrill <joel@OARcorp.com>
210
211        * Makefile.am: Add timerstub so more tests link.
212
2132005-03-07      Joel Sherrill <joel@OARcorp.com>
214
215        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
216
2172005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
218
219        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
220
2212005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
222
223        * Makefile.am: Remove build-variant support.
224
2252004-09-29      Joel Sherrill <joel@OARcorp.com>
226
227        * include/bsp.h, include/tm27.h: i960 obsoleted and all references
228        removed.
229
2302004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
231
232        * configure.ac: Require automake > 1.9.
233
2342004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
235
236        PR 610/bsps
237        * Makefile.am: Add include/tm27.h, Cosmetics.
238        * include/tm27.h: Final cosmetics.
239
2402004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
241
242        * include/bsp.h: Split out tmtest27 support.
243        * include/tm27.h: New.
244
2452004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
246
247        PR 613/bsps
248        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
249
2502004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
251
252        PR 614/bsps
253        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
254
2552004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
256
257        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
258        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
259        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
260
2612004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
262
263        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
264        types.
265
2662004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * Makefile.am: Reflect changes to bsp.am.
269        Preinstall dist_project_lib*.
270
2712004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Reflect changes to bsp.am.
274
2752004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
278
2792004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
282        start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am.
283        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
284        startup/Makefile.am, wrapup/Makefile.am: Remove.
285        Use automake compilation rules.
286        * configure.ac: Reflect changes above.
287
2882004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * Makefile.am: Add PREINSTALL_DIRS.
291
2922004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
295        Add PRE/TMPINSTALL_FILES to CLEANFILES.
296        * startup/Makefile.am: Ditto.
297
2982004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * wrapup/Makefile.am: Eliminate $(LIB).
301        Use noinst_DATA to trigger building libbsp.a.
302
3032003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
306        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
307
3082003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
311        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
312
3132003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
316
3172003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * clock/Makefile.am: Misc cleanups and fixes.
320        * start/Makefile.am: Misc cleanups and fixes.
321        * startup/Makefile.am: Misc cleanups and fixes.
322        * wrapup/Makefile.am: Misc cleanups and fixes.
323
3242003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * Makefile.am: Add dirstamps to preinstallation.
327        * clock/Makefile.am: Cosmetics.
328        * console/Makefile.am: Cosmetics.
329        * startup/Makefile.am: Cosmetics.
330        * wrapup/Makefile.am: Cosmetics.
331
3322003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * clock/Makefile.am: Remove all-local: $(ARCH).
335        * console/Makefile.am: Remove all-local: $(ARCH).
336        * start/Makefile.am: Remove all-local: $(ARCH).
337        * startup/Makefile.am: Remove all-local: $(ARCH).
338        * wrapup/Makefile.am: Remove all-local: $(ARCH).
339
3402003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Merge-in include/Makefile.am.
343        Reflect changes to bsp.am.
344        * include/Makefile.am: Remove.
345        * configure.ac: Reflect changes above.
346
3472003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * bsp_specs: Remove *lib:.
350
3512003-09-04      Joel Sherrill <joel@OARcorp.com>
352
353        * console/console-io.c, include/bsp.h, startup/bspstart.c: URL for
354        license changed.
355
3562003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * Makefile.am: Reflect having moved aclocal/.
359
3602003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        * Makefile.am: Reflect having moved automake/.
363        * clock/Makefile.am: Reflect having moved automake/.
364        * console/Makefile.am: Reflect having moved automake/.
365        * include/Makefile.am: Reflect having moved automake/.
366        * start/Makefile.am: Reflect having moved automake/.
367        * startup/Makefile.am: Reflect having moved automake/.
368        * wrapup/Makefile.am: Reflect having moved automake/.
369
3702003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
373
3742003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        PR 445/bsps
377        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
378        Remove cpp, old_cpp (now unused).
379
3802003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * configure.ac: Remove AC_CONFIG_AUX_DIR.
383
3842003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
387
3882003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * configure.ac: AC_PREREQ(2.57).
391
3922003-01-20      Joel Sherrill <joel@OARcorp.com>
393
394        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
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
4032002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * start/Makefile.am: Use install-data-local to install startfile.
406
4072002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
410
4112002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * startup/bspstart.c: Add empty H8BD_Install_IRQ so the port will have
414        a routine to call.
415
4162002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * startup/bspstart.c: Remove ramStart to eliminate warning.
419
4202002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * .cvsignore: Reformat.
423        Add autom4te*cache.
424        Remove autom4te.cache.
425
4262002-08-21      Joel Sherrill <joel@OARcorp.com>
427
428        * bsp_specs: Added support for -nostdlibs.
429
4302002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
433        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
434        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
435        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
436        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
437
4382002-08-05      Joel Sherrill <joel@OARcorp.com>
439
440        * startup/bspstart.c, startup/linkcmds: Per PR247 , fix the linkcmds
441        to avoid overlapping sections and reworked the way the heap and
442        workspace are calculated.
443
4442002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * start/Makefile.am: Eliminate PGM.
447        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
448
4492002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
452
4532002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
456        Remove $(OBJS) from all-local.
457
4582002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * wrapup/Makefile.am: Add $(LIB) to all-local.
461
4622002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
465
4662002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * configure.ac:
469        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
470        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
471        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
472        * Makefile.am: Remove AUTOMAKE_OPTIONS.
473        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
474        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
475        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
476        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
478
4792002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
480
481        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
482
4832001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
486        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
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-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
496
4972001-10-12      Joel Sherrill <joel@OARcorp.com>
498
499        * console/console-io.c: Fixed typo.
500
5012001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
502
503        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
504        * configure.in: Remove.
505        * configure.ac: New file, generated from configure.in by autoupdate.
506
5072001-09-27      Joel Sherrill <joel@OARcorp.com>
508
509        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
510
5112001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * include/Makefile.am: Use 'CLEANFILES ='.
514        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
515
5162001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * configure.in: Add bspopts.h.
519        * include/.cvsignore: Add bspopts.h*, stamp-h*.
520        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
521        * include/bsp.h: Include bspopts.h.
522
5232001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
524
525        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
526
5272001-01-03      Joel Sherrill <joel@OARcorp.com>
528
529        * console/console-io.c: Added console_initialize_hardware().
530
5312000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
534
5352000-11-09      Joel Sherrill <joel@OARcorp.com>
536
537        * configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
538        wrapup/Makefile.am: Added include of stub clock driver so ticker
539        would link.
540
5412000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
544
5452000-11-01      Joel Sherrill <joel@OARcorp.com>
546
547        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
548        libcsupport.h moved from libc to lib/include/rtems and
549        now must be referenced as <rtems/XXX.h>.   Header file order
550        was cleaned up while doing this.
551
5522000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
555        Switch to GNU canonicalization.
556
5572000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * console/Makefile.am, start/Makefile.am, startup/Makefile.am,
560        wrapup/Makefile.am: Include compile.am
561
5622000-08-10      Joel Sherrill <joel@OARcorp.com>
563
564        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.