source: rtems/c/src/lib/libbsp/m68k/gen68340/ChangeLog @ 64eb0c7

4.104.115
Last change on this file since 64eb0c7 was 64eb0c7, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 10:19:37

2008-09-29 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate *_SOURCES.
  • Property mode set to 100644
File size: 18.1 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Eliminate *_SOURCES.
4
52008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
8        components.
9
102008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
13
142008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
15
16        * configure.ac: Make letting boot_card() handle work area allocation
17        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
18        BSP_BOOTCARD_OPTIONS.
19
202008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * include/bsp.h: Remove unnecessary boilerplate comments.
23
242008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * Makefile.am, startup/linkcmds: Use top level shared
27        bsp_get_work_area() implementation.
28
292008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * Makefile.am, configure.ac, clock/ckinit.c, startup/linkcmds: Add use
32        of bsp_get_work_area() in its own file and rely on BSP Framework to
33        perform more initialization. Remove unnecessary includes of
34        rtems/libio.h and rtems/libcsupport.h.
35        * startup/bspstart.c: Removed.
36
372008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
38
39        * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
40        implementations. In this phase, all prototypes were removed from
41        bsp.h and empty implementations were removed and made to use the
42        shared stub.
43        * startup/bspclean.c: Removed.
44
452008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
46
47        * clock/ckinit.c: The Shared Memory Driver no longer requires the
48        special IOCTL in Clock_control. This was a hack which has existed
49        since before the Classic API Timer Manager was implemented. All
50        implementations of and references to Clock_control were removed.
51
522008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
53
54        * timer/timer.c: Convert to "bool".
55
562008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
57
58        * console/console.c, include/m340timer.h, timer/timer.c: Eliminate
59        empty function from every benchmark timer driver. Fix spelling.
60
612008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * console/console.c, include/m340timer.h, timer/timer.c: Rename timer
64        driver methods to follow RTEMS programming conventions.
65
662008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
67
68        * timer/timer.c: Add missing prototypes.
69
702008-06-05      Joel Sherrill <joel.sherrill@OARcorp.com>
71
72        * console/console.c, include/m340uart.h: Use new shared
73        termios_baud_to_number() routine.
74
752008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * console/m340uart.c: Eliminate copies of switches to convert termios
78        Bxxx constants to xxx as an integer. Use the shared
79        termios_baud_to_number() routine to do the same conversion.
80
812008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * Makefile.am: Rework to avoid .rel files.
84
852008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * startup/bspstart.c: Refactored and renamed initialization routines to
88        rtems_initialize_data_structures, rtems_initialize_before_drivers,
89        rtems_initialize_device_drivers, and
90        rtems_initialize_start_multitasking. This opened the sequence up so
91        that bootcard() could provide a more robust and flexible framework
92        which is easier to explain and understand. This also lays the
93        groundwork for sharing the division of available memory between the
94        RTEMS workspace and heap and the C library initialization across all
95        BSPs.
96
972008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
98
99        * startup/linkcmds: Add wildcard to gcc_except_table section so
100        programs compiled with gcc 4.3.x can link.
101
1022007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
103
104        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
105        of the Configuration Table. Use the RTEMS provided accessor macros to
106        obtain configuration fields.
107
1082007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
109
110        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
111        from CPU Table to Configuration Table. Eliminate CPU Table from all
112        ports. Delete references to CPU Table in all forms.
113
1142007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
115
116        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
117        Table fields to the Configuration Table. This included
118        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
119        do_zero_of_workspace, extra_mpci_receive_server_stack,
120        stack_allocate_hook, and stack_free_hook. As a side-effect of this
121        effort some multiprocessing code was made conditional and some style
122        clean up occurred.
123
1242007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
125
126        * startup/bspstart.c: Eliminate the interrupt_vector_table field in the
127        m68k CPU Table since it is never read.
128
1292007-05-03      Joel Sherrill <joel@OARcorp.com>
130
131        * startup/linkcmds: Handle .data.* sections
132
1332007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
134
135        * bsp_specs: Remove qrtems_debug.
136
1372007-04-02      Joel Sherrill <joel@OARcorp.com>
138
139        * Makefile.am: Add dummy printk support so all tests link.
140
1412007-03-11      Joel Sherrill <joel@OARcorp.com>
142
143        * startup/bspstart.c: Remove assignments of
144        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
145        value in boot_card.c
146
1472006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
148
149        * configure.ac: New BUG-REPORT address.
150
1512006-11-15      Joel Sherrill <joel@OARcorp.com>
152
153        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
154        file and simplified initialization.
155
1562006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * Makefile.am: Remove superfluous -DASM.
159
1602006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
161
162        * configure.ac: Require autoconf-2.60. Require automake-1.10.
163
1642006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
165
166        * include/m68349.inc, start/start.S, startup/dumpanic.c:
167        Convert to utf-8.
168
1692006-02-08      Joel Sherrill <joel@OARcorp.com>
170
171        * startup/linkcmds: Add sections required by newer gcc versions.
172
1732006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
174
175        * Makefile.am: Add preinstall.am.
176
1772005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
178
179        * include/bsp.h: New header guard.
180
1812005-02-11      Joel Sherrill <joel@OARcorp.com>
182
183        * include/bsp.h: Correct type of symbols from linkcmds to compile with
184        gcc 4.x.
185
1862005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
187
188        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
189
1902005-01-04      Joel Sherrill <joel@OARcorp.com>
191
192        * console/console.c: Remove warnings.
193
1942005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
195
196        * Makefile.am: Remove build-variant support.
197
1982004-11-25      Joel Sherrill <joel@OARcorp.com>
199
200        * startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
201
2022004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
203
204        * configure.ac: Require automake > 1.9.
205
2062004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
207
208        PR 610/bsps
209        * Makefile.am: Add include/tm27.h, Cosmetics.
210        * include/tm27.h: Final cosmetics.
211
2122004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
213
214        * include/bsp.h: Split out tmtest27 support.
215        * include/tm27.h: New.
216
2172004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
218
219        PR 613/bsps
220        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
221
2222004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
223
224        PR 614/bsps
225        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
226
2272004-04-19      Joel Sherrill <joel@OARcorp.com>
228
229        * start/start.S: DWARF on the m68k requires that all objects me a
230        multiple of a 16-bit word in length.
231
2322004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
233
234        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
235        * start/startfor340only.S: Include <rtems/asm.h> instead of <asm.h>.
236
2372004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
238
239        * console/Modif_cpu_asm.S: Include <rtems/asm.h> instead of <asm.h>.
240        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
241        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
242        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
243
2442004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
245
246        * clock/ckinit.c, console/m340uart.c, include/bsp.h,
247        include/m340uart.h, startup/bspstart.c: Convert to using c99 fixed
248        size types.
249
2502004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Reflect changes to bsp.am.
253        Preinstall dist_project_lib*.
254
2552004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Reflect changes to bsp.am.
258
2592004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
262
2632004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * Makefile.am: Pickup files from ../../m68k/shared instead of
266        ../shared. Reformat.
267
2682004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
269
270        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
271
2722004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * Makefile.am: Distribute start/startfor340only.S.
275
2762004-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * Makefile.am: Merge-in  clock/Makefile.am, console/Makefile.am,
279        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake
280        compilation rules.
281        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
282        timer/Makefile.am, wrapup/Makefile.am: Remove.
283        * configure.ac: Reflect changes above.
284
2852004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * Makefile.am: Add PREINSTALL_DIRS.
288        * wrapup/Makefile.am: Reflect changes to libcpu.
289
2902004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * Makefile.am: Remove non-existing file "times" from EXTRA_DIST.
293        * README: Fix minor typo.
294        * wrapup/Makefile.am: Reflect changes to libcpu.
295
2962004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
299        Add PRE/TMPINSTALL_FILES to CLEANFILES.
300        * startup/Makefile.am: Ditto.
301
3022004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
303
304        * start/Makefile.am: Remove.
305        * Makefile.am: Merge-in start/Makefile.am.
306        * configure.ac: Reflect changes above.
307
3082004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * wrapup/Makefile.am: Eliminate $(LIB).
311        Use noinst_DATA to trigger building libbsp.a.
312
3132003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
316        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
317
3182003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
319
320        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
321        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
322
3232003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
326
3272003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * start/Makefile.am: Misc cleanups and fixes.
330        * startup/Makefile.am: Misc cleanups and fixes.
331        * wrapup/Makefile.am: Misc cleanups and fixes.
332
3332003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * Makefile.am: Add preinstallation dirstamp support.
336        * clock/Makefile.am: Cosmetics.
337        * console/Makefile.am: Cosmetics.
338        * startup/Makefile.am: Cosmetics.
339        * timer/Makefile.am: Cosmetics.
340        * wrapup/Makefile.am: Cosmetics.
341
3422003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * clock/Makefile.am: Remove all-local: $(ARCH).
345        * console/Makefile.am: Remove all-local: $(ARCH).
346        * start/Makefile.am: Remove all-local: $(ARCH).
347        * startup/Makefile.am: Remove all-local: $(ARCH).
348        * timer/Makefile.am: Remove all-local: $(ARCH).
349        * wrapup/Makefile.am: Remove all-local: $(ARCH).
350
3512003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * Makefile.am: Merge-in include/Makefile.am.
354        Reflect changes to bsp.am.
355        * include/Makefile.am: Remove.
356        * configure.ac: Reflect changes above.
357
3582003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * bsp_specs: Remove *lib:.
361
3622003-09-04      Joel Sherrill <joel@OARcorp.com>
363
364        * clock/ckinit.c, console/Modif_cpu_asm.S, console/console.c,
365        console/m340uart.c, include/bsp.h, include/m340timer.h,
366        include/m340uart.h, start/start.S, start/startfor340only.S,
367        startup/bspclean.c, startup/bspstart.c, startup/dumpanic.c,
368        timer/timer.c: URL for license changed.
369
3702003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * Makefile.am: Reflect having moved aclocal/.
373
3742003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * Makefile.am: Reflect having moved automake/.
377        * clock/Makefile.am: Reflect having moved automake/.
378        * console/Makefile.am: Reflect having moved automake/.
379        * include/Makefile.am: Reflect having moved automake/.
380        * start/Makefile.am: Reflect having moved automake/.
381        * startup/Makefile.am: Reflect having moved automake/.
382        * timer/Makefile.am: Reflect having moved automake/.
383        * wrapup/Makefile.am: Reflect having moved automake/.
384
3852003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        PR 452/bsps
388        * startup/Makefile.am: Remove USE_INIT_FINI.
389
3902003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
393
3942003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        PR 445/bsps
397        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
398        Remove cpp, old_cpp (now unused).
399
4002003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * configure.ac: Remove AC_CONFIG_AUX_DIR.
403
4042003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
407
4082003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * configure.ac: AC_PREREQ(2.57).
411
4122003-01-20      Joel Sherrill <joel@OARcorp.com>
413
414        * startup/linkcmds*: Add FreeBSD sysctl() sections.
415
4162002-12-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
419        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
420        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
421        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
422        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
423
4242002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * start/Makefile.am: Use install-data-local to install startfile.
427
4282002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
431
4322002-11-04      Joel Sherrill <joel@OARcorp.com>
433
434        * console/console.c, console/m340uart.c: Removed warnings.
435
4362002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * .cvsignore: Reformat.
439        Add autom4te*cache.
440        Remove autom4te.cache.
441
4422002-08-21      Joel Sherrill <joel@OARcorp.com>
443
444        * wrapup/Makefile.am: PR217 required that the idle task be moved to
445        libcpu so it could be more acutely aware of the CPU model.  This
446        file was modified to pick up the idle task from there.
447
4482002-08-21      Joel Sherrill <joel@OARcorp.com>
449
450        * bsp_specs: Added support for -nostdlibs.
451
4522002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
453
454        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
455        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
456        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
457        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
458        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
459        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
460
4612002-08-05      Joel Sherrill <joel@OARcorp.com>
462
463        * Per PR260 eliminate use of make-target-options.  This impacted
464        RTEMS allowing a distinction between the CPU32 and CPU32+ in the
465        SuperCore and required that the m68k optimized memcpy be moved
466        to libcpu.
467        * wrapup/Makefile.am: Pick up memcpy.o from libcpu.
468
4692002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * start/Makefile.am: Eliminate PGM.
472        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
473
4742002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
477
4782002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
481        Remove $(OBJS) from all-local.
482
4832002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
486
4872001-05-09      Joel Sherrill <joel@OARcorp.com>
488
489        * startup/linkcmds: In support of gcc 3.1, added one of more
490        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
491        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
492        and direction of segments to memory regions may also have been
493        addressed.  This was a sweep across all BSPs.
494 
4952002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * configure.ac:
498        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
499        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
500        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
501        * Makefile.am: Remove AUTOMAKE_OPTIONS.
502        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
503        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
504        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
505        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
506        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
507        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
508
5092001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
512
5132001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
516        * configure.in: Remove.
517        * configure.ac: New file, generated from configure.in by autoupdate.
518
5192001-09-27      Joel Sherrill <joel@OARcorp.com>
520
521        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
522
5232001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
526
5272001-06-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
528
529        * include/Makefile.am: Fix typo in include_HEADERS.
530
5312001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * configure.in: Add bspopts.h.
534        * include/.cvsignore: Add bspopts.h*, stamp-h*.
535        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
536        * include/bsp.h: Include bspopts.h.
537
5382001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
539
540        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
541
5422000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
543
544        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
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,
553        and 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-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
563
564        * startup/linkcmds: Added lines so DWARF debug information
565        would be available.  Otherwise gdb complains that the offsets
566        for the debug info are incorrect and doesn't load the files.
567
5682000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
569
570        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
571        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Include
572        compile.am
573
5742000-08-10      Joel Sherrill <joel@OARcorp.com>
575
576        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.