source: rtems/c/src/lib/libbsp/m68k/mcf5206elite/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: 17.3 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-29      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Remove noinst_PROGRAMS (Unused).
13
142008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
17
182008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * configure.ac: Make letting boot_card() handle work area allocation
21        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
22        BSP_BOOTCARD_OPTIONS.
23
242008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * include/bsp.h: Remove unnecessary boilerplate comments.
27
282008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
29
30        * Makefile.am, startup/linkcmds, startup/linkcmds.flash: Use top level
31        shared bsp_get_work_area() implementation.
32
332008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
34
35        * Makefile.am, configure.ac, start/start.S, startup/linkcmds: Add use
36        of bsp_get_work_area() in its own file and rely on BSP Framework to
37        perform more initialization. Remove unnecessary includes of
38        rtems/libio.h and rtems/libcsupport.h.
39        * startup/bspstart.c: Removed.
40
412008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
44        implementations. In this phase, all prototypes were removed from
45        bsp.h and empty implementations were removed and made to use the
46        shared stub.
47        * startup/bspclean.c: Removed.
48
492008-09-08      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
50
51        * i2c/i2c.c, i2c/i2cdrv.c, include/i2c.h:
52        converted done_arg to a void pointer
53       
542008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
55
56        * tod/todcfg.c:  Convert to "bool".
57
582008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
59
60        * i2c/i2c.c, i2c/i2cdrv.c: Convert to "bool".
61
622008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
63
64        * startup/init5206e.c: Add missing prototypes.
65
662008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
67
68        * Makefile.am: Rework to avoid .rel files.
69
702008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
71
72        * startup/bspstart.c: Refactored and renamed initialization routines to
73        rtems_initialize_data_structures, rtems_initialize_before_drivers,
74        rtems_initialize_device_drivers, and
75        rtems_initialize_start_multitasking. This opened the sequence up so
76        that bootcard() could provide a more robust and flexible framework
77        which is easier to explain and understand. This also lays the
78        groundwork for sharing the division of available memory between the
79        RTEMS workspace and heap and the C library initialization across all
80        BSPs.
81
822008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * startup/linkcmds, startup/linkcmds.flash: Add wildcard to
85        gcc_except_table section so programs compiled with gcc 4.3.x can
86        link.
87
882007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
89
90        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
91        Configuration Table. Use the RTEMS provided accessor macros to obtain
92        configuration fields.
93
942007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
97        from CPU Table to Configuration Table. Eliminate CPU Table from all
98        ports. Delete references to CPU Table in all forms.
99
1002007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
101
102        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
103        Table fields to the Configuration Table. This included
104        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
105        do_zero_of_workspace, extra_mpci_receive_server_stack,
106        stack_allocate_hook, and stack_free_hook. As a side-effect of this
107        effort some multiprocessing code was made conditional and some style
108        clean up occurred.
109
1102007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
111
112        * startup/bspstart.c: Eliminate the interrupt_vector_table field in the
113        m68k CPU Table since it is never read.
114
1152007-05-03      Joel Sherrill <joel@OARcorp.com>
116
117        * startup/linkcmds: Handle .data.* sections
118
1192007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
120
121        * bsp_specs: Remove qrtems_debug.
122
1232007-04-02      Joel Sherrill <joel@OARcorp.com>
124
125        * Makefile.am: Add dummy printk support so all tests link.
126
1272007-03-11      Joel Sherrill <joel@OARcorp.com>
128
129        * startup/bspstart.c: Remove assignments of
130        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
131        value in boot_card.c
132
1332006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
134
135        * configure.ac: New BUG-REPORT address.
136
1372006-11-15      Joel Sherrill <joel@OARcorp.com>
138
139        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
140        file and simplified initialization.
141
1422006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
143
144        * Makefile.am: Remove superfluous -DASM.
145
1462006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * configure.ac: Require autoconf-2.60. Require automake-1.10.
149
1502006-02-08      Joel Sherrill <joel@OARcorp.com>
151
152        * startup/linkcmds, startup/linkcmds.flash: Add sections required by
153        newer gcc versions.
154
1552006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
156
157        * Makefile.am: Add preinstall.am.
158
1592005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
160
161        * include/bsp.h: New header guard.
162
1632005-02-11      Joel Sherrill <joel@OARcorp.com>
164
165        * include/bsp.h: Correct type of symbols from linkcmds to compile with
166        gcc 4.x.
167
1682005-01-22      Ralf Corsepius <ralf.corsepius@rtems.org>
169
170        * tod/todcfg.c: size_t RTC_Count.
171
1722005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
173
174        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
175
1762005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
177
178        * Makefile.am: Remove build-variant support.
179
1802004-11-25      Joel Sherrill <joel@OARcorp.com>
181
182        * startup/linkcmds, startup/linkcmds.flash: Add new bss sections .bss.*
183        and .gnu.linkonce.b*.
184
1852004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
186
187        * configure.ac: Require automake > 1.9.
188
1892004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
190
191        PR 610/bsps
192        * Makefile.am: Add include/tm27.h, Cosmetics.
193        * include/tm27.h: Final cosmetics.
194
1952004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
196
197        * include/bsp.h: Split out tmtest27 support.
198        * include/tm27.h: New.
199
2002004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
201
202        PR 613/bsps
203        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
204
2052004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        PR 614/bsps
208        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
209
2102004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
211
212        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
213
2142004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
215
216        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
217        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
218        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
219
2202004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
221
222        * console/console.c, i2c/i2c.c, i2c/i2cdrv.c, include/bsp.h,
223        include/i2c.h, nvram/nvram.c, startup/bspstart.c,
224        startup/init5206e.c, tod/ds1307.c: Convert to using c99 fixed size
225        types.
226
2272004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Reflect changes to bsp.am.
230        Preinstall dist_project_lib*.
231
2322004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
233
234        * Makefile.am: Reflect changes to bsp.am.
235
2362004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
237
238        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
239
2402004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
241
242        * Makefile.am: Pickup files from ../../m68k/shared instead of
243        ../shared. Reformat.
244
2452004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
248
2492004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
250
251        * Makefile.am: Reflect having changed libcpu/m68k/mcf5206/console.rel
252        to libcpu/m68k/mcf5206/mcfuart.rel
253
2542004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
255
256        * Makefile.am: Merge-in console/Makefile.am, i2c/Makefile.am,
257        nvram/Makefile.am, startup/Makefile.am, tod/Makefile.am,
258        wrapup/Makefile.am.
259        Use automake compilation rules.
260        * console/Makefile.am, i2c/Makefile.am, nvram/Makefile.am,
261        startup/Makefile.am, tod/Makefile.am, wrapup/Makefile.am:
262        Remove.
263        * configure.ac: Reflect changes above.
264
2652004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Add PREINSTALL_DIRS.
268        * wrapup/Makefile.am: Reflect changes to libcpu.
269
2702004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
271
272        * wrapup/Makefile.am: Reflect changes to libcpu.
273
2742004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
275
276        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
277        Add PRE/TMPINSTALL_FILES to CLEANFILES.
278        * startup/Makefile.am: Ditto.
279
2802004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * start/Makefile.am: Remove.
283        * Makefile.am: Merge-in start/Makefile.am.
284        * configure.ac: Reflect changes above.
285
2862004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * wrapup/Makefile.am: Eliminate $(LIB).
289        Use noinst_DATA to trigger building libbsp.a.
290
2912003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
292
293        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
294        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
295
2962003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
299        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
300
3012003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
304
3052003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * console/Makefile.am: Misc cleanups and fixes.
308        * i2c/Makefile.am: Misc cleanups and fixes.
309        * nvram/Makefile.am: Misc cleanups and fixes.
310        * start/Makefile.am: Misc cleanups and fixes.
311        * startup/Makefile.am: Misc cleanups and fixes.
312        * tod/Makefile.am: Misc cleanups and fixes.
313        * wrapup/Makefile.am: Misc cleanups and fixes.
314
3152003-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * console/Makefile.am: Remove all: $(ARCH)..
318        * i2c/Makefile.am: Remove all: $(ARCH)..
319        * nvram/Makefile.am: Remove all: $(ARCH)..
320        * startup/Makefile.am: Remove all: $(ARCH)..
321        * tod/Makefile.am: Remove all: $(ARCH)..
322        * wrapup/Makefile.am: Remove all: $(ARCH).
323        Remove bogus wildcard from CPU_PIECES..
324
3252003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * Makefile.am: Cosmetics.
328        * console/Makefile.am: Cosmetics.
329        * i2c/Makefile.am: Cosmetics.
330        * nvram/Makefile.am: Cosmetics.
331        * start/Makefile.am: Cosmetics.
332        * startup/Makefile.am: Cosmetics.
333        * tod/Makefile.am: Cosmetics.
334        * wrapup/Makefile.am: Cosmetics.
335
3362003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Add preinstallation dirstamp support.
339        * console/Makefile.am: Cosmetics.
340        * i2c/Makefile.am: Cosmetics.
341        * nvram/Makefile.am: Cosmetics.
342        * startup/Makefile.am: Cosmetics.
343        * tod/Makefile.am: Cosmetics.
344        * wrapup/Makefile.am: Cosmetics.
345
3462003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * start/Makefile.am: Remove all-local: $(ARCH).
349
3502003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
351
352        * Makefile.am: Merge-in include/Makefile.am.
353        Reflect changes to bsp.am.
354        * include/Makefile.am: Remove.
355        * configure.ac: Reflect changes above.
356
3572003-09-04      Joel Sherrill <joel@OARcorp.com>
358
359        * README, console/console.c, i2c/i2c.c, i2c/i2cdrv.c, include/bsp.h,
360        include/ds1307.h, include/i2c.h, include/i2cdrv.h, include/nvram.h,
361        nvram/nvram.c, start/start.S, startup/bspclean.c, startup/bspstart.c,
362        startup/gdbinit, startup/init5206e.c, startup/linkcmds,
363        startup/linkcmds.flash, tod/ds1307.c, tod/todcfg.c, tools/runtest:
364        URL for license changed.
365
3662003-08-20      Joel Sherrill <joel@OARcorp.com>
367
368        * console/console.c, start/start.S, startup/bspclean.c,
369        startup/bspstart.c, startup/init5206e.c: Correct copyright
370        statements.
371
3722003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * Makefile.am: Reflect having moved aclocal/.
375
3762003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * Makefile.am: Reflect having moved automake/.
379        * console/Makefile.am: Reflect having moved automake/.
380        * i2c/Makefile.am: Reflect having moved automake/.
381        * include/Makefile.am: Reflect having moved automake/.
382        * nvram/Makefile.am: Reflect having moved automake/.
383        * start/Makefile.am: Reflect having moved automake/.
384        * startup/Makefile.am: Reflect having moved automake/.
385        * tod/Makefile.am: Reflect having moved automake/.
386        * wrapup/Makefile.am: Reflect having moved automake/.
387
3882003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        PR 452/bsps
391        * startup/Makefile.am: Remove USE_INIT_FINI.
392
3932003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
394
395        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
396
3972003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
398
399        PR 445/bsps
400        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
401        Remove cpp, old_cpp (now unused).
402
4032003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * configure.ac: Remove AC_CONFIG_AUX_DIR.
406
4072003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
410
4112003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * configure.ac: AC_PREREQ(2.57).
414
4152003-01-20      Joel Sherrill <joel@OARcorp.com>
416
417        * startup/linkcmds*: Add FreeBSD sysctl() sections.
418
4192002-12-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
420
421        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
422        * i2c/Makefile.am: Don't include @RTEMS_BSP@.cfg.
423        * nvram/Makefile.am: Don't include @RTEMS_BSP@.cfg.
424        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
425        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
426        * tod/Makefile.am: Don't include @RTEMS_BSP@.cfg.
427
4282002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * start/Makefile.am: Use install-data-local to install startfile.
431
4322002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
435
4362002-11-04      Joel Sherrill <joel@OARcorp.com>
437
438        * console/console.c, i2c/i2cdrv.c, nvram/nvram.c, startup/bspstart.c,
439        tod/ds1307.c: Removed warnings.
440
4412002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * .cvsignore: Reformat.
444        Add autom4te*cache.
445        Remove autom4te.cache.
446
4472002-08-21      Joel Sherrill <joel@OARcorp.com>
448
449        * wrapup/Makefile.am: PR217 required that the idle task be moved to
450        libcpu so it could be more acutely aware of the CPU model.  This
451        file was modified to pick up the idle task from there.
452
4532002-08-21      Joel Sherrill <joel@OARcorp.com>
454
455        * bsp_specs: Added support for -nostdlibs.
456
4572002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
460        * i2c/Makefile.am: Use .$(OBJEXT) instead of .o.
461        * nvram/Makefile.am: Use .$(OBJEXT) instead of .o.
462        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
463        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
464        * tod/Makefile.am: Use .$(OBJEXT) instead of .o.
465        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
466
4672002-08-05      Joel Sherrill <joel@OARcorp.com>
468
469        * Per PR260 eliminate use of make-target-options.  This impacted
470        RTEMS allowing a distinction between the CPU32 and CPU32+ in the
471        SuperCore and required that the m68k optimized memcpy be moved
472        to libcpu.
473        * wrapup/Makefile.am: Pick up memcpy.o from libcpu.
474
4752002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
476
477        * start/Makefile.am: Eliminate PGM.
478        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
479
4802002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
481
482        * startup/Makefile.am: Add bsplib_DATA = linkcmds gdbinit
483        linkcmds.flash.
484
4852002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
488
4892001-05-09      Joel Sherrill <joel@OARcorp.com>
490
491        * startup/linkcmds: In support of gcc 3.1, added one of more
492        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
493        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
494        and direction of segments to memory regions may also have been
495        addressed.  This was a sweep across all BSPs.
496 
4972002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * configure.ac:
500        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
501        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
502        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
503        * Makefile.am: Remove AUTOMAKE_OPTIONS.
504        * i2c/Makefile.am: Remove AUTOMAKE_OPTIONS.
505        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
506        * nvram/Makefile.am: Remove AUTOMAKE_OPTIONS.
507        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
508        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
509        * tod/Makefile.am: Remove AUTOMAKE_OPTIONS.
510        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
511
5122002-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        * include/Makefile.am: Adapt to automake-1.5.
515
5162001-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * bsp_specs: Replace -lrtemsall with -lrtemsbsp -lrtemscpu,
519        replace -lrtemsall_g with -lrtemsbsp_g -lrtemscpu_g.
520
5212001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
524
5252001-11-20      Joel Sherrill <joel@OARcorp.com>
526
527        * include/bspopts.h.in: Automatically generated file that should not
528        be in CVS.
529
5302001-10-29      Joel Sherrill <joel@OARcorp.com>
531
532        * .cvsignore, include/.cvsignore: Add more entries.
533
5342001-10-26      Victor V. Vengerov <vvv@oktet.ru>
535
536        * New BSP for MCF5206eLITE evaluation board BSP.
537        * ChangeLog, README, bsp_specs, configure.ac, console/console.c,
538        console/.cvsignore, i2c/i2c.c, i2c/i2cdrv.c, i2c/.cvsignore,
539        include/bsp.h, include/bspopts.h.in, include/coverhd.h,
540        include/ds1307.h, include/i2c.h, include/i2cdrv.h, include/nvram.h,
541        include/.cvsignore, nvram/nvram.c, nvram/.cvsignore, start/start.S,
542        start/.cvsignore, startup/bspclean.c, startup/bspstart.c,
543        startup/gdbinit, startup/init5206e.c, startup/linkcmds,
544        startup/linkcmds.flash, startup/.cvsignore, times, tod/ds1307.c,
545        tod/todcfg.c, tod/.cvsignore, tools/.cvsignore, tools/configure.ac,
546        tools/runtest, tools/changes, wrapup/.cvsignore, .cvsignore:
547        New files.
548
Note: See TracBrowser for help on using the repository browser.