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

4.104.115
Last change on this file since 157f5a0 was 157f5a0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/21/09 at 10:44:18

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

  • make/custom/m32csim.cfg: Remove RTEMS_BSP_FAMILY.
  • Property mode set to 100644
File size: 17.4 KB
Line 
12009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * make/custom/m32csim.cfg: Remove RTEMS_BSP_FAMILY.
4
52009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * configure.ac: Don't add -ansi -fasm to CFLAGS.
8
92009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * make/custom/m32csim.cfg: New (relocated from /make/custom).
12
132009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
16
17 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
18
19        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
20        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
21        have the same options.
22
232009-05-18      Joel Sherrill <joel.sherrill@OARcorp.com>
24
25        * console/console-io.c: Fix typo.
26
272009-04-28      Chris Johns <chrisj@rtems.org>
28
29        * start/start.S: Update for boot_card command line change.
30
312008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * bsp_specs, tools/runtest.in: Move -e start from *link to *startfile
34        to avoid warning for undefined entry symbol when linking relocatables
35        with binutils 2.19.
36
372008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
38
39        * README: New file.
40
412008-10-02      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * .cvsignore, ChangeLog, Makefile.am, bsp_specs, configure.ac,
44        preinstall.am, console/console-io.c, console/syscalls.S,
45        include/.cvsignore, include/bsp.h, start/start.S, startup/bspstart.c,
46        startup/crtn.S, startup/linkcmds, timer/timer.c, tools/.cvsignore,
47        tools/Makefile.am, tools/configure.ac, tools/runtest.in: New files.
48
492008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
50
51        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
52
532008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * console/console-io.c: Add missing file and remove junk code.
56        * console/syscalls.S: New file.
57
582008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
59
60        * startup/linkcmds: Simulator now appears to have 16M RAM support by
61        default in gdb 6.8.
62
632008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * Makefile.am, console/console-io.c, include/bsp.h:
66
672008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * configure.ac: Make letting boot_card() handle work area allocation
70        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
71        BSP_BOOTCARD_OPTIONS.
72
732008-09-19      Joel Sherrill <joel.sherrill@oarcorp.com>
74
75        * Makefile.am: Split out bspstart contents. Use shared stub for
76        bsp_start.
77        * startup/h8bdinstallirq.c: New file.
78        * startup/bspstart.c: Removed.
79
802008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
81
82        * include/bsp.h: Remove unnecessary boilerplate comments.
83
842008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * Makefile.am, startup/linkcmds: Use top level shared
87        bsp_get_work_area() implementation.
88        * startup/bspgetworkarea.c: Removed.
89
902008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * startup/bspstart.c: Remove unnecessary includes of
93        rtems/libcsupport.h and rtems/libio.h.
94
952008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
96
97        * Makefile.am, configure.ac, startup/__main.c, startup/bspstart.c:
98        Split out bsp_get_work_area() into its own file and user BSP
99        Framework to perform more initialization.
100        * startup/bspgetworkarea.c: New file.
101
1022008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
103
104        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
105        phase, all prototypes were removed from bsp.h and empty
106        implementations were removed and made to use the shared stub.
107
1082008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
109
110        * startup/__main.c: Add missing prototypes.
111
1122008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
113
114        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
115        Framework to ask the BSP where it has memory for the RTEMS Workspace
116        and C Program Heap. These collectively are referred to as work area.
117        If the BSP supports this, then it does not have to include code to
118        split the available memory between the two areas. This reduces the
119        amount of code in the BSP specific bspstart.c file. Additionally, the
120        shared framework can initialize the C Library, call
121        rtems_debug_enable(), and dirty the work area memory. Until most/all
122        BSPs support this new capability, if the BSP supports this, it should
123        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
124        When the transition is complete, this autoconf macro can be removed.
125
1262008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * Makefile.am: Rework to avoid .rel files.
129
1302008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
131
132        * startup/bspstart.c: Refactored and renamed initialization routines to
133        rtems_initialize_data_structures, rtems_initialize_before_drivers,
134        rtems_initialize_device_drivers, and
135        rtems_initialize_start_multitasking. This opened the sequence up so
136        that bootcard() could provide a more robust and flexible framework
137        which is easier to explain and understand. This also lays the
138        groundwork for sharing the division of available memory between the
139        RTEMS workspace and heap and the C library initialization across all
140        BSPs.
141
1422007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
143
144        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
145        Configuration Table. Use the RTEMS provided accessor macros to obtain
146        configuration fields.
147
1482007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
149
150        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
151        Configuration Table. Eliminate CPU Table from all ports. Delete
152        references to CPU Table in all forms.
153
1542007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
155
156        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
157        Table fields to the Configuration Table. This included
158        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
159        do_zero_of_workspace, extra_mpci_receive_server_stack,
160        stack_allocate_hook, and stack_free_hook. As a side-effect of this
161        effort some multiprocessing code was made conditional and some style
162        clean up occurred.
163
1642007-05-03      Joel Sherrill <joel@OARcorp.com>
165
166        * startup/linkcmds: Handle .data.* sections
167
1682007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
169
170        * bsp_specs: Remove qrtems_debug.
171
1722006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * configure.ac: New BUG-REPORT address.
175
1762006-11-15      Joel Sherrill <joel@OARcorp.com>
177
178        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
179        file and simplified initialization.
180
1812006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * Makefile.am: Remove superfluous -DASM.
184
1852006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
186
187        * configure.ac: Require autoconf-2.60. Require automake-1.10.
188
1892006-02-08      Joel Sherrill <joel@OARcorp.com>
190
191        * startup/linkcmds: Add sections required by newer gcc versions.
192
1932006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
194
195        * Makefile.am: Add preinstall.am.
196
1972005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * include/bsp.h: New header guard.
200
2012005-05-11      Joel Sherrill <joel@OARcorp.com>
202
203        * startup/linkcmds: Add .rodata.* sections.
204
2052005-03-07      Joel Sherrill <joel@OARcorp.com>
206
207        * Makefile.am: Add timerstub so more tests link.
208
2092005-03-07      Joel Sherrill <joel@OARcorp.com>
210
211        * startup/linkcmds: Hacked so there is enough memory to link pppd.exe.
212
2132005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
214
215        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
216
2172005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
218
219        * Makefile.am: Remove build-variant support.
220
2212004-09-29      Joel Sherrill <joel@OARcorp.com>
222
223        * include/bsp.h, include/tm27.h: i960 obsoleted and all references
224        removed.
225
2262004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
227
228        * configure.ac: Require automake > 1.9.
229
2302004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
231
232        PR 610/bsps
233        * Makefile.am: Add include/tm27.h, Cosmetics.
234        * include/tm27.h: Final cosmetics.
235
2362004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
237
238        * include/bsp.h: Split out tmtest27 support.
239        * include/tm27.h: New.
240
2412004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
242
243        PR 613/bsps
244        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
245
2462004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
247
248        PR 614/bsps
249        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
250
2512004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
252
253        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
254        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
255        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
256
2572004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
258
259        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
260        types.
261
2622004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Reflect changes to bsp.am.
265        Preinstall dist_project_lib*.
266
2672004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * Makefile.am: Reflect changes to bsp.am.
270
2712004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
274
2752004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
278        start/Makefile.am, startup/Makefile.am, wrapup/Makefile.am.
279        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
280        startup/Makefile.am, wrapup/Makefile.am: Remove.
281        Use automake compilation rules.
282        * configure.ac: Reflect changes above.
283
2842004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
285
286        * Makefile.am: Add PREINSTALL_DIRS.
287
2882004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
291        Add PRE/TMPINSTALL_FILES to CLEANFILES.
292        * startup/Makefile.am: Ditto.
293
2942004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * wrapup/Makefile.am: Eliminate $(LIB).
297        Use noinst_DATA to trigger building libbsp.a.
298
2992003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
302        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
303
3042003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
307        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
308
3092003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
312
3132003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * clock/Makefile.am: Misc cleanups and fixes.
316        * start/Makefile.am: Misc cleanups and fixes.
317        * startup/Makefile.am: Misc cleanups and fixes.
318        * wrapup/Makefile.am: Misc cleanups and fixes.
319
3202003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * Makefile.am: Add dirstamps to preinstallation.
323        * clock/Makefile.am: Cosmetics.
324        * console/Makefile.am: Cosmetics.
325        * startup/Makefile.am: Cosmetics.
326        * wrapup/Makefile.am: Cosmetics.
327
3282003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * clock/Makefile.am: Remove all-local: $(ARCH).
331        * console/Makefile.am: Remove all-local: $(ARCH).
332        * start/Makefile.am: Remove all-local: $(ARCH).
333        * startup/Makefile.am: Remove all-local: $(ARCH).
334        * wrapup/Makefile.am: Remove all-local: $(ARCH).
335
3362003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Merge-in include/Makefile.am.
339        Reflect changes to bsp.am.
340        * include/Makefile.am: Remove.
341        * configure.ac: Reflect changes above.
342
3432003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * bsp_specs: Remove *lib:.
346
3472003-09-04      Joel Sherrill <joel@OARcorp.com>
348
349        * console/console-io.c, include/bsp.h, startup/bspstart.c: URL for
350        license changed.
351
3522003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * Makefile.am: Reflect having moved aclocal/.
355
3562003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * Makefile.am: Reflect having moved automake/.
359        * clock/Makefile.am: Reflect having moved automake/.
360        * console/Makefile.am: Reflect having moved automake/.
361        * include/Makefile.am: Reflect having moved automake/.
362        * start/Makefile.am: Reflect having moved automake/.
363        * startup/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        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
369
3702003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        PR 445/bsps
373        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
374        Remove cpp, old_cpp (now unused).
375
3762003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * configure.ac: Remove AC_CONFIG_AUX_DIR.
379
3802003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
383
3842003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * configure.ac: AC_PREREQ(2.57).
387
3882003-01-20      Joel Sherrill <joel@OARcorp.com>
389
390        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
391
3922002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
395        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
396        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
397        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
398
3992002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * start/Makefile.am: Use install-data-local to install startfile.
402
4032002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406
4072002-11-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * startup/bspstart.c: Add empty H8BD_Install_IRQ so the port will have
410        a routine to call.
411
4122002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * startup/bspstart.c: Remove ramStart to eliminate warning.
415
4162002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * .cvsignore: Reformat.
419        Add autom4te*cache.
420        Remove autom4te.cache.
421
4222002-08-21      Joel Sherrill <joel@OARcorp.com>
423
424        * bsp_specs: Added support for -nostdlibs.
425
4262002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
429        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
430        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
431        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
432        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
433
4342002-08-05      Joel Sherrill <joel@OARcorp.com>
435
436        * startup/bspstart.c, startup/linkcmds: Per PR247 , fix the linkcmds
437        to avoid overlapping sections and reworked the way the heap and
438        workspace are calculated.
439
4402002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * start/Makefile.am: Eliminate PGM.
443        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
444
4452002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
448
4492002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
452        Remove $(OBJS) from all-local.
453
4542002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * wrapup/Makefile.am: Add $(LIB) to all-local.
457
4582002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
461
4622002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * configure.ac:
465        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
466        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
467        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
468        * Makefile.am: Remove AUTOMAKE_OPTIONS.
469        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
470        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
471        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
472        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
473        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
474
4752002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
476
477        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
478
4792001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
480
481        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
482        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
483
4842001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
487        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
488
4892001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
492
4932001-10-12      Joel Sherrill <joel@OARcorp.com>
494
495        * console/console-io.c: Fixed typo.
496
4972001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
500        * configure.in: Remove.
501        * configure.ac: New file, generated from configure.in by autoupdate.
502
5032001-09-27      Joel Sherrill <joel@OARcorp.com>
504
505        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
506
5072001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
508
509        * include/Makefile.am: Use 'CLEANFILES ='.
510        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
511
5122001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * configure.in: Add bspopts.h.
515        * include/.cvsignore: Add bspopts.h*, stamp-h*.
516        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
517        * include/bsp.h: Include bspopts.h.
518
5192001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
520
521        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
522
5232001-01-03      Joel Sherrill <joel@OARcorp.com>
524
525        * console/console-io.c: Added console_initialize_hardware().
526
5272000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
528
529        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
530
5312000-11-09      Joel Sherrill <joel@OARcorp.com>
532
533        * configure.in, Makefile.am, clock/Makefile.am, clock/.cvsignore,
534        wrapup/Makefile.am: Added include of stub clock driver so ticker
535        would link.
536
5372000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
540
5412000-11-01      Joel Sherrill <joel@OARcorp.com>
542
543        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
544        libcsupport.h moved from libc to lib/include/rtems and
545        now must be referenced as <rtems/XXX.h>.   Header file order
546        was cleaned up while doing this.
547
5482000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
549
550        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
551        Switch to GNU canonicalization.
552
5532000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
554
555        * console/Makefile.am, start/Makefile.am, startup/Makefile.am,
556        wrapup/Makefile.am: Include compile.am
557
5582000-08-10      Joel Sherrill <joel@OARcorp.com>
559
560        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.