source: rtems/c/src/lib/libbsp/m68k/mvme167/ChangeLog @ 33e7fc3e

4.104.115
Last change on this file since 33e7fc3e was 33e7fc3e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/10/09 at 16:52:54

2009-08-10 Joel Sherrill <joel.sherrill@…>

  • console/console.c: Convert calls to legacy routine rtems_clock_get( RTEMS_CLOCK_GET_xxx, ..) to rtems_clock_get_xxx().
  • Property mode set to 100644
File size: 20.4 KB
Line 
12009-08-10      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * console/console.c: Convert calls to legacy routine rtems_clock_get(
4        RTEMS_CLOCK_GET_xxx, ..) to rtems_clock_get_xxx().
5
62009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
9        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
10        have the same options.
11
122009-02-17      Till Straumann <strauman@slac.stanford.edu>
13
14        PR 1371/bsps
15        * network/network.c: mvme167 network driver buggy.
16
172009-02-17      Till Straumann <strauman@slac.stanford.edu>
18
19        PR 1370/bsps
20        * console/console.c: mvme167 console driver BSP_output_char fails to
21        convert \n -> \n\r
22
232008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * bsp_specs: Move -e start from *link to *startfile to avoid warning
26        for undefined entry symbol when linking relocatables with binutils
27        2.19.
28
292008-10-15      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        PR 1303/bsps
32        * fatal/bspfatal.c: strcat() is safe to use even in worst case, so do
33        not have BSP specific mystrcat().
34
352008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
36
37        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
38        of building libbspstart.a, using automake-rules.
39
402008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
41
42        * Makefile.am: Eliminate *_SOURCES.
43
442008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
47        components.
48
492008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
50
51        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
52
532008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * configure.ac: Make letting boot_card() handle work area allocation
56        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
57        BSP_BOOTCARD_OPTIONS.
58
592008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
60
61        * include/bsp.h: Remove unnecessary boilerplate comments.
62
632008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * Makefile.am, startup/linkcmds: Use top level shared
66        bsp_get_work_area() implementation.
67
682008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
69
70        * Makefile.am, configure.ac, clock/ckinit.c, startup/bspstart.c: Add
71        use of bsp_get_work_area() in its own file and rely on BSP Framework
72        to perform more initialization. Remove unnecessary includes of
73        rtems/libio.h and rtems/libcsupport.h.
74
752008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
76
77        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
78        phase, all prototypes were removed from bsp.h and empty
79        implementations were removed and made to use the shared stub.
80
812008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * clock/ckinit.c: The Shared Memory Driver no longer requires the
84        special IOCTL in Clock_control. This was a hack which has existed
85        since before the Classic API Timer Manager was implemented. All
86        implementations of and references to Clock_control were removed.
87
882008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
89
90        * console/console.c, fatal/bspfatal.c, include/fatal.h,
91        timer/timer.c: Convert to "bool".
92
932008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
94
95        * timer/timer.c, timer/timerisr.S: Eliminate empty function from every
96        benchmark timer driver. Fix spelling.
97
982008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
99
100        * timer/timer.c, timer/timerisr.S: Rename timer driver methods to
101        follow RTEMS programming conventions.
102
1032008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * timer/timer.c: Add missing prototypes.
106
1072008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * console/console.c: Eliminate copies of switches to convert termios
110        Bxxx constants to xxx as an integer. Use the shared
111        termios_baud_to_number() routine to do the same conversion.
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
1292008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
130
131        * startup/linkcmds: Add wildcard to gcc_except_table section so
132        programs compiled with gcc 4.3.x can link.
133
1342007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
137        of the Configuration Table. Use the RTEMS provided accessor macros to
138        obtain configuration fields.
139
1402007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
143        from CPU Table to Configuration Table. Eliminate CPU Table from all
144        ports. Delete references to CPU Table in all forms.
145
1462007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
147
148        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
149        Table fields to the Configuration Table. This included
150        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
151        do_zero_of_workspace, extra_mpci_receive_server_stack,
152        stack_allocate_hook, and stack_free_hook. As a side-effect of this
153        effort some multiprocessing code was made conditional and some style
154        clean up occurred.
155
1562007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
157
158        * startup/bspstart.c: Eliminate the interrupt_vector_table field in the
159        m68k CPU Table since it is never read.
160
1612007-05-03      Joel Sherrill <joel@OARcorp.com>
162
163        * startup/linkcmds: Handle .data.* sections
164
1652007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
166
167        * bsp_specs: Remove qrtems_debug.
168
1692006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
170
171        * configure.ac: New BUG-REPORT address.
172
1732006-11-15      Joel Sherrill <joel@OARcorp.com>
174
175        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
176        file and simplified initialization.
177
1782006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
179
180        * Makefile.am: Remove superfluous -DASM.
181
1822006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
183
184        * configure.ac: Require autoconf-2.60. Require automake-1.10.
185
1862006-02-08      Joel Sherrill <joel@OARcorp.com>
187
188        * startup/linkcmds: Add sections required by newer gcc versions.
189
1902006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
191
192        * Makefile.am: Add preinstall.am.
193
1942006-01-08      Joel Sherrill <joel@OARcorp.com>
195
196        * network/network.c: Remove warnings.
197
1982005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
199
200        * include/bsp.h: New header guard.
201
2022005-04-26      Joel Sherrill <joel@OARcorp.com>
203
204        * network/network.c: Change int to rtems_id to eliminate warning.
205
2062005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
209
2102005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
211
212        * Makefile.am: Remove build-variant support.
213
2142004-11-25      Joel Sherrill <joel@OARcorp.com>
215
216        * startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
217
2182004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
219
220        * configure.ac: Require automake > 1.9.
221
2222004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
223
224        PR 610/bsps
225        * Makefile.am: Add include/tm27.h, Cosmetics.
226        * include/tm27.h: Final cosmetics.
227
2282004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
229
230        * include/bsp.h: Split out tmtest27 support.
231        * include/tm27.h: New.
232
2332004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
234
235        PR 613/bsps
236        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
237
2382004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
239
240        PR 614/bsps
241        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
242
2432004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
244
245        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
246
2472004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
248
249        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
250        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
251        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
252
2532004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
254
255        * clock/ckinit.c, console/console-recording.h, console/console.c,
256        fatal/bspfatal.c, include/fatal.h, network/network.c,
257        network/uti596.h, startup/bspstart.c, timer/timer.c: Convert to
258        using c99 fixed size types.
259
2602004-03-05      Joel Sherrill <joel@OARcorp.com>
261
262        * network/network.c: Remove warnings for unused routines left from
263        original code.
264
2652004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Reflect changes to bsp.am.
268        Preinstall dist_project_lib*.
269
2702004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * Makefile.am: Reflect changes to bsp.am.
273
2742004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
275
276        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
277
2782004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * Makefile.am: Pickup files from ../../m68k/shared instead of
281        ../shared. Reformat.
282
2832004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
286
2872004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am
290        fatal/Makefile.am, network/Makefile.am, startup/Makefile.am,
291        timer/Makefile.am, wrapup/Makefile.am.
292        Use automake compilation rules.
293        * clock/Makefile.am, console/Makefile.am, fatal/Makefile.am,
294        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
295        wrapup/Makefile.am: Remove.
296        * configure.ac: Reflect changes above.
297
2982004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * console/console-recording.c: Remove (rename to console-recording.h).
301        * console/console-recording.h: New.
302
3032004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * Makefile.am: Add PREINSTALL_DIRS.
306        * wrapup/Makefile.am: Reflect changes to libcpu.
307
3082004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * wrapup/Makefile.am: Reflect changes to libcpu.
311
3122004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
315        Add PRE/TMPINSTALL_FILES to CLEANFILES.
316        * startup/Makefile.am: Ditto.
317
3182004-01-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
319
320        * start/Makefile.am: Remove.
321        * Makefile.am: Merge-in start/Makefile.am.
322        * configure.ac: Reflect changes above.
323
3242004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * wrapup/Makefile.am: Eliminate $(LIB).
327        Use noinst_DATA to trigger building libbsp.a.
328
3292003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
332        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
333
3342003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
337        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
338
3392003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
342
3432003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * Makefile.am: Misc cleanups and fixes.
346        * start/Makefile.am: Misc cleanups and fixes.
347        * startup/Makefile.am: Misc cleanups and fixes.
348        * wrapup/Makefile.am: Misc cleanups and fixes.
349
3502003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Add preinstallation dirstamp support.
353        * clock/Makefile.am: Cosmetics.
354        * console/Makefile.am: Cosmetics.
355        * fatal/Makefile.am: Cosmetics.
356        * network/Makefile.am: Cosmetics.
357        * startup/Makefile.am: Cosmetics.
358        * timer/Makefile.am: Cosmetics.
359        * wrapup/Makefile.am: Cosmetics.
360
3612003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * clock/Makefile.am: Remove all-local: $(ARCH).
364        * console/Makefile.am: Remove all-local: $(ARCH).
365        * fatal/Makefile.am: Remove all-local: $(ARCH).
366        * network/Makefile.am: Remove all-local: $(ARCH).
367        * start/Makefile.am: Remove all-local: $(ARCH).
368        * startup/Makefile.am: Remove all-local: $(ARCH).
369        * timer/Makefile.am: Remove all-local: $(ARCH).
370        * wrapup/Makefile.am: Remove all-local: $(ARCH).
371
3722003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * Makefile.am: Merge-in include/Makefile.am.
375        Reflect changes to bsp.am.
376        * include/Makefile.am: Remove.
377        * configure.ac: Reflect changes above.
378
3792003-09-04      Joel Sherrill <joel@OARcorp.com>
380
381        * clock/ckinit.c, console/console-recording.c, console/console.c,
382        fatal/bspfatal.c, include/bsp.h, include/coverhd.h, include/fatal.h,
383        include/page_table.h, startup/bspclean.c, startup/bspstart.c,
384        startup/linkcmds, timer/timer.c, timer/timerisr.S: URL for license
385        changed.
386
3872003-08-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: Add BSPOPTS PRINTK_MINOR and CONSOLE_MINOR.
390        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg
391        Remove BSP_CPPFLAGS.
392
3932003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * Makefile.am: Reflect having moved aclocal/.
396
3972003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
398
399        * Makefile.am: Reflect having moved automake/.
400        * clock/Makefile.am: Reflect having moved automake/.
401        * console/Makefile.am: Reflect having moved automake/.
402        * fatal/Makefile.am: Reflect having moved automake/.
403        * include/Makefile.am: Reflect having moved automake/.
404        * network/Makefile.am: Reflect having moved automake/.
405        * start/Makefile.am: Reflect having moved automake/.
406        * startup/Makefile.am: Reflect having moved automake/.
407        * timer/Makefile.am: Reflect having moved automake/.
408        * wrapup/Makefile.am: Reflect having moved automake/.
409
4102003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        PR 452/bsps
413        * startup/Makefile.am: Remove USE_INIT_FINI.
414
4152003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
418
4192003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
420
421        PR 445/bsps
422        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
423        Remove cpp, old_cpp (now unused).
424
4252003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * configure.ac: Remove AC_CONFIG_AUX_DIR.
428
4292003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
432
4332003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * configure.ac: AC_PREREQ(2.57).
436
4372003-01-20      Joel Sherrill <joel@OARcorp.com>
438
439        * startup/linkcmds*: Add FreeBSD sysctl() sections.
440
4412002-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
444        * console/Makefile.am: Eliminate C_O_FILES.
445        * fatal/Makefile.am: Don't include @RTEMS_BSP@.cfg.
446        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
447        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
448        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
449        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
450
4512002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * start/Makefile.am: Use install-data-local to install startfile.
454
4552002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
458
4592002-11-04      Joel Sherrill <joel@OARcorp.com>
460
461        * console/console.c: Removed warnings.
462
4632002-11-01      Joel Sherrill <joel@OARcorp.com>
464
465        * network/network.c, startup/bspclean.c: Removed warnings.
466
4672002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * .cvsignore: Reformat.
470        Add autom4te*cache.
471        Remove autom4te.cache.
472
4732002-08-21      Joel Sherrill <joel@OARcorp.com>
474
475        * bsp_specs: Added support for -nostdlibs.
476
4772002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
480        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
481        * fatal/Makefile.am: Use .$(OBJEXT) instead of .o.
482        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
483        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
484        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
485        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
486        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
487
4882002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * start/Makefile.am: Eliminate PGM.
491        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
492
4932002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
496
4972002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
500        Remove $(OBJS) from all-local.
501
5022002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
505
5062001-05-28      Joel Sherrill <joel@OARcorp.com>
507
508        * Per PR31, moved mvme16x_hw.h to shared/mvme.
509        * include/Makefile.am: Modified to reflect movement.
510
5112001-05-09      Joel Sherrill <joel@OARcorp.com>
512
513        * startup/linkcmds: In support of gcc 3.1, added one of more
514        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
515        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
516        and direction of segments to memory regions may also have been
517        addressed.  This was a sweep across all BSPs.
518 
5192002-05-01      Eric Norum <eric.norum@usask.ca>
520
521        * console/console.c, fatal/bspfatal.c, startup/bspclean.c,
522        startup/page_table.c: Per PR200 fix multi-line inline assembly
523        to satisfy gcc 3.1 and newer.
524
5252002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * configure.ac:
528        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
529        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
530        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
531        * Makefile.am: Remove AUTOMAKE_OPTIONS.
532        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
533        * fatal/Makefile.am: Remove AUTOMAKE_OPTIONS.
534        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
535        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
536        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
537        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
538        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
539        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
540
5412002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
544
5452001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * configure.ac: Add RTEMS_BPSOPTS_*(CD2401_INT_LEVEL).
548        Add RTEMS_BPSOPTS_*(CD2401_IO_MODE).
549        Add RTEMS_BPSOPTS_*(CD2401_USE_TERMIOS).
550        Add AC_DEFINE_UNQUOTED([mvme167]).
551
5522001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
555
5562001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
559        * configure.in: Remove.
560        * configure.ac: New file, generated from configure.in by autoupdate.
561
5622001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
563
564        * include/Makefile.am: Use 'CLEANFILES ='.
565        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
566
5672001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * configure.in: Add bspopts.h.
570        * include/.cvsignore: Add bspopts.h*, stamp-h*.
571        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
572        * include/bsp.h: Include bspopts.h.
573
5742001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
575
576        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
577
5782000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
579
580        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
581
5822000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
585
5862000-11-01      Joel Sherrill <joel@OARcorp.com>
587
588        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
589        and libcsupport.h moved from libc to lib/include/rtems and
590        now must be referenced as <rtems/XXX.h>.   Header file order
591        was cleaned up while doing this.
592
5932000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
594
595        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
596        Switch to GNU canonicalization.
597
5982000-09-12      Joel Sherrill <joel@OARcorp.com>
599
600        * network/network.c (uti596_attach): Adjust cpp directives
601        and conditional braces so all cases compile.
602
6032000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
604
605        * clock/Makefile.am, console/Makefile.am, fatal/Makefile.am,
606        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
607        wrapup/Makefile.am, network/Makefile.am: Include compile.am
608
6092000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
610
611        * console.c(_BSP_output_char): Output CR after LF for printk.
612
6132000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
614
615        * README: Updated
616        * console/console.c: Fix polled input.
617        Add support for shared printk.
618        Add support for more flexible polled I/O with and without termios.
619        I/O mode and console is selectable either from NVRAM or from
620        mvme167.cfg.  Clean up comments.
621
6222000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
623
624        * startup/page_table.c (page_table_init): Reorganize NVRAM parameters.
625        * include/bsp.h: Reorganize NVRAM parameters.
626        Add support for shared printk.
627        * times: These are the times for the MVME167, not the MBX860-002.
628
6292000-08-11  John Cotton  <john.cotton@nrc.ca>
630
631        * network/network.c: Fix NVRAM configuration parameter
632        handling from previous revision.
633        Check J1-4,  restructure NVRAM parameter handling.
634
6352000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
636
637        * network/network.c: Cleanup of network driver to reduce warnings.
638        Addition of second parameter to uti596_attach.
639
6402000-08-10      Joel Sherrill <joel@OARcorp.com>
641
642        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.