source: rtems/c/src/lib/libbsp/sparc/erc32/ChangeLog @ b39fdd9

4.104.115
Last change on this file since b39fdd9 was b39fdd9, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/08 at 14:45:40

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

  • Makefile.am: bsp_cleanup() had the same code which was executed when you returned from boot_card() to start.S. So just use the stub bsp_cleanup() implementation and remove a file.
  • Property mode set to 100644
File size: 22.5 KB
Line 
12008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am: bsp_cleanup() had the same code which was executed when
4        you returned from boot_card() to start.S. So just use the stub
5        bsp_cleanup() implementation and remove a file.
6
72008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * include/bsp.h: Remove unnecessary boilerplate comments.
10
112008-09-17      Joel Sherrill <joel.sherrill@oarcorp.com>
12
13        * startup/linkcmds: Add start symbol to eliminate warning.
14
152008-09-17      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * startup/linkcmds: Work Area should start on 16 byte boundary.
18
192008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
20
21        * Makefile.am: Use shared bsp_get_work_area() in its own file and rely
22        on BSP Framework to perform more initialization.
23
242008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
27        phase, all prototypes were removed from bsp.h and empty
28        implementations were removed and made to use the shared stub.
29
302008-09-05      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * console/console.c, timer/timer.c: Convert to "bool".
33
342008-09-03      Joel Sherrill <joel.sherrill@OARcorp.com>
35
36        * timer/timer.c: Convert using "bool".
37
382008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * timer/timer.c: Eliminate empty function from every benchmark timer
41        driver. Fix spelling.
42
432008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
44
45        * timer/timer.c: Rename timer driver methods to follow RTEMS
46        programming conventions.
47
482008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
49
50        * gnatsupp/gnatsupp.c, timer/timer.c: Add missing prototypes.
51
522008-08-08      Joel Sherrill <joel.sherrill@OARcorp.com>
53
54        * startup/linkcmds: All SPARC executables should include
55        rtems_get_version_string so the monitor used can provide RTEMS
56        awareness based upon the version.
57
582008-08-05      Joel Sherrill <joel.sherrill@OARcorp.com>
59
60        PR 1294/bsps
61        * startup/spurious.c: Correct prototype and usage of
62        sparc_disable_interrupts.
63
642008-08-04      Joel Sherrill <joel.sherrill@OARcorp.com>
65
66        PR 1294/bsps
67        * startup/spurious.c: Correct prototype and usage of
68        sparc_disable_interrupts.
69
702008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
71
72        * Makefile.am, configure.ac: Add capability for bootcard.c BSP
73        Initialization Framework to ask the BSP where it has memory for the
74        RTEMS Workspace and C Program Heap. These collectively are referred
75        to as work area. If the BSP supports this, then it does not have to
76        include code to split the available memory between the two areas.
77        This reduces the amount of code in the BSP specific bspstart.c file.
78        Additionally, the shared framework can initialize the C Library, call
79        rtems_debug_enable(), and dirty the work area memory. Until most/all
80        BSPs support this new capability, if the BSP supports this, it should
81        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
82        When the transition is complete, this autoconf macro can be removed.
83
842008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * clock/ckinit.c: Add nanoseconds clock tick granularity support.
87
882008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
89
90        * Makefile.am: Remove all references to console_reserve_resources and
91        termios_reserve_resources.
92        * console/consolereserveresources.c: Removed.
93
942008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * startup/linkcmds: Add wildcard to gcc_except_table section so
97        programs compiled with gcc 4.3.x can link.
98
992007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * clock/ckinit.c, include/bsp.h: Eliminate copies of the Configuration
102        Table. Use the RTEMS provided accessor macros to obtain configuration
103        fields.
104
1052007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * include/bsp.h: Move interrupt_stack_size field from CPU Table to
108        Configuration Table. Eliminate CPU Table from all ports. Delete
109        references to CPU Table in all forms.
110
1112007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
112
113        * Makefile.am: Moved most of the remaining CPU Table fields to the
114        Configuration Table. This included pretasking_hook, predriver_hook,
115        postdriver_hook, idle_task, do_zero_of_workspace,
116        extra_mpci_receive_server_stack, stack_allocate_hook, and
117        stack_free_hook. As a side-effect of this effort some multiprocessing
118        code was made conditional and some style clean up occurred.
119
1202007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
121
122        * clock/ckinit.c, include/bsp.h: Fix spacing.
123
1242007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * clock/ckinit.c: Formatting.
127
1282007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
129
130        * console/debugputs.c, include/bsp.h, startup/spurious.c: Remove debug
131        print methods that are redundant with prntk and replace their use
132        with printk.
133
1342007-05-03      Joel Sherrill <joel@OARcorp.com>
135
136        * startup/linkcmds: Handle .data.* sections
137
1382007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
139
140        * bsp_specs: Remove qrtems_debug.
141
1422007-03-28      Joel Sherrill <joel@OARcorp.com>
143
144        * clock/ckinit.c: Add support to the Clock driver template for
145        rtems_clock_set_nanoseconds_extension and the potential for TOD and
146        timestamps accurate to the nanosecond. On this BSP however, it is
147        only accurate to the microsecond.
148
1492007-03-28      Joel Sherrill <joel@OARcorp.com>
150
151        PR 1233/bsps
152        * Makefile.am, console/console.c, console/debugputs.c: Move printk
153        support code into debug IO file so you do not get the entire console
154        driver when you do not want it.
155
1562006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * configure.ac: New BUG-REPORT address.
159
1602006-11-17      Joel Sherrill <joel@OARcorp.com>
161
162        * timer/timer.c: Update timer overhead for start/stop.
163
1642006-11-16      Joel Sherrill <joel@OARcorp.com>
165
166        * clock/ckinit.c, console/console.c: Use common clock driver template
167        and eliminate all fast idle code specific to this BSP. This
168        eliminates a fair amount of code in the BSP clock driver and
169        bsp_startup. The LEON3 has to do a scan of the AMBA bus to find the
170        timer so I added the new hook Clock_driver_support_find_timer to
171        support this. In general, there was some clean up to the file headers
172        of various files.
173
1742006-11-15      Joel Sherrill <joel@OARcorp.com>
175
176        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
177        file and simplified initialization.
178
1792006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
180
181        * Makefile.am: Remove superfluous -DASM.
182
1832006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
184
185        * configure.ac: Require autoconf-2.60. Require automake-1.10.
186
1872006-06-24      Joel Sherrill <joel@OARcorp.com>
188
189        * startup/linkcmds: Add .rela.dyn sections.
190
1912006-06-22      Joel Sherrill <joel@OARcorp.com>
192
193        PR 1100/bsps
194        * console/debugputs.c: Remove redundant return.
195
1962006-03-08      Joel Sherrill <joel@OARcorp.com>
197
198        * startup/linkcmds: Add .gnu.linkonce.b.* section.
199
2002006-02-08      Joel Sherrill <joel@OARcorp.com>
201
202        * startup/linkcmds: Add sections required by newer gcc versions.
203
2042006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
205
206        * configure.ac: Remove explicit ampolish3 support (now in
207        RTEMS_BSP_CONFIGURE).
208
2092006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
210
211        * configure.ac: Add ampolish3 support.
212        * Makefile.am: Add preinstall.am.
213
2142006-01-10      Joel Sherrill <joel@OARcorp.com>
215
216        * startup/linkcmds: Merge from 4.6 branch. Now the copy_data loop
217        works.
218
2192006-01-10      Joel Sherrill <joel@OARcorp.com>
220
221        * configure.ac: Add configuration for ENABLE_SIS_QUIRKS.
222
2232005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
224
225        * include/bsp.h: New header guard.
226
2272005-01-20      Joel Sherrill <joel@OARcorp.com>
228
229        * bsp_specs: Conditionalize inclusion of crtend/crtn.
230
2312005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
232
233        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
234
2352005-01-06      Joel Sherrill <joel@OARcorp.com>
236
237        * Makefile.am: Fix typo.
238
2392005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
240
241        * Makefile.am: Remove build-variant support.
242
2432004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
244
245        * configure.ac: Require automake > 1.9.
246
2472004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
248
249        PR 610/bsps
250        * Makefile.am: Add include/tm27.h, Cosmetics.
251        * include/tm27.h: Final cosmetics.
252
2532004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
254
255        * include/bsp.h: Split out tmtest27 support.
256        * include/tm27.h: New.
257
2582004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
259
260        PR 613/bsps
261        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
262
2632004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
264
265        PR 614/bsps
266        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
267
2682004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
269
270        * startup/boardinit.S: Include <rtems/asm.h> instead of <asm.h>.
271        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
272        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
273        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
274        * console/console.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
275
2762004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
277
278        * clock/ckinit.c, console/console.c, console/debugputs.c,
279        erc32sonic/erc32sonic.c, include/bsp.h, include/erc32.h,
280        startup/setvec.c, startup/spurious.c, timer/timer.c: Convert to
281        using c99 fixed size types.
282
2832004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * Makefile.am: Reflect changes to bsp.am.
286        Preinstall dist_project_lib*.
287
2882004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * Makefile.am: Reflect changes to bsp.am.
291
2922004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
295
2962004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * Makefile.am: Pickup files from ../../sparc/shared instead of
299        ../shared. Reformat.
300
3012004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * Makefile.am: Cosmetics.
304
3052004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * Makefile.am: Cosmetics.
308
3092004-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * Makefile.am: Merge-in clock/Makefile.am, erc32sonic/Makefile.am,
312        startup/Makefile.am, console/Makefile.am, gnatsupp/Makefile.am,
313        timer/Makefile.am, wrapup/Makefile.am.
314        Use automake compilation rules.
315        * clock/Makefile.am, erc32sonic/Makefile.am, startup/Makefile.am,
316        console/Makefile.am, gnatsupp/Makefile.am, timer/Makefile.am,
317        wrapup/Makefile.am: Remove.
318        * configure.ac: Reflect changes above.
319
3202004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * Makefile.am: Add PREINSTALL_DIRS.
323
3242004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * wrapup/Makefile.am: Reflect changes to libcpu.
327
3282004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
329
330        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
331        Add PRE/TMPINSTALL_FILES to CLEANFILES.
332        * startup/Makefile.am: Ditto.
333
3342004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * gnatsupp/Makefile.am: Eliminate VPATH.
337
3382004-01-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * start/.cvsignore: Remove.
341
3422004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * start/Makefile.am: Remove.
345        * Makefile.am: Merge-in start/Makefile.am.
346        * configure.ac: Reflect changes above.
347
3482004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * wrapup/Makefile.am: Eliminate $(LIB).
351        Use noinst_DATA to trigger building libbsp.a.
352
3532003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * start/Makefile.am: Eliminate VPATH.
356
3572003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
360        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
361
3622003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
365        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
366        * wrapup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
367
3682003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
371
3722003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * start/Makefile.am: Misc cleanups and fixes.
375        * startup/Makefile.am: Misc cleanups and fixes.
376        * wrapup/Makefile.am: Misc cleanups and fixes.
377
3782003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        * Makefile.am: Add dirstamp support to preinstallation.
381        * clock/Makefile.am: Cosmetics.
382        * console/Makefile.am: Cosmetics.
383        * erc32sonic/Makefile.am: Cosmetics.
384        * gnatsupp/Makefile.am: Cosmetics.
385        * start/Makefile.am: Cosmetics.
386        * startup/Makefile.am: Cosmetics.
387        * timer/Makefile.am: Cosmetics.
388        * wrapup/Makefile.am: Cosmetics.
389
3902003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * clock/Makefile.am: Remove all-local: $(ARCH).
393        * console/Makefile.am: Remove all-local: $(ARCH).
394        * erc32sonic/Makefile.am: Remove all-local: $(ARCH).
395        * gnatsupp/Makefile.am: Remove all-local: $(ARCH).
396        * start/Makefile.am: Remove all-local: $(ARCH).
397        * startup/Makefile.am: Remove all-local: $(ARCH).
398        * timer/Makefile.am: Remove all-local: $(ARCH).
399        * wrapup/Makefile.am: Remove all-local: $(ARCH).
400
4012003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * Makefile.am: Fix preinstallation of include/coverhd.h.
404
4052003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * Makefile.am: Merge-in include/Makefile.am.
408        Reflect changes to bsp.am.
409        * include/Makefile.am: Remove.
410        * configure.ac: Reflect changes above.
411
4122003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * bsp_specs: Remove *lib:.
415
4162003-09-04      Joel Sherrill <joel@OARcorp.com>
417
418        * clock/ckinit.c, console/console.c, console/consolereserveresources.c,
419        console/debugputs.c, include/bsp.h, include/coverhd.h,
420        include/erc32.h, startup/erc32mec.c, startup/setvec.c, timer/timer.c:
421        URL for license changed.
422
4232003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * Makefile.am: Reflect having moved aclocal/.
426
4272003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * Makefile.am: Reflect having moved automake/.
430        * clock/Makefile.am: Reflect having moved automake/.
431        * console/Makefile.am: Reflect having moved automake/.
432        * erc32sonic/Makefile.am: Reflect having moved automake/.
433        * gnatsupp/Makefile.am: Reflect having moved automake/.
434        * include/Makefile.am: Reflect having moved automake/.
435        * start/Makefile.am: Reflect having moved automake/.
436        * startup/Makefile.am: Reflect having moved automake/.
437        * timer/Makefile.am: Reflect having moved automake/.
438        * wrapup/Makefile.am: Reflect having moved automake/.
439
4402003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        PR 452/bsps
443        * startup/Makefile.am: Remove USE_INIT_FINI.
444
4452003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
448
4492003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        PR 445/bsps
452        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
453        Remove cpp, old_cpp (now unused).
454
4552003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * configure.ac: Remove AC_CONFIG_AUX_DIR.
458
4592003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
462
4632003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
464
465        * configure.ac: AC_PREREQ(2.57).
466
4672003-01-20      Joel Sherrill <joel@OARcorp.com>
468
469        * startup/linkcmds*: Add FreeBSD sysctl() sections.
470
4712002-12-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
474        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
475        * erc32sonic/Makefile.am: Don't include @RTEMS_BSP@.cfg.
476        * gnatsupp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
477        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
478        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
479        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
480
4812002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * start/Makefile.am: Use install-data-local to install startfile.
484
4852002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
488
4892002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * .cvsignore: Reformat.
492        Add autom4te*cache.
493        Remove autom4te.cache.
494
4952002-08-21      Joel Sherrill <joel@OARcorp.com>
496
497        * bsp_specs: Added support for -nostdlibs.
498
4992002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
502        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
503
5042002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
507        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
508        * erc32sonic/Makefile.am: Use .$(OBJEXT) instead of .o.
509        * gnatsupp/Makefile.am: Use .$(OBJEXT) instead of .o.
510        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
511        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
512        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
513
5142002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * start/Makefile.am: Eliminate PGM.
517        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
518
5192002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
522
5232002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
526        Remove $(OBJS) from all-local.
527
5282002-07-01      Joel Sherrill <joel@OARcorp.com>
529
530        * startup/erc32mec.c: New file.
531        * startup/Makefile.am: Reflect above.
532        * include/erc32.h: Converted SCORE_EXTERN to extern.
533        * tools/runtest.in: Lengthened timeout on test runs.
534
5352002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
538
5392001-05-09      Joel Sherrill <joel@OARcorp.com>
540
541        * startup/linkcmds: In support of gcc 3.1, added one of more
542        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
543        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
544        and direction of segments to memory regions may also have been
545        addressed.  This was a sweep across all BSPs.
546 
5472001-04-26      Joel Sherrill <joel@OARcorp.com>
548
549        * include/bsp.h: Change SIS to ERC32_BSP.
550 
5512002-04-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
552
553        * configure.ac: Remove BSPOPTS_*(NO_TABLE_MOVE).
554        Remove BSPOPTS_*(FPU_REVB).
555        * wrapup/Makefile.am: Remove tbr.
556
5572002-03-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * configure.ac: Add BSPOPTS_*(NO_TABLE_MOVE).
560        Add BSPOPTS_*(FPU_REVB).
561        * wrapup/Makefile.am: Add tbr.
562
5632002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
564
565        * configure.ac:
566        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
567        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
568        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
569        * Makefile.am: Remove AUTOMAKE_OPTIONS.
570        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
571        * erc32sonic/Makefile.am: Remove AUTOMAKE_OPTIONS.
572        * gnatsupp/Makefile.am: Remove AUTOMAKE_OPTIONS.
573        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
574        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
575        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
576        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
577        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
578
5792001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
580
581        * configure.ac: Add RTEMS_BSPOPTS*(CONSOLE_USE_INTERRUPTS).
582        Add RTEMS_BSPOPTS*(SIMSPARC_FAST_IDLE).
583        Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
584        * include/bsp.h: include bspopts.h.
585
5862001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
587
588        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
589
5902001-11-08      Jiri Gaisler <jiri@gaisler.com>
591
592        This fix is in response to test results reported by Jerry Needell
593        <jerry.needell@unh.edu> for the SPARC/ERC32 and tracked as PR80.
594        * include/bsp.h: TM27 was not running properly because the ERC32
595        and LEON cannot nest interrupts at the same level.  The BSP test support
596        had to be modified to support using two different interrupt sources.
597
5982001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
599
600        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
601        * configure.in: Remove.
602        * configure.ac: New file, generated from configure.in by autoupdate.
603
6042001-09-27      Joel Sherrill <joel@OARcorp.com>
605
606        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
607
6082001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
609
610        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
611
6122001-08-16      Joel Sherrill <joel@OARcorp.com>
613
614        * tools/runtest.in: Recognize debug variant of monitor test.
615
6162001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
617
618        * configure.in: Add bspopts.h.
619        * include/.cvsignore: Add bspopts.h*, stamp-h*.
620        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
621        * include/bsp.h: Include bspopts.h.
622
6232001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
624
625        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
626
6272000-04-23      Jiri Gaisler <jiri@gaisler.com>
628
629        * console/debugputs.c: Switched to unsigned characters.
630
6312000-12-06      Joel Sherrill <joel@OARcorp.com>
632
633        * gnatsupp/gnatsupp.c: Added prototype to eliminate warning.
634
6352000-11-30      Joel Sherrill <joel@OARcorp.com>
636
637        * erc32sonic/Makefile.am: Only compile this if networking is enabled.
638
6392000-11-21      Jiri Gaisler <jgais@ws.estec.esa.nl>
640
641        * erc32sonic/erc32sonic.c: Minor modifications which enable
642        network interface to come up and work for some time before
643        getting an error in the SONIC driver.  The error is a bit random,
644        sometimes MCLGET (m, M_WAIT) tries to access memory way outside the
645        available ram (and traps) while sometimes there is a panic due
646        to RBAE/RXEN.
647
6482000-11-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
649
650        * Makefile.am: Cleanup.
651
6522000-11-14      Jiri Gaisler <jgais@ws.estec.esa.nl>
653
654        * wrapup/Makefile.am: Pick up cache code from libcpu and pick
655        up .o's instead of .rel's from libcpu.
656
6572000-11-13      Jiri Gaisler <jgais@ws.estec.esa.nl>
658
659        * Makefile.am, configure.in, gnatsupp/Makefile.am,
660        gnatsupp/gnatsupp.c, include/Makefile.am, include/bsp.h,
661        start/Makefile.am, startup/Makefile.am, startup/setvec.c,
662        wrapup/Makefile.am:
663        * erc32sonic: New directory.
664        * erc32sonic/Makefile.am, erc32sonic/erc32sonic.c,
665        erc32sonic/.cvsignore: New files.
666        * include/erc32.h: New file.
667        * startup/boardinit.S: New file.
668        Big update of SPARC support for ERC32 and LEON.
669        Added support for ERC32 without floating point.
670        Added SONIC support as configured on Tharsys ERC32 board.
671        The bsp's share various code in the shared directory:
672           gnat-support, start-up code, etc.
673        To decrease the foot-print, I removed the 16 kbyte start-up
674        stack that was put in .bss and never reused once the system
675        was up. The stack is now put between the heap and the
676        workspace. To reclaim it, the user can do a rtems_region_extend
677        to merge the stack to the heap region once the system is up.
678
6792000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
680
681        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
682
6832000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
684
685        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
686
6872000-11-01      Joel Sherrill <joel@OARcorp.com>
688
689        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
690        and libcsupport.h moved from libc to lib/include/rtems and
691        now must be referenced as <rtems/XXX.h>.   Header file order
692        was cleaned up while doing this.
693
6942000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
695
696        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
697        Switch to GNU canonicalization.
698
6992000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
700
701        * clock/Makefile.am, console/Makefile.am, gnatsupp/Makefile.am,
702        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
703        wrapup/Makefile.am: Include compile.am
704
7052000-08-10      Joel Sherrill <joel@OARcorp.com>
706
707        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.