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

4.104.115
Last change on this file since df393962 was df393962, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/08 at 20:34:02

2008-12-04 Joel Sherrill <joel.sherrill@…>

  • bsp_specs: Move -e start from *link to *startfile to avoid warning for undefined entry symbol when linking relocatables with binutils 2.19.
  • Property mode set to 100644
File size: 20.3 KB
Line 
12008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * bsp_specs: Move -e start from *link to *startfile to avoid warning
4        for undefined entry symbol when linking relocatables with binutils
5        2.19.
6
72008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
8
9        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
10        * Makefile.am: Reflect changes above.
11
122008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
15        of building libbspstart.a, using automake-rules.
16
172008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * start/regs.S: Remove (Renamed into start/regs.h).
20        * start/regs.h: New (Renamed from start/regs.S).
21        * Makefile.am, start/start.S: Reflect renamer.
22
232008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
24
25        * Makefile.am: Eliminate *_SOURCES.
26
272008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
30        components.
31
322008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
35
362008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
37
38        * configure.ac: Make letting boot_card() handle work area allocation
39        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
40        BSP_BOOTCARD_OPTIONS.
41
422008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
43
44        * include/bsp.h: Remove unnecessary boilerplate comments.
45
462008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * Makefile.am, startup/linkcmds: Use top level shared
49        bsp_get_work_area() implementation.
50        * startup/bspgetworkarea.c: Removed.
51
522008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
53
54        * startup/bspstart.c: Remove unnecessary includes of
55        rtems/libcsupport.h and rtems/libio.h.
56
572008-09-14      Joel Sherrill <joel.sherrill@oarcorp.com>
58
59        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds:
60        Split out bsp_get_work_area() into its own file and user BSP
61        Framework to perform more initialization.
62        * startup/bspgetworkarea.c: New file.
63
642008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
65
66        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
67        phase, all prototypes were removed from bsp.h and empty
68        implementations were removed and made to use the shared stub.
69
702008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
71
72        * timer/timer.c: Convert to "bool".
73
742008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
75
76        * timer/timer.c: Eliminate empty function from every benchmark timer
77        driver. Fix spelling.
78
792008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * timer/timer.c: Rename timer driver methods to follow RTEMS
82        programming conventions.
83
842008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
85
86        * startup/bspstart.c: Add missing prototypes.
87        * timer/timer.c: Add missing prototypes.
88
892008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
92        Framework to ask the BSP where it has memory for the RTEMS Workspace
93        and C Program Heap. These collectively are referred to as work area.
94        If the BSP supports this, then it does not have to include code to
95        split the available memory between the two areas. This reduces the
96        amount of code in the BSP specific bspstart.c file. Additionally, the
97        shared framework can initialize the C Library, call
98        rtems_debug_enable(), and dirty the work area memory. Until most/all
99        BSPs support this new capability, if the BSP supports this, it should
100        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
101        When the transition is complete, this autoconf macro can be removed.
102
1032008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * Makefile.am: Rework to avoid .rel files.
106
1072008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * startup/bspstart.c: Refactored and renamed initialization routines to
110        rtems_initialize_data_structures, rtems_initialize_before_drivers,
111        rtems_initialize_device_drivers, and
112        rtems_initialize_start_multitasking. This opened the sequence up so
113        that bootcard() could provide a more robust and flexible framework
114        which is easier to explain and understand. This also lays the
115        groundwork for sharing the division of available memory between the
116        RTEMS workspace and heap and the C library initialization across all
117        BSPs.
118
1192008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
120
121        * startup/linkcmds: Add wildcard to gcc_except_table section so
122        programs compiled with gcc 4.3.x can link.
123
1242007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
127        Configuration Table. Use the RTEMS provided accessor macros to obtain
128        configuration fields.
129
1302007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
131
132        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
133        Configuration Table. Eliminate CPU Table from all ports. Delete
134        references to CPU Table in all forms.
135
1362007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
137
138        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
139        Table fields to the Configuration Table. This included
140        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
141        do_zero_of_workspace, extra_mpci_receive_server_stack,
142        stack_allocate_hook, and stack_free_hook. As a side-effect of this
143        effort some multiprocessing code was made conditional and some style
144        clean up occurred.
145
1462007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * bsp_specs: Remove qrtems_debug.
149
1502007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
151
152        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
153        endianness).
154
1552006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
156
157        * configure.ac: New BUG-REPORT address.
158
1592006-11-15      Joel Sherrill <joel@OARcorp.com>
160
161        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
162        file and simplified initialization.
163
1642006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
165
166        * Makefile.am: Remove superfluous -DASM.
167
1682006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
169
170        * configure.ac: Require autoconf-2.60. Require automake-1.10.
171
1722006-09-11      Joel Sherrill <joel@OARcorp.com>
173
174        * startup/bspstart.c: Convert C++ style comments to C style.
175
1762006-03-08      Joel Sherrill <joel@OARcorp.com>
177
178        * startup/linkcmds: Add .gnu.linkonce.b.* section.
179
1802006-02-08      Joel Sherrill <joel@OARcorp.com>
181
182        * clock/clockdrv.c: Correct path to clockdrv_shell.c
183
1842006-02-08      Joel Sherrill <joel@OARcorp.com>
185
186        * startup/linkcmds: Add sections required by newer gcc versions.
187
1882006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * Makefile.am: Add preinstall.am.
191
1922005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
193
194        * include/bsp.h: New header guard.
195
1962005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
197
198        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
199
2002005-01-05      Ralf Corsepius <ralf.corsepius@rtems.org>
201
202        * Makefile.am: Fix typo.
203
2042005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
205
206        * Makefile.am: Remove build-variant support.
207
2082004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
209
210        * configure.ac: Require automake > 1.9.
211
2122004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
213
214        PR 610/bsps
215        * Makefile.am: Add include/tm27.h, Cosmetics.
216        * include/tm27.h: Final cosmetics.
217
2182004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
219
220        * include/bsp.h: Split out tmtest27 support.
221        * include/tm27.h: New.
222
2232004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
224
225        PR 613/bsps
226        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
227
2282004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
229
230        PR 614/bsps
231        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
232
2332004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
234
235        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
236        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
237        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
238        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
239
2402004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
241
242        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c,
243        startup/gdb-support.c, timer/timer.c: Convert to using c99 fixed
244        size types.
245
2462004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * Makefile.am: Reflect changes to bsp.am.
249        Preinstall dist_project_lib*.
250
2512004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * Makefile.am: Reflect changes to bsp.am.
254
2552004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
258
2592004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Correct path to clockdrv_shell.c.
262
2632004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
266        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use automake
267        compilation rules.
268        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
269        timer/Makefile.am, wrapup/Makefile.am: Remove.
270        * configure.ac: Reflect changes above.
271
2722004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * start/start.S: Replace #-ASM-style comments with C-/**/ comments.
275        * start/reg.S: Remove //-comments
276
2772004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
278
279        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
280        Add RTEMS_PROG_CCAS.
281
2822004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * Makefile.am: Add PREINSTALL_DIRS.
285
2862004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * Makefile.am: Remove times from EXTRA_DIST (Non-existant).
289        * startup/Makefile.am: Remove bspclean.c, exit.c, setvec.c from
290        EXTRA_DIST.
291        * wrapup/Makefile.am: Reflect changes to libcpu.
292
2932004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
296        Add PRE/TMPINSTALL_FILES to CLEANFILES.
297        * startup/Makefile.am: Ditto.
298
2992004-01-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * start/Makefile.am: Remove.
302        * Makefile.am: Merge-in start/Makefile.am.
303        * configure.ac: Reflect changes above.
304
3052004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * wrapup/Makefile.am: Eliminate $(LIB).
308        Use noinst_DATA to trigger building libbsp.a.
309
3102003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
313        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
314
3152003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
318        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
319
3202003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
323
3242003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * start/Makefile.am: Misc cleanups and fixes.
327        * startup/Makefile.am: Misc cleanups and fixes.
328        * wrapup/Makefile.am: Misc cleanups and fixes.
329
3302003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * Makefile.am: Add preinstallation dirstamp support.
333        * clock/Makefile.am: Cosmetics.
334        * console/Makefile.am: Cosmetics.
335        * startup/Makefile.am: Cosmetics.
336        * timer/Makefile.am: Cosmetics.
337        * wrapup/Makefile.am: Cosmetics.
338
3392003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * clock/Makefile.am: Remove all-local: $(ARCH).
342        * console/Makefile.am: Remove all-local: $(ARCH).
343        * start/Makefile.am: Remove all-local: $(ARCH).
344        * startup/Makefile.am: Remove all-local: $(ARCH).
345        * timer/Makefile.am: Remove all-local: $(ARCH).
346        * wrapup/Makefile.am: Remove all-local: $(ARCH).
347
3482003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * Makefile.am: Fix preinstallation of include/coverhd.h.
351
3522003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * Makefile.am: Merge-in include/Makefile.am.
355        Reflect changes to bsp.am.
356        * include/Makefile.am: Remove.
357        * configure.ac: Reflect changes above.
358
3592003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * bsp_specs: Remove *lib:.
362
3632003-09-04      Joel Sherrill <joel@OARcorp.com>
364
365        * clock/clockdrv.c, console/conscfg.c, include/bsp.h,
366        startup/bspstart.c, startup/gdb-support.c, timer/timer.c: URL for
367        license changed.
368
3692003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * Makefile.am: Reflect having moved aclocal/.
372
3732003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * Makefile.am: Reflect having moved automake/.
376        * clock/Makefile.am: Reflect having moved automake/.
377        * console/Makefile.am: Reflect having moved automake/.
378        * include/Makefile.am: Reflect having moved automake/.
379        * start/Makefile.am: Reflect having moved automake/.
380        * startup/Makefile.am: Reflect having moved automake/.
381        * timer/Makefile.am: Reflect having moved automake/.
382        * wrapup/Makefile.am: Reflect having moved automake/.
383
3842003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        PR 452/bsps
387        * startup/Makefile.am: Remove USE_INIT_FINI.
388
3892003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * bsp_specs: Remove -D__USE_INIT_FINI__.
392        Remove *.cpp (Now unused).
393
3942003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
397
3982003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        PR 445/bsps
401        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
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-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
420 
421        * bsp_specs: Added crtbegin/crtend and INIT_FINI for C++ support.
422        * linkcmds: Added .init, .fini & related sections.
423
4242002-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
427        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
428        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
429        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
430        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
431
4322002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
433
434        * start/Makefile.am: Use install-data-local to install startfile.
435
4362002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
439
4402002-11-01      Joel Sherrill <joel@OARcorp.com>
441
442        * startup/gdb-support.c, startup/linkcmds: Removed warnings.
443
4442002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * .cvsignore: Reformat.
447        Add autom4te*cache.
448        Remove autom4te.cache.
449
4502002-08-21      Joel Sherrill <joel@OARcorp.com>
451
452        * bsp_specs: Added support for -nostdlibs.
453
4542002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
457        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
458        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
459        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
460        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
461        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
462
4632002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
464
465        * start/Makefile.am: Eliminate PGM.
466        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
467
4682002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
471
4722002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
475        Remove $(OBJS) from all-local.
476
4772002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * wrapup/Makefile.am: Add $(LIB) to all-local.
480
4812002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
484
4852002-06-25      Joel Sherrill <joel@OARcorp.com>
486
487        * Thomas Doerfler <Thomas.Doerfler@imd-systems.de> added m68k
488        support to the shared gdb stub glue thus moving some of the
489        gdbstub support to a higher level.
490        * startup/Makefile.am: Modified to reflect above.
491
4922002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * configure.ac:
495        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
496        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
497        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
498        * Makefile.am: Remove AUTOMAKE_OPTIONS.
499        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
500        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
501        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
502        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
503        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
504        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
505
5062001-03-08      Joel Sherrill <joel@OARcorp.com>
507
508        * start/start.S, startup/bspstart.c: Removed warnings.
509
5102002-03-05      Greg Menke <gregory.menke@gsfc.nasa.gov>
511
512        * startup/gdb-support.c: Added calls into the mips-support gdb stub
513        for configuring the memory regions.  Any bsp that wants to use the
514        gdbstub will need to do something similar.
515        * startup/Makefile.am: Added shared/gdbstub directory to include path.
516
5172002-02-27      Greg Menke <gregory.menke@gsfc.nasa.gov>
518
519        * start/start.S: Added kseg1 test to enable cache flush code
520        * bsp_specs: Added -qnostartfile to disable including bsp's start.o
521        * startup/bspstart.c: Made clear_cache actually work, tweaked cpu
522        init to only turn on whats needed.
523        * startup/gdb-support.c: Added calls to uart 2 for gdb stub I/O and
524        a handy init function.
525
5262002-02-08      Joel Sherrill <joel@OARcorp.com>
527
528        * startup/Makefile.am: Now compile the gdb stub.
529        * startup/bspstart.c: Fixed header block.
530        * startup/gdb-support.c: New file in stub state.
531
5322001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
533
534        * include/lr33000.h, include/lr330x0.h, include/r3000.h, start/mg5.h:
535        New files missed in previous commit.
536        * timer/timer.c: Use rtems/bspIo.h not just bspIo.h.
537
5382001-02-01      Greg Menke <gregory.menke@gsfc.nasa.gov>
539
540        * Update of BSP to address problems restarting, provide more
541        information during boot, and better handle ROM vs RAM images.
542        * README, include/bsp.h, start/regs.S, start/start.S,
543        startup/bspstart.c, startup/linkcmds, timer/timer.c: Updated
544
5452002-02-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
548
5492002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
550
551        * console/conscfg.c: Include rtems/bspIo.h instead of bspIo.h.
552        * timer/timer.c: Include rtems/bspIo.h instead of bspIo.h.
553
5542001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
557
5582001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
561        * configure.in: Remove.
562        * configure.ac: New file, generated from configure.in by autoupdate.
563
5642001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
565
566        * include/Makefile.am: Use 'CLEANFILES ='.
567        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
568
5692001-05-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * configure.in: Add bspopts.h.
572        * include/bsp.h: Include bspopts.h.
573        * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*.
574        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
575
5762001-05-24      Greg Menke <gregory.menke@gsfc.nasa.gov>
577
578        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
579        * start/regs.S, start/start.S: Now works on Mongoose-V.  Missed
580        in previous patch.
581
5822001-05-22      Greg Menke <gregory.menke@gsfc.nasa.gov>
583
584        * Assisted in design and debug by Joel Sherrill <joel@OARcorp.com>.
585        * clock/clockdrv.c, console/conscfg.c: Corrected.
586        * include/bsp.h: Support for tm27 and addition of CPU_CLOCK_RATE.
587        * startup/bspstart.c: Properly set initial status register and
588        pending interrupts.
589        * timer/timer.c: Works now.
590
5912001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
592
593        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
594
5952001-05-07      Joel Sherrill <joel@OARcorp.com>
596
597        * console/conscfg.c: Added an entry for the second
598        serial port.
599
6002001-04-20      Joel Sherrill <joel@OARcorp.com>
601
602        * clock/clockdrv.c: Account for the fact that ClockRate is
603        in cycles not megahertz.
604
6052001-04-16      Joel Sherrill <joel@OARcorp.com>
606
607        * start/start.S, startup/bspstart.c, startup/linkcmds:
608        Cleanup that was not merged from the simple non-RTEMS program.
609
6102001-04-16      Joel Sherrill <joel@OARcorp.com>
611
612        * start/start.S, startup/bspstart.c, startup/linkcmds:
613        Modifications made with Gregory Menke <gregory.menke@gsfc.nasa.gov>
614        as he debugged this BSP using a logic analyzer.
615
6162001-03-14      Joel Sherrill <joel@OARcorp.com>
617
618        * clock/clockdrv.c, console/conscfg.c, include/bsp.h, start/start.S,
619        startup/bspstart.c, timer/timer.c: Comments corrected.
620
6212001-02-22      Joel Sherrill <joel@OARcorp.com>
622
623        * The Generic Mongoose-V BSP uses only the peripherals found on
624        the Synova Mongoose-V CPU.  This is a radiation hardened CPU
625        based on the LSI Logic 33K.
626        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.in,
627        clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c,
628        console/.cvsignore, console/Makefile.am, console/conscfg.c,
629        include/.cvsignore, include/Makefile.am, include/bsp.h,
630        start/.cvsignore, start/Makefile.am, start/regs.S, start/start.S,
631        startup/.cvsignore, startup/Makefile.am, startup/bspstart.c,
632        startup/linkcmds, timer/.cvsignore, timer/Makefile.am, timer/timer.c,
633        wrapup/.cvsignore, wrapup/Makefile.am: New files.
634
Note: See TracBrowser for help on using the repository browser.