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

4.104.115
Last change on this file since 5efc3ca2 was d1be26b, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/09 at 23:21:23

2009-07-16 Joel Sherrill <joel.sherrill@…>

  • configure.ac: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs have the same options.
  • Property mode set to 100644
File size: 20.6 KB
Line 
12009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
4        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
5        have the same options.
6
72009-04-28      Chris Johns <chrisj@rtems.org>
8
9        * start/start.S: Update for boot_card command line change.
10
112008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * bsp_specs: Move -e start from *link to *startfile to avoid warning
14        for undefined entry symbol when linking relocatables with binutils
15        2.19.
16
172008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
20        * Makefile.am: Reflect changes above.
21
222008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
25        of building libbspstart.a, using automake-rules.
26
272008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * start/regs.S: Remove (Renamed into start/regs.h).
30        * start/regs.h: New (Renamed from start/regs.S).
31        * Makefile.am, start/start.S: Reflect renamer.
32
332008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
34
35        * Makefile.am: Eliminate *_SOURCES.
36
372008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
38
39        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
40        components.
41
422008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
43
44        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
45
462008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * configure.ac: Make letting boot_card() handle work area allocation
49        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
50        BSP_BOOTCARD_OPTIONS.
51
522008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
53
54        * include/bsp.h: Remove unnecessary boilerplate comments.
55
562008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
57
58        * Makefile.am, startup/linkcmds: Use top level shared
59        bsp_get_work_area() implementation.
60        * startup/bspgetworkarea.c: Removed.
61
622008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * startup/bspstart.c: Remove unnecessary includes of
65        rtems/libcsupport.h and rtems/libio.h.
66
672008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
68
69        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
70        Split out bsp_get_work_area() into its own file and user BSP
71        Framework to perform more initialization.
72        * startup/bspgetworkarea.c: New file.
73
742008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
75
76        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
77        phase, all prototypes were removed from bsp.h and empty
78        implementations were removed and made to use the shared stub.
79
802008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
81
82        * timer/timer.c: Convert to "bool".
83
842008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * timer/timer.c: Eliminate empty function from every benchmark timer
87        driver. Fix spelling.
88
892008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
90
91        * timer/timer.c: Rename timer driver methods to follow RTEMS
92        programming conventions.
93
942008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
95
96        * startup/bspstart.c: Add missing prototypes.
97        * timer/timer.c: Add missing prototypes.
98
992008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
102        Framework to ask the BSP where it has memory for the RTEMS Workspace
103        and C Program Heap. These collectively are referred to as work area.
104        If the BSP supports this, then it does not have to include code to
105        split the available memory between the two areas. This reduces the
106        amount of code in the BSP specific bspstart.c file. Additionally, the
107        shared framework can initialize the C Library, call
108        rtems_debug_enable(), and dirty the work area memory. Until most/all
109        BSPs support this new capability, if the BSP supports this, it should
110        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
111        When the transition is complete, this autoconf macro can be removed.
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        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
137        Configuration Table. Use the RTEMS provided accessor macros to obtain
138        configuration fields.
139
1402007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
141
142        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
143        Configuration Table. Eliminate CPU Table from all ports. Delete
144        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-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * bsp_specs: Remove qrtems_debug.
159
1602007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
161
162        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
163        endianness).
164
1652006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
166
167        * configure.ac: New BUG-REPORT address.
168
1692006-11-15      Joel Sherrill <joel@OARcorp.com>
170
171        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
172        file and simplified initialization.
173
1742006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
175
176        * Makefile.am: Remove superfluous -DASM.
177
1782006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
179
180        * configure.ac: Require autoconf-2.60. Require automake-1.10.
181
1822006-09-11      Joel Sherrill <joel@OARcorp.com>
183
184        * startup/bspstart.c: Convert C++ style comments to C style.
185
1862006-03-08      Joel Sherrill <joel@OARcorp.com>
187
188        * startup/linkcmds: Add .gnu.linkonce.b.* section.
189
1902006-02-08      Joel Sherrill <joel@OARcorp.com>
191
192        * clock/clockdrv.c: Correct path to clockdrv_shell.c
193
1942006-02-08      Joel Sherrill <joel@OARcorp.com>
195
196        * startup/linkcmds: Add sections required by newer gcc versions.
197
1982006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
199
200        * Makefile.am: Add preinstall.am.
201
2022005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
203
204        * include/bsp.h: New header guard.
205
2062005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
209
2102005-01-05      Ralf Corsepius <ralf.corsepius@rtems.org>
211
212        * Makefile.am: Fix typo.
213
2142005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
215
216        * Makefile.am: Remove build-variant support.
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-01      Ralf Corsepius <ralf_corsepius@rtems.org>
244
245        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
246        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
247        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
248        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
249
2502004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
251
252        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c,
253        startup/gdb-support.c, timer/timer.c: Convert to using c99 fixed
254        size types.
255
2562004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * Makefile.am: Reflect changes to bsp.am.
259        Preinstall dist_project_lib*.
260
2612004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
262
263        * Makefile.am: Reflect changes to bsp.am.
264
2652004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
268
2692004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
270
271        * Makefile.am: Correct path to clockdrv_shell.c.
272
2732004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
276        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake
277        compilation rules.
278        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
279        timer/Makefile.am, wrapup/Makefile.am: Remove.
280        * configure.ac: Reflect changes above.
281
2822004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * start/start.S: Replace #-ASM-style comments with C-/**/ comments.
285        * start/reg.S: Remove //-comments
286
2872004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
290        Add RTEMS_PROG_CCAS.
291
2922004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * Makefile.am: Add PREINSTALL_DIRS.
295
2962004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * Makefile.am: Remove times from EXTRA_DIST (Non-existant).
299        * startup/Makefile.am: Remove bspclean.c, exit.c, setvec.c from
300        EXTRA_DIST.
301        * wrapup/Makefile.am: Reflect changes to libcpu.
302
3032004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
306        Add PRE/TMPINSTALL_FILES to CLEANFILES.
307        * startup/Makefile.am: Ditto.
308
3092004-01-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * start/Makefile.am: Remove.
312        * Makefile.am: Merge-in start/Makefile.am.
313        * configure.ac: Reflect changes above.
314
3152004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * wrapup/Makefile.am: Eliminate $(LIB).
318        Use noinst_DATA to trigger building libbsp.a.
319
3202003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
323        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
324
3252003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
328        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
329
3302003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
333
3342003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * start/Makefile.am: Misc cleanups and fixes.
337        * startup/Makefile.am: Misc cleanups and fixes.
338        * wrapup/Makefile.am: Misc cleanups and fixes.
339
3402003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Add preinstallation dirstamp support.
343        * clock/Makefile.am: Cosmetics.
344        * console/Makefile.am: Cosmetics.
345        * startup/Makefile.am: Cosmetics.
346        * timer/Makefile.am: Cosmetics.
347        * wrapup/Makefile.am: Cosmetics.
348
3492003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * clock/Makefile.am: Remove all-local: $(ARCH).
352        * console/Makefile.am: Remove all-local: $(ARCH).
353        * start/Makefile.am: Remove all-local: $(ARCH).
354        * startup/Makefile.am: Remove all-local: $(ARCH).
355        * timer/Makefile.am: Remove all-local: $(ARCH).
356        * wrapup/Makefile.am: Remove all-local: $(ARCH).
357
3582003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * Makefile.am: Fix preinstallation of include/coverhd.h.
361
3622003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * Makefile.am: Merge-in include/Makefile.am.
365        Reflect changes to bsp.am.
366        * include/Makefile.am: Remove.
367        * configure.ac: Reflect changes above.
368
3692003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * bsp_specs: Remove *lib:.
372
3732003-09-04      Joel Sherrill <joel@OARcorp.com>
374
375        * clock/clockdrv.c, console/conscfg.c, include/bsp.h,
376        startup/bspstart.c, startup/gdb-support.c, timer/timer.c: URL for
377        license changed.
378
3792003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * Makefile.am: Reflect having moved aclocal/.
382
3832003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * Makefile.am: Reflect having moved automake/.
386        * clock/Makefile.am: Reflect having moved automake/.
387        * console/Makefile.am: Reflect having moved automake/.
388        * include/Makefile.am: Reflect having moved automake/.
389        * start/Makefile.am: Reflect having moved automake/.
390        * startup/Makefile.am: Reflect having moved automake/.
391        * timer/Makefile.am: Reflect having moved automake/.
392        * wrapup/Makefile.am: Reflect having moved automake/.
393
3942003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        PR 452/bsps
397        * startup/Makefile.am: Remove USE_INIT_FINI.
398
3992003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * bsp_specs: Remove -D__USE_INIT_FINI__.
402        Remove *.cpp (Now unused).
403
4042003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
407
4082003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        PR 445/bsps
411        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
412
4132003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * configure.ac: Remove AC_CONFIG_AUX_DIR.
416
4172003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
420
4212003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * configure.ac: AC_PREREQ(2.57).
424
4252003-01-20      Joel Sherrill <joel@OARcorp.com>
426
427        * startup/linkcmds*: Add FreeBSD sysctl() sections.
428
4292002-12-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
430 
431        * bsp_specs: Added crtbegin/crtend and INIT_FINI for C++ support.
432        * linkcmds: Added .init, .fini & related sections.
433
4342002-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
437        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
438        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
439        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
440        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
441
4422002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * start/Makefile.am: Use install-data-local to install startfile.
445
4462002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
449
4502002-11-01      Joel Sherrill <joel@OARcorp.com>
451
452        * startup/gdb-support.c, startup/linkcmds: Removed warnings.
453
4542002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * .cvsignore: Reformat.
457        Add autom4te*cache.
458        Remove autom4te.cache.
459
4602002-08-21      Joel Sherrill <joel@OARcorp.com>
461
462        * bsp_specs: Added support for -nostdlibs.
463
4642002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
467        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
468        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
469        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
470        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
471        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
472
4732002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * start/Makefile.am: Eliminate PGM.
476        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
477
4782002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
481
4822002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
485        Remove $(OBJS) from all-local.
486
4872002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * wrapup/Makefile.am: Add $(LIB) to all-local.
490
4912002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
492
493        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
494
4952002-06-25      Joel Sherrill <joel@OARcorp.com>
496
497        * Thomas Doerfler <Thomas.Doerfler@imd-systems.de> added m68k
498        support to the shared gdb stub glue thus moving some of the
499        gdbstub support to a higher level.
500        * startup/Makefile.am: Modified to reflect above.
501
5022002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac:
505        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
506        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
507        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
508        * Makefile.am: Remove AUTOMAKE_OPTIONS.
509        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
510        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
511        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
512        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
513        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
514        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
515
5162001-03-08      Joel Sherrill <joel@OARcorp.com>
517
518        * start/start.S, startup/bspstart.c: Removed warnings.
519
5202002-03-05      Greg Menke <gregory.menke@gsfc.nasa.gov>
521
522        * startup/gdb-support.c: Added calls into the mips-support gdb stub
523        for configuring the memory regions.  Any bsp that wants to use the
524        gdbstub will need to do something similar.
525        * startup/Makefile.am: Added shared/gdbstub directory to include path.
526
5272002-02-27      Greg Menke <gregory.menke@gsfc.nasa.gov>
528
529        * start/start.S: Added kseg1 test to enable cache flush code
530        * bsp_specs: Added -qnostartfile to disable including bsp's start.o
531        * startup/bspstart.c: Made clear_cache actually work, tweaked cpu
532        init to only turn on whats needed.
533        * startup/gdb-support.c: Added calls to uart 2 for gdb stub I/O and
534        a handy init function.
535
5362002-02-08      Joel Sherrill <joel@OARcorp.com>
537
538        * startup/Makefile.am: Now compile the gdb stub.
539        * startup/bspstart.c: Fixed header block.
540        * startup/gdb-support.c: New file in stub state.
541
5422001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
543
544        * include/lr33000.h, include/lr330x0.h, include/r3000.h, start/mg5.h:
545        New files missed in previous commit.
546        * timer/timer.c: Use rtems/bspIo.h not just bspIo.h.
547
5482001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
549
550        * Update of BSP to address problems restarting, provide more
551        information during boot, and better handle ROM vs RAM images.
552        * README, include/bsp.h, start/regs.S, start/start.S,
553        startup/bspstart.c, startup/linkcmds, timer/timer.c: Updated
554
5552002-02-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
556
557        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
558
5592002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
560
561        * console/conscfg.c: Include rtems/bspIo.h instead of bspIo.h.
562        * timer/timer.c: Include rtems/bspIo.h instead of bspIo.h.
563
5642001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
565
566        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
567
5682001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
569
570        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
571        * configure.in: Remove.
572        * configure.ac: New file, generated from configure.in by autoupdate.
573
5742001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
575
576        * include/Makefile.am: Use 'CLEANFILES ='.
577        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
578
5792001-05-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
580
581        * configure.in: Add bspopts.h.
582        * include/bsp.h: Include bspopts.h.
583        * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*.
584        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
585
5862001-05-24      Greg Menke <gregory.menke@gsfc.nasa.gov>
587
588        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
589        * start/regs.S, start/start.S: Now works on Mongoose-V.  Missed
590        in previous patch.
591
5922001-05-22      Greg Menke <gregory.menke@gsfc.nasa.gov>
593
594        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
595        * clock/clockdrv.c, console/conscfg.c: Corrected.
596        * include/bsp.h: Support for tm27 and addition of CPU_CLOCK_RATE.
597        * startup/bspstart.c: Properly set initial status register and
598        pending interrupts.
599        * timer/timer.c: Works now.
600
6012001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
602
603        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
604
6052001-05-07      Joel Sherrill <joel@OARcorp.com>
606
607        * console/conscfg.c: Added an entry for the second
608        serial port.
609
6102001-04-20      Joel Sherrill <joel@OARcorp.com>
611
612        * clock/clockdrv.c: Account for the fact that ClockRate is
613        in cycles not megahertz.
614
6152001-04-16      Joel Sherrill <joel@OARcorp.com>
616
617        * start/start.S, startup/bspstart.c, startup/linkcmds:
618        Cleanup that was not merged from the simple non-RTEMS program.
619
6202001-04-16      Joel Sherrill <joel@OARcorp.com>
621
622        * start/start.S, startup/bspstart.c, startup/linkcmds:
623        Modifications made with Gregory Menke <gregory.menke@gsfc.nasa.gov>
624        as he debugged this BSP using a logic analyzer.
625
6262001-03-14      Joel Sherrill <joel@OARcorp.com>
627
628        * clock/clockdrv.c, console/conscfg.c, include/bsp.h, start/start.S,
629        startup/bspstart.c, timer/timer.c: Comments corrected.
630
6312001-02-22      Joel Sherrill <joel@OARcorp.com>
632
633        * The Generic Mongoose-V BSP uses only the peripherals found on
634        the Synova Mongoose-V CPU.  This is a radiation hardened CPU
635        based on the LSI Logic 33K.
636        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.in,
637        clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c,
638        console/.cvsignore, console/Makefile.am, console/conscfg.c,
639        include/.cvsignore, include/Makefile.am, include/bsp.h,
640        start/.cvsignore, start/Makefile.am, start/regs.S, start/start.S,
641        startup/.cvsignore, startup/Makefile.am, startup/bspstart.c,
642        startup/linkcmds, timer/.cvsignore, timer/Makefile.am, timer/timer.c,
643        wrapup/.cvsignore, wrapup/Makefile.am: New files.
644
Note: See TracBrowser for help on using the repository browser.