source: rtems/c/src/lib/libbsp/mips/genmongoosev/ChangeLog @ e94666d

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

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

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • Property mode set to 100644
File size: 19.5 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
4        components.
5
62008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
9
102008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * configure.ac: Make letting boot_card() handle work area allocation
13        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
14        BSP_BOOTCARD_OPTIONS.
15
162008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * include/bsp.h: Remove unnecessary boilerplate comments.
19
202008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * Makefile.am, startup/linkcmds: Use top level shared
23        bsp_get_work_area() implementation.
24        * startup/bspgetworkarea.c: Removed.
25
262008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
27
28        * startup/bspstart.c: Remove unnecessary includes of
29        rtems/libcsupport.h and rtems/libio.h.
30
312008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
34        Split out bsp_get_work_area() into its own file and user BSP
35        Framework to perform more initialization.
36        * startup/bspgetworkarea.c: New file.
37
382008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
41        phase, all prototypes were removed from bsp.h and empty
42        implementations were removed and made to use the shared stub.
43
442008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * timer/timer.c: Convert to "bool".
47
482008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
49
50        * timer/timer.c: Eliminate empty function from every benchmark timer
51        driver. Fix spelling.
52
532008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
54
55        * timer/timer.c: Rename timer driver methods to follow RTEMS
56        programming conventions.
57
582008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
59
60        * startup/bspstart.c: Add missing prototypes.
61        * timer/timer.c: Add missing prototypes.
62
632008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
66        Framework to ask the BSP where it has memory for the RTEMS Workspace
67        and C Program Heap. These collectively are referred to as work area.
68        If the BSP supports this, then it does not have to include code to
69        split the available memory between the two areas. This reduces the
70        amount of code in the BSP specific bspstart.c file. Additionally, the
71        shared framework can initialize the C Library, call
72        rtems_debug_enable(), and dirty the work area memory. Until most/all
73        BSPs support this new capability, if the BSP supports this, it should
74        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
75        When the transition is complete, this autoconf macro can be removed.
76
772008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * Makefile.am: Rework to avoid .rel files.
80
812008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * startup/bspstart.c: Refactored and renamed initialization routines to
84        rtems_initialize_data_structures, rtems_initialize_before_drivers,
85        rtems_initialize_device_drivers, and
86        rtems_initialize_start_multitasking. This opened the sequence up so
87        that bootcard() could provide a more robust and flexible framework
88        which is easier to explain and understand. This also lays the
89        groundwork for sharing the division of available memory between the
90        RTEMS workspace and heap and the C library initialization across all
91        BSPs.
92
932008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * startup/linkcmds: Add wildcard to gcc_except_table section so
96        programs compiled with gcc 4.3.x can link.
97
982007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
101        Configuration Table. Use the RTEMS provided accessor macros to obtain
102        configuration fields.
103
1042007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
107        Configuration Table. Eliminate CPU Table from all ports. Delete
108        references to CPU Table in all forms.
109
1102007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
111
112        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
113        Table fields to the Configuration Table. This included
114        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
115        do_zero_of_workspace, extra_mpci_receive_server_stack,
116        stack_allocate_hook, and stack_free_hook. As a side-effect of this
117        effort some multiprocessing code was made conditional and some style
118        clean up occurred.
119
1202007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
121
122        * bsp_specs: Remove qrtems_debug.
123
1242007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
125
126        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
127        endianness).
128
1292006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
130
131        * configure.ac: New BUG-REPORT address.
132
1332006-11-15      Joel Sherrill <joel@OARcorp.com>
134
135        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
136        file and simplified initialization.
137
1382006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
139
140        * Makefile.am: Remove superfluous -DASM.
141
1422006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
143
144        * configure.ac: Require autoconf-2.60. Require automake-1.10.
145
1462006-09-11      Joel Sherrill <joel@OARcorp.com>
147
148        * startup/bspstart.c: Convert C++ style comments to C style.
149
1502006-03-08      Joel Sherrill <joel@OARcorp.com>
151
152        * startup/linkcmds: Add .gnu.linkonce.b.* section.
153
1542006-02-08      Joel Sherrill <joel@OARcorp.com>
155
156        * clock/clockdrv.c: Correct path to clockdrv_shell.c
157
1582006-02-08      Joel Sherrill <joel@OARcorp.com>
159
160        * startup/linkcmds: Add sections required by newer gcc versions.
161
1622006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
163
164        * Makefile.am: Add preinstall.am.
165
1662005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
167
168        * include/bsp.h: New header guard.
169
1702005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
171
172        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
173
1742005-01-05      Ralf Corsepius <ralf.corsepius@rtems.org>
175
176        * Makefile.am: Fix typo.
177
1782005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
179
180        * Makefile.am: Remove build-variant support.
181
1822004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
183
184        * configure.ac: Require automake > 1.9.
185
1862004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
187
188        PR 610/bsps
189        * Makefile.am: Add include/tm27.h, Cosmetics.
190        * include/tm27.h: Final cosmetics.
191
1922004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
193
194        * include/bsp.h: Split out tmtest27 support.
195        * include/tm27.h: New.
196
1972004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
198
199        PR 613/bsps
200        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
201
2022004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
203
204        PR 614/bsps
205        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
206
2072004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
208
209        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
210        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
211        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
212        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
213
2142004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
215
216        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c,
217        startup/gdb-support.c, timer/timer.c: Convert to using c99 fixed
218        size types.
219
2202004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
221
222        * Makefile.am: Reflect changes to bsp.am.
223        Preinstall dist_project_lib*.
224
2252004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
226
227        * Makefile.am: Reflect changes to bsp.am.
228
2292004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
230
231        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
232
2332004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * Makefile.am: Correct path to clockdrv_shell.c.
236
2372004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
238
239        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
240        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake
241        compilation rules.
242        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
243        timer/Makefile.am, wrapup/Makefile.am: Remove.
244        * configure.ac: Reflect changes above.
245
2462004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * start/start.S: Replace #-ASM-style comments with C-/**/ comments.
249        * start/reg.S: Remove //-comments
250
2512004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
254        Add RTEMS_PROG_CCAS.
255
2562004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * Makefile.am: Add PREINSTALL_DIRS.
259
2602004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * Makefile.am: Remove times from EXTRA_DIST (Non-existant).
263        * startup/Makefile.am: Remove bspclean.c, exit.c, setvec.c from
264        EXTRA_DIST.
265        * wrapup/Makefile.am: Reflect changes to libcpu.
266
2672004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
270        Add PRE/TMPINSTALL_FILES to CLEANFILES.
271        * startup/Makefile.am: Ditto.
272
2732004-01-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * start/Makefile.am: Remove.
276        * Makefile.am: Merge-in start/Makefile.am.
277        * configure.ac: Reflect changes above.
278
2792004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * wrapup/Makefile.am: Eliminate $(LIB).
282        Use noinst_DATA to trigger building libbsp.a.
283
2842003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
285
286        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
287        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
288
2892003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
292        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
293
2942003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
297
2982003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * start/Makefile.am: Misc cleanups and fixes.
301        * startup/Makefile.am: Misc cleanups and fixes.
302        * wrapup/Makefile.am: Misc cleanups and fixes.
303
3042003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Add preinstallation dirstamp support.
307        * clock/Makefile.am: Cosmetics.
308        * console/Makefile.am: Cosmetics.
309        * startup/Makefile.am: Cosmetics.
310        * timer/Makefile.am: Cosmetics.
311        * wrapup/Makefile.am: Cosmetics.
312
3132003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * clock/Makefile.am: Remove all-local: $(ARCH).
316        * console/Makefile.am: Remove all-local: $(ARCH).
317        * start/Makefile.am: Remove all-local: $(ARCH).
318        * startup/Makefile.am: Remove all-local: $(ARCH).
319        * timer/Makefile.am: Remove all-local: $(ARCH).
320        * wrapup/Makefile.am: Remove all-local: $(ARCH).
321
3222003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
323
324        * Makefile.am: Fix preinstallation of include/coverhd.h.
325
3262003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * Makefile.am: Merge-in include/Makefile.am.
329        Reflect changes to bsp.am.
330        * include/Makefile.am: Remove.
331        * configure.ac: Reflect changes above.
332
3332003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * bsp_specs: Remove *lib:.
336
3372003-09-04      Joel Sherrill <joel@OARcorp.com>
338
339        * clock/clockdrv.c, console/conscfg.c, include/bsp.h,
340        startup/bspstart.c, startup/gdb-support.c, timer/timer.c: URL for
341        license changed.
342
3432003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * Makefile.am: Reflect having moved aclocal/.
346
3472003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * Makefile.am: Reflect having moved automake/.
350        * clock/Makefile.am: Reflect having moved automake/.
351        * console/Makefile.am: Reflect having moved automake/.
352        * include/Makefile.am: Reflect having moved automake/.
353        * start/Makefile.am: Reflect having moved automake/.
354        * startup/Makefile.am: Reflect having moved automake/.
355        * timer/Makefile.am: Reflect having moved automake/.
356        * wrapup/Makefile.am: Reflect having moved automake/.
357
3582003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        PR 452/bsps
361        * startup/Makefile.am: Remove USE_INIT_FINI.
362
3632003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * bsp_specs: Remove -D__USE_INIT_FINI__.
366        Remove *.cpp (Now unused).
367
3682003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
371
3722003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        PR 445/bsps
375        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
376
3772003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * configure.ac: Remove AC_CONFIG_AUX_DIR.
380
3812003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
384
3852003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * configure.ac: AC_PREREQ(2.57).
388
3892003-01-20      Joel Sherrill <joel@OARcorp.com>
390
391        * startup/linkcmds*: Add FreeBSD sysctl() sections.
392
3932002-12-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
394 
395        * bsp_specs: Added crtbegin/crtend and INIT_FINI for C++ support.
396        * linkcmds: Added .init, .fini & related sections.
397
3982002-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
401        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405
4062002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * start/Makefile.am: Use install-data-local to install startfile.
409
4102002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
413
4142002-11-01      Joel Sherrill <joel@OARcorp.com>
415
416        * startup/gdb-support.c, startup/linkcmds: Removed warnings.
417
4182002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * .cvsignore: Reformat.
421        Add autom4te*cache.
422        Remove autom4te.cache.
423
4242002-08-21      Joel Sherrill <joel@OARcorp.com>
425
426        * bsp_specs: Added support for -nostdlibs.
427
4282002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
431        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
432        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
433        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
434        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
435        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
436
4372002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * start/Makefile.am: Eliminate PGM.
440        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
441
4422002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
445
4462002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
449        Remove $(OBJS) from all-local.
450
4512002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * wrapup/Makefile.am: Add $(LIB) to all-local.
454
4552002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
458
4592002-06-25      Joel Sherrill <joel@OARcorp.com>
460
461        * Thomas Doerfler <Thomas.Doerfler@imd-systems.de> added m68k
462        support to the shared gdb stub glue thus moving some of the
463        gdbstub support to a higher level.
464        * startup/Makefile.am: Modified to reflect above.
465
4662002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * configure.ac:
469        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
470        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
471        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
472        * Makefile.am: Remove AUTOMAKE_OPTIONS.
473        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
474        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
475        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
476        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
478        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
479
4802001-03-08      Joel Sherrill <joel@OARcorp.com>
481
482        * start/start.S, startup/bspstart.c: Removed warnings.
483
4842002-03-05      Greg Menke <gregory.menke@gsfc.nasa.gov>
485
486        * startup/gdb-support.c: Added calls into the mips-support gdb stub
487        for configuring the memory regions.  Any bsp that wants to use the
488        gdbstub will need to do something similar.
489        * startup/Makefile.am: Added shared/gdbstub directory to include path.
490
4912002-02-27      Greg Menke <gregory.menke@gsfc.nasa.gov>
492
493        * start/start.S: Added kseg1 test to enable cache flush code
494        * bsp_specs: Added -qnostartfile to disable including bsp's start.o
495        * startup/bspstart.c: Made clear_cache actually work, tweaked cpu
496        init to only turn on whats needed.
497        * startup/gdb-support.c: Added calls to uart 2 for gdb stub I/O and
498        a handy init function.
499
5002002-02-08      Joel Sherrill <joel@OARcorp.com>
501
502        * startup/Makefile.am: Now compile the gdb stub.
503        * startup/bspstart.c: Fixed header block.
504        * startup/gdb-support.c: New file in stub state.
505
5062001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
507
508        * include/lr33000.h, include/lr330x0.h, include/r3000.h, start/mg5.h:
509        New files missed in previous commit.
510        * timer/timer.c: Use rtems/bspIo.h not just bspIo.h.
511
5122001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
513
514        * Update of BSP to address problems restarting, provide more
515        information during boot, and better handle ROM vs RAM images.
516        * README, include/bsp.h, start/regs.S, start/start.S,
517        startup/bspstart.c, startup/linkcmds, timer/timer.c: Updated
518
5192002-02-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
522
5232002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * console/conscfg.c: Include rtems/bspIo.h instead of bspIo.h.
526        * timer/timer.c: Include rtems/bspIo.h instead of bspIo.h.
527
5282001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
529
530        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
531
5322001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
535        * configure.in: Remove.
536        * configure.ac: New file, generated from configure.in by autoupdate.
537
5382001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
539
540        * include/Makefile.am: Use 'CLEANFILES ='.
541        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
542
5432001-05-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
544
545        * configure.in: Add bspopts.h.
546        * include/bsp.h: Include bspopts.h.
547        * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*.
548        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
549
5502001-05-24      Greg Menke <gregory.menke@gsfc.nasa.gov>
551
552        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
553        * start/regs.S, start/start.S: Now works on Mongoose-V.  Missed
554        in previous patch.
555
5562001-05-22      Greg Menke <gregory.menke@gsfc.nasa.gov>
557
558        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
559        * clock/clockdrv.c, console/conscfg.c: Corrected.
560        * include/bsp.h: Support for tm27 and addition of CPU_CLOCK_RATE.
561        * startup/bspstart.c: Properly set initial status register and
562        pending interrupts.
563        * timer/timer.c: Works now.
564
5652001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
566
567        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
568
5692001-05-07      Joel Sherrill <joel@OARcorp.com>
570
571        * console/conscfg.c: Added an entry for the second
572        serial port.
573
5742001-04-20      Joel Sherrill <joel@OARcorp.com>
575
576        * clock/clockdrv.c: Account for the fact that ClockRate is
577        in cycles not megahertz.
578
5792001-04-16      Joel Sherrill <joel@OARcorp.com>
580
581        * start/start.S, startup/bspstart.c, startup/linkcmds:
582        Cleanup that was not merged from the simple non-RTEMS program.
583
5842001-04-16      Joel Sherrill <joel@OARcorp.com>
585
586        * start/start.S, startup/bspstart.c, startup/linkcmds:
587        Modifications made with Gregory Menke <gregory.menke@gsfc.nasa.gov>
588        as he debugged this BSP using a logic analyzer.
589
5902001-03-14      Joel Sherrill <joel@OARcorp.com>
591
592        * clock/clockdrv.c, console/conscfg.c, include/bsp.h, start/start.S,
593        startup/bspstart.c, timer/timer.c: Comments corrected.
594
5952001-02-22      Joel Sherrill <joel@OARcorp.com>
596
597        * The Generic Mongoose-V BSP uses only the peripherals found on
598        the Synova Mongoose-V CPU.  This is a radiation hardened CPU
599        based on the LSI Logic 33K.
600        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.in,
601        clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c,
602        console/.cvsignore, console/Makefile.am, console/conscfg.c,
603        include/.cvsignore, include/Makefile.am, include/bsp.h,
604        start/.cvsignore, start/Makefile.am, start/regs.S, start/start.S,
605        startup/.cvsignore, startup/Makefile.am, startup/bspstart.c,
606        startup/linkcmds, timer/.cvsignore, timer/Makefile.am, timer/timer.c,
607        wrapup/.cvsignore, wrapup/Makefile.am: New files.
608
Note: See TracBrowser for help on using the repository browser.