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

4.104.115
Last change on this file since e7791906 was e7791906, checked in by Joel Sherrill <joel.sherrill@…>, on 09/16/08 at 19:03:42

2008-09-16 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, clock/ckinit.c, startup/bspstart.c: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. Remove unnecessary includes of rtems/libio.h and rtems/libcsupport.h.
  • Property mode set to 100644
File size: 18.5 KB
Line 
12008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, clock/ckinit.c, startup/bspstart.c: Add
4        use of bsp_get_work_area() in its own file and rely on BSP Framework
5        to perform more initialization. Remove unnecessary includes of
6        rtems/libio.h and rtems/libcsupport.h.
7
82008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
9
10        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
11        phase, all prototypes were removed from bsp.h and empty
12        implementations were removed and made to use the shared stub.
13
142008-09-05      Joel Sherrill <joel.sherrill@OARcorp.com>
15
16        * clock/ckinit.c: The Shared Memory Driver no longer requires the
17        special IOCTL in Clock_control. This was a hack which has existed
18        since before the Classic API Timer Manager was implemented. All
19        implementations of and references to Clock_control were removed.
20
212008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * console/console.c, fatal/bspfatal.c, include/fatal.h,
24        timer/timer.c: Convert to "bool".
25
262008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
27
28        * timer/timer.c, timer/timerisr.S: Eliminate empty function from every
29        benchmark timer driver. Fix spelling.
30
312008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * timer/timer.c, timer/timerisr.S: Rename timer driver methods to
34        follow RTEMS programming conventions.
35
362008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
37
38        * timer/timer.c: Add missing prototypes.
39
402008-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
41
42        * console/console.c: Eliminate copies of switches to convert termios
43        Bxxx constants to xxx as an integer. Use the shared
44        termios_baud_to_number() routine to do the same conversion.
45
462008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
47
48        * Makefile.am: Rework to avoid .rel files.
49
502008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
51
52        * startup/bspstart.c: Refactored and renamed initialization routines to
53        rtems_initialize_data_structures, rtems_initialize_before_drivers,
54        rtems_initialize_device_drivers, and
55        rtems_initialize_start_multitasking. This opened the sequence up so
56        that bootcard() could provide a more robust and flexible framework
57        which is easier to explain and understand. This also lays the
58        groundwork for sharing the division of available memory between the
59        RTEMS workspace and heap and the C library initialization across all
60        BSPs.
61
622008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
63
64        * startup/linkcmds: Add wildcard to gcc_except_table section so
65        programs compiled with gcc 4.3.x can link.
66
672007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * clock/ckinit.c, include/bsp.h, startup/bspstart.c: Eliminate copies
70        of the Configuration Table. Use the RTEMS provided accessor macros to
71        obtain configuration fields.
72
732007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
74
75        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
76        from CPU Table to Configuration Table. Eliminate CPU Table from all
77        ports. Delete references to CPU Table in all forms.
78
792007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
82        Table fields to the Configuration Table. This included
83        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
84        do_zero_of_workspace, extra_mpci_receive_server_stack,
85        stack_allocate_hook, and stack_free_hook. As a side-effect of this
86        effort some multiprocessing code was made conditional and some style
87        clean up occurred.
88
892007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
90
91        * startup/bspstart.c: Eliminate the interrupt_vector_table field in the
92        m68k CPU Table since it is never read.
93
942007-05-03      Joel Sherrill <joel@OARcorp.com>
95
96        * startup/linkcmds: Handle .data.* sections
97
982007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * bsp_specs: Remove qrtems_debug.
101
1022006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
103
104        * configure.ac: New BUG-REPORT address.
105
1062006-11-15      Joel Sherrill <joel@OARcorp.com>
107
108        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
109        file and simplified initialization.
110
1112006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
112
113        * Makefile.am: Remove superfluous -DASM.
114
1152006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * configure.ac: Require autoconf-2.60. Require automake-1.10.
118
1192006-02-08      Joel Sherrill <joel@OARcorp.com>
120
121        * startup/linkcmds: Add sections required by newer gcc versions.
122
1232006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
124
125        * Makefile.am: Add preinstall.am.
126
1272006-01-08      Joel Sherrill <joel@OARcorp.com>
128
129        * network/network.c: Remove warnings.
130
1312005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
132
133        * include/bsp.h: New header guard.
134
1352005-04-26      Joel Sherrill <joel@OARcorp.com>
136
137        * network/network.c: Change int to rtems_id to eliminate warning.
138
1392005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
140
141        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
142
1432005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
144
145        * Makefile.am: Remove build-variant support.
146
1472004-11-25      Joel Sherrill <joel@OARcorp.com>
148
149        * startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
150
1512004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
152
153        * configure.ac: Require automake > 1.9.
154
1552004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
156
157        PR 610/bsps
158        * Makefile.am: Add include/tm27.h, Cosmetics.
159        * include/tm27.h: Final cosmetics.
160
1612004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
162
163        * include/bsp.h: Split out tmtest27 support.
164        * include/tm27.h: New.
165
1662004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
167
168        PR 613/bsps
169        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
170
1712004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
172
173        PR 614/bsps
174        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
175
1762004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
177
178        * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
179
1802004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
181
182        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
183        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
184        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
185
1862004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
187
188        * clock/ckinit.c, console/console-recording.h, console/console.c,
189        fatal/bspfatal.c, include/fatal.h, network/network.c,
190        network/uti596.h, startup/bspstart.c, timer/timer.c: Convert to
191        using c99 fixed size types.
192
1932004-03-05      Joel Sherrill <joel@OARcorp.com>
194
195        * network/network.c: Remove warnings for unused routines left from
196        original code.
197
1982004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
199
200        * Makefile.am: Reflect changes to bsp.am.
201        Preinstall dist_project_lib*.
202
2032004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
204
205        * Makefile.am: Reflect changes to bsp.am.
206
2072004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
208
209        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
210
2112004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
212
213        * Makefile.am: Pickup files from ../../m68k/shared instead of
214        ../shared. Reformat.
215
2162004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
217
218        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
219
2202004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
221
222        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am
223        fatal/Makefile.am, network/Makefile.am, startup/Makefile.am,
224        timer/Makefile.am, wrapup/Makefile.am.
225        Use automake compilation rules.
226        * clock/Makefile.am, console/Makefile.am, fatal/Makefile.am,
227        network/Makefile.am, startup/Makefile.am, timer/Makefile.am,
228        wrapup/Makefile.am: Remove.
229        * configure.ac: Reflect changes above.
230
2312004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
232
233        * console/console-recording.c: Remove (rename to console-recording.h).
234        * console/console-recording.h: New.
235
2362004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
237
238        * Makefile.am: Add PREINSTALL_DIRS.
239        * wrapup/Makefile.am: Reflect changes to libcpu.
240
2412004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * wrapup/Makefile.am: Reflect changes to libcpu.
244
2452004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
248        Add PRE/TMPINSTALL_FILES to CLEANFILES.
249        * startup/Makefile.am: Ditto.
250
2512004-01-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * start/Makefile.am: Remove.
254        * Makefile.am: Merge-in start/Makefile.am.
255        * configure.ac: Reflect changes above.
256
2572004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
258
259        * wrapup/Makefile.am: Eliminate $(LIB).
260        Use noinst_DATA to trigger building libbsp.a.
261
2622003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
265        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
266
2672003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
270        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
271
2722003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
275
2762003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * Makefile.am: Misc cleanups and fixes.
279        * start/Makefile.am: Misc cleanups and fixes.
280        * startup/Makefile.am: Misc cleanups and fixes.
281        * wrapup/Makefile.am: Misc cleanups and fixes.
282
2832003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * Makefile.am: Add preinstallation dirstamp support.
286        * clock/Makefile.am: Cosmetics.
287        * console/Makefile.am: Cosmetics.
288        * fatal/Makefile.am: Cosmetics.
289        * network/Makefile.am: Cosmetics.
290        * startup/Makefile.am: Cosmetics.
291        * timer/Makefile.am: Cosmetics.
292        * wrapup/Makefile.am: Cosmetics.
293
2942003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * clock/Makefile.am: Remove all-local: $(ARCH).
297        * console/Makefile.am: Remove all-local: $(ARCH).
298        * fatal/Makefile.am: Remove all-local: $(ARCH).
299        * network/Makefile.am: Remove all-local: $(ARCH).
300        * start/Makefile.am: Remove all-local: $(ARCH).
301        * startup/Makefile.am: Remove all-local: $(ARCH).
302        * timer/Makefile.am: Remove all-local: $(ARCH).
303        * wrapup/Makefile.am: Remove all-local: $(ARCH).
304
3052003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * Makefile.am: Merge-in include/Makefile.am.
308        Reflect changes to bsp.am.
309        * include/Makefile.am: Remove.
310        * configure.ac: Reflect changes above.
311
3122003-09-04      Joel Sherrill <joel@OARcorp.com>
313
314        * clock/ckinit.c, console/console-recording.c, console/console.c,
315        fatal/bspfatal.c, include/bsp.h, include/coverhd.h, include/fatal.h,
316        include/page_table.h, startup/bspclean.c, startup/bspstart.c,
317        startup/linkcmds, timer/timer.c, timer/timerisr.S: URL for license
318        changed.
319
3202003-08-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * configure.ac: Add BSPOPTS PRINTK_MINOR and CONSOLE_MINOR.
323        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg
324        Remove BSP_CPPFLAGS.
325
3262003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * Makefile.am: Reflect having moved aclocal/.
329
3302003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * Makefile.am: Reflect having moved automake/.
333        * clock/Makefile.am: Reflect having moved automake/.
334        * console/Makefile.am: Reflect having moved automake/.
335        * fatal/Makefile.am: Reflect having moved automake/.
336        * include/Makefile.am: Reflect having moved automake/.
337        * network/Makefile.am: Reflect having moved automake/.
338        * start/Makefile.am: Reflect having moved automake/.
339        * startup/Makefile.am: Reflect having moved automake/.
340        * timer/Makefile.am: Reflect having moved automake/.
341        * wrapup/Makefile.am: Reflect having moved automake/.
342
3432003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        PR 452/bsps
346        * startup/Makefile.am: Remove USE_INIT_FINI.
347
3482003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
351
3522003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        PR 445/bsps
355        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
356        Remove cpp, old_cpp (now unused).
357
3582003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * configure.ac: Remove AC_CONFIG_AUX_DIR.
361
3622003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
365
3662003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * configure.ac: AC_PREREQ(2.57).
369
3702003-01-20      Joel Sherrill <joel@OARcorp.com>
371
372        * startup/linkcmds*: Add FreeBSD sysctl() sections.
373
3742002-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
377        * console/Makefile.am: Eliminate C_O_FILES.
378        * fatal/Makefile.am: Don't include @RTEMS_BSP@.cfg.
379        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
380        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
381        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
382        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
383
3842002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * start/Makefile.am: Use install-data-local to install startfile.
387
3882002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
391
3922002-11-04      Joel Sherrill <joel@OARcorp.com>
393
394        * console/console.c: Removed warnings.
395
3962002-11-01      Joel Sherrill <joel@OARcorp.com>
397
398        * network/network.c, startup/bspclean.c: Removed warnings.
399
4002002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * .cvsignore: Reformat.
403        Add autom4te*cache.
404        Remove autom4te.cache.
405
4062002-08-21      Joel Sherrill <joel@OARcorp.com>
407
408        * bsp_specs: Added support for -nostdlibs.
409
4102002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
413        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
414        * fatal/Makefile.am: Use .$(OBJEXT) instead of .o.
415        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
416        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
417        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
418        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
419        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
420
4212002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * start/Makefile.am: Eliminate PGM.
424        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
425
4262002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
429
4302002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
433        Remove $(OBJS) from all-local.
434
4352002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
436
437        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
438
4392001-05-28      Joel Sherrill <joel@OARcorp.com>
440
441        * Per PR31, moved mvme16x_hw.h to shared/mvme.
442        * include/Makefile.am: Modified to reflect movement.
443
4442001-05-09      Joel Sherrill <joel@OARcorp.com>
445
446        * startup/linkcmds: In support of gcc 3.1, added one of more
447        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
448        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
449        and direction of segments to memory regions may also have been
450        addressed.  This was a sweep across all BSPs.
451 
4522002-05-01      Eric Norum <eric.norum@usask.ca>
453
454        * console/console.c, fatal/bspfatal.c, startup/bspclean.c,
455        startup/page_table.c: Per PR200 fix multi-line inline assembly
456        to satisfy gcc 3.1 and newer.
457
4582002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * configure.ac:
461        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
462        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
463        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
464        * Makefile.am: Remove AUTOMAKE_OPTIONS.
465        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
466        * fatal/Makefile.am: Remove AUTOMAKE_OPTIONS.
467        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
468        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
469        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
470        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
471        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
472        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
473
4742002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * include/bsp.h: Include rtems/bspIo.h instead of bspIo.h.
477
4782001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac: Add RTEMS_BPSOPTS_*(CD2401_INT_LEVEL).
481        Add RTEMS_BPSOPTS_*(CD2401_IO_MODE).
482        Add RTEMS_BPSOPTS_*(CD2401_USE_TERMIOS).
483        Add AC_DEFINE_UNQUOTED([mvme167]).
484
4852001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
488
4892001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
492        * configure.in: Remove.
493        * configure.ac: New file, generated from configure.in by autoupdate.
494
4952001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * include/Makefile.am: Use 'CLEANFILES ='.
498        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
499
5002001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
501
502        * configure.in: Add bspopts.h.
503        * include/.cvsignore: Add bspopts.h*, stamp-h*.
504        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
505        * include/bsp.h: Include bspopts.h.
506
5072001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
508
509        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
510
5112000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
514
5152000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
518
5192000-11-01      Joel Sherrill <joel@OARcorp.com>
520
521        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
522        and libcsupport.h moved from libc to lib/include/rtems and
523        now must be referenced as <rtems/XXX.h>.   Header file order
524        was cleaned up while doing this.
525
5262000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
527
528        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
529        Switch to GNU canonicalization.
530
5312000-09-12      Joel Sherrill <joel@OARcorp.com>
532
533        * network/network.c (uti596_attach): Adjust cpp directives
534        and conditional braces so all cases compile.
535
5362000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * clock/Makefile.am, console/Makefile.am, fatal/Makefile.am,
539        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
540        wrapup/Makefile.am, network/Makefile.am: Include compile.am
541
5422000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
543
544        * console.c(_BSP_output_char): Output CR after LF for printk.
545
5462000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
547
548        * README: Updated
549        * console/console.c: Fix polled input.
550        Add support for shared printk.
551        Add support for more flexible polled I/O with and without termios.
552        I/O mode and console is selectable either from NVRAM or from
553        mvme167.cfg.  Clean up comments.
554
5552000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
556
557        * startup/page_table.c (page_table_init): Reorganize NVRAM parameters.
558        * include/bsp.h: Reorganize NVRAM parameters.
559        Add support for shared printk.
560        * times: These are the times for the MVME167, not the MBX860-002.
561
5622000-08-11  John Cotton  <john.cotton@nrc.ca>
563
564        * network/network.c: Fix NVRAM configuration parameter
565        handling from previous revision.
566        Check J1-4,  restructure NVRAM parameter handling.
567
5682000-08-11  Charles-Antoine Gauthier  <charles.gauthier@nrc.ca>
569
570        * network/network.c: Cleanup of network driver to reduce warnings.
571        Addition of second parameter to uti596_attach.
572
5732000-08-10      Joel Sherrill <joel@OARcorp.com>
574
575        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.