source: rtems/c/src/lib/libbsp/mips/jmr3904/ChangeLog @ 4909a30

4.104.115
Last change on this file since 4909a30 was 4909a30, checked in by Joel Sherrill <joel.sherrill@…>, on 09/10/08 at 21:35:37

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

  • include/bsp.h: Review of all bsp_cleanup() implementations. In this phase, all prototypes were removed from bsp.h and empty implementations were removed and made to use the shared stub.
  • Property mode set to 100644
File size: 18.6 KB
Line 
12008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
4        phase, all prototypes were removed from bsp.h and empty
5        implementations were removed and made to use the shared stub.
6
72008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
8
9        * timer/timer.c: Convert to "bool".
10
112008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * timer/timer.c: Eliminate empty function from every benchmark timer
14        driver. Fix spelling.
15
162008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * timer/timer.c: Rename timer driver methods to follow RTEMS
19        programming conventions.
20
212008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * timer/timer.c: Add missing prototypes.
24
252008-07-24      Sebastian Huber <sebastian.huber@embedded-brains.de>
26
27        * startup/bspstart.c: Changed bsp_get_workarea() to
28        bsp_get_work_area() and added support for an optional separate heap
29        area.
30
312008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * configure.ac, startup/bspstart.c: Add capability for bootcard.c BSP
34        Initialization Framework to ask the BSP where it has memory for the
35        RTEMS Workspace and C Program Heap. These collectively are referred
36        to as work area. If the BSP supports this, then it does not have to
37        include code to split the available memory between the two areas.
38        This reduces the amount of code in the BSP specific bspstart.c file.
39        Additionally, the shared framework can initialize the C Library, call
40        rtems_debug_enable(), and dirty the work area memory. Until most/all
41        BSPs support this new capability, if the BSP supports this, it should
42        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
43        When the transition is complete, this autoconf macro can be removed.
44
452008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
46
47        * Makefile.am: Rework to avoid .rel files.
48
492008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
50
51        * startup/bspstart.c: Refactored and renamed initialization routines to
52        rtems_initialize_data_structures, rtems_initialize_before_drivers,
53        rtems_initialize_device_drivers, and
54        rtems_initialize_start_multitasking. This opened the sequence up so
55        that bootcard() could provide a more robust and flexible framework
56        which is easier to explain and understand. This also lays the
57        groundwork for sharing the division of available memory between the
58        RTEMS workspace and heap and the C library initialization across all
59        BSPs.
60
612008-04-04      Joel Sherrill <joel.sherrill@oarcorp.com>
62
63        * startup/linkcmds: Increase heap to run ACATS.
64
652008-03-11      Joel Sherrill <joel.sherrill@oarcorp.com>
66
67        * startup/linkcmds: Increase default C Program Heap size to be able to
68        run Ada ACATS testsuite.
69
702008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
71
72        * startup/linkcmds: Add wildcard to gcc_except_table section so
73        programs compiled with gcc 4.3.x can link.
74
752007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
78        Configuration Table. Use the RTEMS provided accessor macros to obtain
79        configuration fields.
80
812007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
84        Configuration Table. Eliminate CPU Table from all ports. Delete
85        references to CPU Table in all forms.
86
872007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
90        Table fields to the Configuration Table. This included
91        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
92        do_zero_of_workspace, extra_mpci_receive_server_stack,
93        stack_allocate_hook, and stack_free_hook. As a side-effect of this
94        effort some multiprocessing code was made conditional and some style
95        clean up occurred.
96
972007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
98
99        * bsp_specs: Remove qrtems_debug.
100
1012007-04-09      Ralf Corsépius <ralf.corsepius@rtems.org>
102
103        * bsp_specs: Use nostdlib instead of nostdlibs (bogus).
104        * bsp_specs: Use old_link for -qrtems (Prevents *.link from killing
105        endianness).
106
1072007-03-28      Joel Sherrill <joel@OARcorp.com>
108
109        * Makefile.am: Modify to avoid pulling in too much into minimum
110        executable.
111
1122006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
113
114        * configure.ac: New BUG-REPORT address.
115
1162006-11-17      Joel Sherrill <joel@OARcorp.com>
117
118        * clock/clockdrv.c: Add copyright.
119
1202006-11-15      Joel Sherrill <joel@OARcorp.com>
121
122        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
123        file and simplified initialization.
124
1252006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
126
127        * Makefile.am: Remove superfluous -DASM.
128
1292006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
130
131        * configure.ac: Require autoconf-2.60. Require automake-1.10.
132
1332006-02-08      Joel Sherrill <joel@OARcorp.com>
134
135        * startup/linkcmds: Add sections required by newer gcc versions.
136
1372006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
138
139        * Makefile.am: Add preinstall.am.
140
1412005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
142
143        * include/bsp.h: New header guard.
144
1452005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
146
147        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
148
1492005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
150
151        * Makefile.am: Remove build-variant support.
152
1532004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
154
155        * configure.ac: Require automake > 1.9.
156
1572004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
158
159        PR 610/bsps
160        * Makefile.am: Add include/tm27.h, Cosmetics.
161        * include/tm27.h: Final cosmetics.
162
1632004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
164
165        * include/bsp.h: Split out tmtest27 support.
166        * include/tm27.h: New.
167
1682004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
169
170        PR 613/bsps
171        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
172
1732004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
174
175        PR 614/bsps
176        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
177
1782004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
179
180        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
181        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
182        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
183        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
184
1852004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
186
187        * clock/clockdrv.c, include/bsp.h, startup/bspstart.c,
188        timer/timer.c: Convert to using c99 fixed size types.
189
1902004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
191
192        * Makefile.am: Reflect changes to bsp.am.
193        Preinstall dist_project_lib*.
194
1952004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
196
197        * Makefile.am: Reflect changes to bsp.am.
198
1992004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
200
201        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
202
2032004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
204
205        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
206        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
207        wrapup/Makefile.am. Use automake compilation rules.
208        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
209        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove.
210        * configure.ac: Reflect changes above.
211
2122004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
213
214        PR 566/bsps
215        * start/regs.S: Fix broken comment.
216        * start/start.S: Convert asm-style comments to c-style comments.
217
2182004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
219
220        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
221        Add RTEMS_PROG_CCAS.
222
2232004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
224
225        * Makefile.am: Add PREINSTALL_DIRS.
226
2272004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Remove times from EXTRA_DIST (Non-existant).
230        * startup/Makefile.am: Remove exit.c, setvec.c from EXTRA_DIST.
231        * console/Makefile.am: Remove console.c from EXTRA_DIST.
232        * wrapup/Makefile.am: Reflect changes to libcpu.
233
2342004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
235
236        * start/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
237        Add PRE/TMPINSTALL_FILES to CLEANFILES.
238        * startup/Makefile.am: Ditto.
239
2402004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
241
242        * wrapup/Makefile.am: Eliminate $(LIB).
243        Use noinst_DATA to trigger building libbsp.a.
244
2452003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
246
247        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
248        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
249
2502003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
253        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
254
2552003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
258
2592003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * start/Makefile.am: Misc cleanups and fixes.
262        * startup/Makefile.am: Misc cleanups and fixes.
263        * wrapup/Makefile.am: Misc cleanups and fixes.
264
2652003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Add preinstallation dirstamp support.
268        * clock/Makefile.am: Cosmetics.
269        * console/Makefile.am: Cosmetics.
270        * startup/Makefile.am: Cosmetics.
271        * timer/Makefile.am: Cosmetics.
272        * wrapup/Makefile.am: Cosmetics.
273
2742003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
275
276        * clock/Makefile.am: Remove all-local: $(ARCH).
277        * console/Makefile.am: Remove all-local: $(ARCH).
278        * start/Makefile.am: Remove all-local: $(ARCH).
279        * startup/Makefile.am: Remove all-local: $(ARCH).
280        * timer/Makefile.am: Remove all-local: $(ARCH).
281        * wrapup/Makefile.am: Remove all-local: $(ARCH).
282
2832003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * Makefile.am: Merge-in include/Makefile.am.
286        Reflect changes to bsp.am.
287        * include/Makefile.am: Remove.
288        * configure.ac: Reflect changes above.
289
2902003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * bsp_specs: Remove *lib:.
293
2942003-09-04      Joel Sherrill <joel@OARcorp.com>
295
296        * console/console-io.c, include/bsp.h, startup/bspclean.c,
297        startup/bspstart.c, timer/timer.c, tools/runtest: URL for license
298        changed.
299
3002003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * Makefile.am: Reflect having moved aclocal/.
303
3042003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Reflect having moved automake/.
307        * clock/Makefile.am: Reflect having moved automake/.
308        * console/Makefile.am: Reflect having moved automake/.
309        * include/Makefile.am: Reflect having moved automake/.
310        * start/Makefile.am: Reflect having moved automake/.
311        * startup/Makefile.am: Reflect having moved automake/.
312        * timer/Makefile.am: Reflect having moved automake/.
313        * wrapup/Makefile.am: Reflect having moved automake/.
314
3152003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        PR 452/bsps
318        * bsp_specs: Remove -D__USE_INIT_FINI__.
319        Remove *.cpp (Now unused).
320
3212003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
324
3252003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        PR 445/bsps
328        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
329
3302003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * configure.ac: Remove AC_CONFIG_AUX_DIR.
333
3342003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
337
3382003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * configure.ac: AC_PREREQ(2.57).
341
3422003-01-20      Joel Sherrill <joel@OARcorp.com>
343
344        * startup/linkcmds*: Add FreeBSD sysctl() sections.
345
3462002-12-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
347 
348        * bsp_specs: Added crtbegin/crtend and INIT_FINI for C++ support.
349        * linkcmds: Added .init, .fini & related sections.
350
3512002-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
354        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
355        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
356        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
357        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
358
3592002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * start/Makefile.am: Use install-data-local to install startfile.
362
3632002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
366
3672002-11-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
368
369        * configure.ac: Remove RTEMS_OUTPUT_BUILD_SUBDIRS. Cosmetical
370        changes.
371
3722002-11-01      Joel Sherrill <joel@OARcorp.com>
373
374        * startup/bspclean.c, startup/bspstart.c: Removed warnings.
375
3762002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * .cvsignore: Reformat.
379        Add autom4te*cache.
380        Remove autom4te.cache.
381
3822002-08-21      Joel Sherrill <joel@OARcorp.com>
383
384        * startup/linkcmds: Move .init section after text section so
385        C+ global constructors work.
386
3872002-08-21      Joel Sherrill <joel@OARcorp.com>
388
389        * bsp_specs: Added support for -nostdlibs.
390
3912002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
394        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
395        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
396        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
397        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
398        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
399
4002002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * start/Makefile.am: Eliminate PGM.
403        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
404
4052002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
408
4092002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
410
411        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
412        Remove $(OBJS) from all-local.
413
4142002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * wrapup/Makefile.am: Add $(LIB) to all-local.
417
4182002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
421
4222002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * configure.ac:
425        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
426        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
427        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
428        * Makefile.am: Remove AUTOMAKE_OPTIONS.
429        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
430        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
431        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
432        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
433        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
434        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
435
4362002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
439
4402001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
443
4442001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
447        * configure.in: Remove.
448        * configure.ac: New file, generated from configure.in by autoupdate.
449
4502001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * include/Makefile.am: Use 'CLEANFILES ='.
453        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
454
4552001-05-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * configure.in: Add bspopts.h.
458        * include/bsp.h: Include bspopts.h.
459        * include/.cvsignore: Add bspopts.h*, coverhd.h, stamp-h*.
460        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
461
4622001-05-11      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
463
464        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
465
4662001-05-11      Joel Sherrill <joel@OARcorp.com>
467
468        * tools/runtest: Add functionality to avoid letting simulator
469        run too long.
470
4712001-04-20      Joel Sherrill <joel@OARcorp.com>
472
473        * include/bsp.h (Clear_tm27_intr): Stop the timer and disable
474        the interrupt.  This was not quite right before and we were
475        getting uncontrolled interrupt nesting in tm27.
476        * timer/timer.c (Timer_Initialize): Added an extra reset and
477        changed the ITMR register so we will never get an interrupt.
478        (Read_timer): Fixed so the timer actually stops before it
479        is read.  Before some times reported were outraguously high.
480        * start/start.S: Major clean including using stack in linkcmds,
481        deleting unused code, and zeroing the BSS using the linkcmds
482        information.
483        * startup/linkcmds: Put heap in lower memory than workspace
484        and move _clear_end so both are zeroed.
485
4862001-01-12      Joel Sherrill <joel@OARcorp.com>
487
488        * include/bsp.h, timer/timer.c: Updated so timer appears to
489        work and support tm27.  I would prefer to time a software
490        interrupt rather than an use an extra timer though.
491
4922001-01-09      Joel Sherrill <joel@OARcorp.com>
493
494        * clock/clockdrv.c: Clean up.
495        * include/bsp.h: Uncomment and fix set_vector() prototype.
496
4972001-01-03      Joel Sherrill <joel@OARcorp.com>
498
499        * console/console-io.c: Removed unused variable initialized.
500
5012001-01-03      Joel Sherrill <joel@OARcorp.com>
502
503        * clock/Makefile.am: Fixed reference to ckinit.c.
504        * clock/clockdrv.c: Enabled fast idle.
505        * console/console-io.c: Added console_initialize_hardware().
506
5072000-12-19      Joel Sherrill <joel@OARcorp.com>
508
509        * timer: New subdirectory.
510        * timer/.cvsignore, timer/Makefile.am, timer/timer.c: New files.
511        * tools/ChangeLog: New file.
512
5132000-12-19      Joel Sherrill <joel@OARcorp.com>
514
515        * Makefile.am: Added tools subdirectory and removed commented out line.
516        * configure.in: Added tools subdirectory.
517        * tools: New subdirectory.
518        * tools/.cvsignore, tools/Makefile.am, tools/configure.in,
519        tools/runtest: New files -- based on powerpc/psim.
520        * clock/clockdrv.c: Guessed new value for clock tick.  Need to
521        add fast idle support.
522        * include/bsp.h: tm27 support initiated.
523        * Most tests appear to run correctly!
524
5252000-12-13      Joel Sherrill <joel@OARcorp.com>
526
527        * README: Updated.  We are now vectoring a clock tick ISR handler.
528        But RTEMS is not returning from the ISR properly.
529        * clock/clockdrv.c: Now causes interrupts but has not been calibrated.
530        * include/bsp.h: Use <libcpu/tx3904.h>
531        * startup/Makefile.am: Add setvec.c from shared.
532        * startup/bspstart.c: Initialize the status register (SR) so
533        no interrupts are masked but global interrupts (SR_IEC) are off.
534        Added call to install the ISR prologue code.
535        * wrapup/Makefile.am: Pick up more pieces from libcpu.
536
5372000-12-11      Joel Sherrill <joel@OARcorp.com>
538
539        * startup/bspclean.c: New file to explicitly invoke _sys_exit().
540        * README: Updated.
541
5422000-12-06      Joel Sherrill <joel@OARcorp.com>
543
544        * README: Updated to reflect status.
545        * startup/linkcmds: Added .ctor and .dtor sections to no avail.
546
5472000-11-30      Joel Sherrill <joel@OARcorp.com>
548
549        * README: Updated to reflect current status.  Misaligned reference
550        during initialization may be compiler problem.
551        * console/console-io.c: Added support for printk().
552        * startup/linkcmds: Reserve 512K for RTEMS Workspace.
553
5542000-11-27      Joel Sherrill <joel@OARcorp.com>
555
556        * startup/linkcmds: Fix typo and add extra 0 to base address.
557        Now runs until printf() tries to put a character and then
558        it locks up checking a status bit that does not change.
559
5602000-11-25      Joel Sherrill <joel@OARcorp.com>
561
562        * The JMR BSP is for a Toshiba TX39 evaluation board but
563        can also be used with the mips simulator in gdb.
564        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs,
565        configure.in, clock/.cvsignore, clock/Makefile.am,
566        clock/clockdrv.c, console/.cvsignore, console/Makefile.am,
567        console/console-io.c, include/.cvsignore,
568        include/Makefile.am, include/bsp.h, start/.cvsignore,
569        start/Makefile.am, start/regs.S, start/start.S,
570        startup/.cvsignore, startup/Makefile.am, startup/bspstart.c,
571        startup/linkcmds, wrapup/.cvsignore, wrapup/Makefile.am: New files.
Note: See TracBrowser for help on using the repository browser.