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

4.104.114.95
Last change on this file since 424ee2ba was 424ee2ba, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/08 at 16:47:17

2008-08-31 Joel Sherrill <joel.sherrill@…>

  • timer/timer.c: Rename timer driver methods to follow RTEMS programming conventions.
  • Property mode set to 100644
File size: 21.1 KB
Line 
12008-08-31      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * timer/timer.c: Rename timer driver methods to follow RTEMS
4        programming conventions.
5
62008-08-18      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * gnatsupp/gnatsupp.c, timer/timer.c: Add missing prototypes.
9
102008-08-08      Joel Sherrill <joel.sherrill@OARcorp.com>
11
12        * startup/linkcmds: All SPARC executables should include
13        rtems_get_version_string so the monitor used can provide RTEMS
14        awareness based upon the version.
15
162008-08-05      Joel Sherrill <joel.sherrill@OARcorp.com>
17
18        PR 1294/bsps
19        * startup/spurious.c: Correct prototype and usage of
20        sparc_disable_interrupts.
21
222008-08-04      Joel Sherrill <joel.sherrill@OARcorp.com>
23
24        PR 1294/bsps
25        * startup/spurious.c: Correct prototype and usage of
26        sparc_disable_interrupts.
27
282008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
29
30        * Makefile.am, configure.ac: Add capability for bootcard.c BSP
31        Initialization Framework to ask the BSP where it has memory for the
32        RTEMS Workspace and C Program Heap. These collectively are referred
33        to as work area. If the BSP supports this, then it does not have to
34        include code to split the available memory between the two areas.
35        This reduces the amount of code in the BSP specific bspstart.c file.
36        Additionally, the shared framework can initialize the C Library, call
37        rtems_debug_enable(), and dirty the work area memory. Until most/all
38        BSPs support this new capability, if the BSP supports this, it should
39        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
40        When the transition is complete, this autoconf macro can be removed.
41
422008-05-07      Joel Sherrill <joel.sherrill@OARcorp.com>
43
44        * clock/ckinit.c: Add nanoseconds clock tick granularity support.
45
462008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
47
48        * Makefile.am: Remove all references to console_reserve_resources and
49        termios_reserve_resources.
50        * console/consolereserveresources.c: Removed.
51
522008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
53
54        * startup/linkcmds: Add wildcard to gcc_except_table section so
55        programs compiled with gcc 4.3.x can link.
56
572007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * clock/ckinit.c, include/bsp.h: Eliminate copies of the Configuration
60        Table. Use the RTEMS provided accessor macros to obtain configuration
61        fields.
62
632007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * include/bsp.h: Move interrupt_stack_size field from CPU Table to
66        Configuration Table. Eliminate CPU Table from all ports. Delete
67        references to CPU Table in all forms.
68
692007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
70
71        * Makefile.am: Moved most of the remaining CPU Table fields to the
72        Configuration Table. This included pretasking_hook, predriver_hook,
73        postdriver_hook, idle_task, do_zero_of_workspace,
74        extra_mpci_receive_server_stack, stack_allocate_hook, and
75        stack_free_hook. As a side-effect of this effort some multiprocessing
76        code was made conditional and some style clean up occurred.
77
782007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
79
80        * clock/ckinit.c, include/bsp.h: Fix spacing.
81
822007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
83
84        * clock/ckinit.c: Formatting.
85
862007-05-09      Joel Sherrill <joel.sherrill@OARcorp.com>
87
88        * console/debugputs.c, include/bsp.h, startup/spurious.c: Remove debug
89        print methods that are redundant with prntk and replace their use
90        with printk.
91
922007-05-03      Joel Sherrill <joel@OARcorp.com>
93
94        * startup/linkcmds: Handle .data.* sections
95
962007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
97
98        * bsp_specs: Remove qrtems_debug.
99
1002007-03-28      Joel Sherrill <joel@OARcorp.com>
101
102        * clock/ckinit.c: Add support to the Clock driver template for
103        rtems_clock_set_nanoseconds_extension and the potential for TOD and
104        timestamps accurate to the nanosecond. On this BSP however, it is
105        only accurate to the microsecond.
106
1072007-03-28      Joel Sherrill <joel@OARcorp.com>
108
109        PR 1233/bsps
110        * Makefile.am, console/console.c, console/debugputs.c: Move printk
111        support code into debug IO file so you do not get the entire console
112        driver when you do not want it.
113
1142006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
115
116        * configure.ac: New BUG-REPORT address.
117
1182006-11-17      Joel Sherrill <joel@OARcorp.com>
119
120        * timer/timer.c: Update timer overhead for start/stop.
121
1222006-11-16      Joel Sherrill <joel@OARcorp.com>
123
124        * clock/ckinit.c, console/console.c: Use common clock driver template
125        and eliminate all fast idle code specific to this BSP. This
126        eliminates a fair amount of code in the BSP clock driver and
127        bsp_startup. The LEON3 has to do a scan of the AMBA bus to find the
128        timer so I added the new hook Clock_driver_support_find_timer to
129        support this. In general, there was some clean up to the file headers
130        of various files.
131
1322006-11-15      Joel Sherrill <joel@OARcorp.com>
133
134        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
135        file and simplified initialization.
136
1372006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
138
139        * Makefile.am: Remove superfluous -DASM.
140
1412006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
142
143        * configure.ac: Require autoconf-2.60. Require automake-1.10.
144
1452006-06-24      Joel Sherrill <joel@OARcorp.com>
146
147        * startup/linkcmds: Add .rela.dyn sections.
148
1492006-06-22      Joel Sherrill <joel@OARcorp.com>
150
151        PR 1100/bsps
152        * console/debugputs.c: Remove redundant return.
153
1542006-03-08      Joel Sherrill <joel@OARcorp.com>
155
156        * startup/linkcmds: Add .gnu.linkonce.b.* section.
157
1582006-02-08      Joel Sherrill <joel@OARcorp.com>
159
160        * startup/linkcmds: Add sections required by newer gcc versions.
161
1622006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
163
164        * configure.ac: Remove explicit ampolish3 support (now in
165        RTEMS_BSP_CONFIGURE).
166
1672006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
168
169        * configure.ac: Add ampolish3 support.
170        * Makefile.am: Add preinstall.am.
171
1722006-01-10      Joel Sherrill <joel@OARcorp.com>
173
174        * startup/linkcmds: Merge from 4.6 branch. Now the copy_data loop
175        works.
176
1772006-01-10      Joel Sherrill <joel@OARcorp.com>
178
179        * configure.ac: Add configuration for ENABLE_SIS_QUIRKS.
180
1812005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
182
183        * include/bsp.h: New header guard.
184
1852005-01-20      Joel Sherrill <joel@OARcorp.com>
186
187        * bsp_specs: Conditionalize inclusion of crtend/crtn.
188
1892005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
190
191        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
192
1932005-01-06      Joel Sherrill <joel@OARcorp.com>
194
195        * Makefile.am: Fix typo.
196
1972005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * Makefile.am: Remove build-variant support.
200
2012004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        * configure.ac: Require automake > 1.9.
204
2052004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        PR 610/bsps
208        * Makefile.am: Add include/tm27.h, Cosmetics.
209        * include/tm27.h: Final cosmetics.
210
2112004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
212
213        * include/bsp.h: Split out tmtest27 support.
214        * include/tm27.h: New.
215
2162004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
217
218        PR 613/bsps
219        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
220
2212004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        PR 614/bsps
224        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
225
2262004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
227
228        * startup/boardinit.S: Include <rtems/asm.h> instead of <asm.h>.
229        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
230        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
231        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
232        * console/console.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
233
2342004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
235
236        * clock/ckinit.c, console/console.c, console/debugputs.c,
237        erc32sonic/erc32sonic.c, include/bsp.h, include/erc32.h,
238        startup/setvec.c, startup/spurious.c, timer/timer.c: Convert to
239        using c99 fixed size types.
240
2412004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * Makefile.am: Reflect changes to bsp.am.
244        Preinstall dist_project_lib*.
245
2462004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * Makefile.am: Reflect changes to bsp.am.
249
2502004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
253
2542004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
255
256        * Makefile.am: Pickup files from ../../sparc/shared instead of
257        ../shared. Reformat.
258
2592004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Cosmetics.
262
2632004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * Makefile.am: Cosmetics.
266
2672004-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * Makefile.am: Merge-in clock/Makefile.am, erc32sonic/Makefile.am,
270        startup/Makefile.am, console/Makefile.am, gnatsupp/Makefile.am,
271        timer/Makefile.am, wrapup/Makefile.am.
272        Use automake compilation rules.
273        * clock/Makefile.am, erc32sonic/Makefile.am, startup/Makefile.am,
274        console/Makefile.am, gnatsupp/Makefile.am, timer/Makefile.am,
275        wrapup/Makefile.am: Remove.
276        * configure.ac: Reflect changes above.
277
2782004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * Makefile.am: Add PREINSTALL_DIRS.
281
2822004-01-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * wrapup/Makefile.am: Reflect changes to libcpu.
285
2862004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
289        Add PRE/TMPINSTALL_FILES to CLEANFILES.
290        * startup/Makefile.am: Ditto.
291
2922004-01-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * gnatsupp/Makefile.am: Eliminate VPATH.
295
2962004-01-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
297
298        * start/.cvsignore: Remove.
299
3002004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * start/Makefile.am: Remove.
303        * Makefile.am: Merge-in start/Makefile.am.
304        * configure.ac: Reflect changes above.
305
3062004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * wrapup/Makefile.am: Eliminate $(LIB).
309        Use noinst_DATA to trigger building libbsp.a.
310
3112003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * start/Makefile.am: Eliminate VPATH.
314
3152003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
318        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
319
3202003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
323        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
324        * wrapup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
325
3262003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
329
3302003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
331
332        * start/Makefile.am: Misc cleanups and fixes.
333        * startup/Makefile.am: Misc cleanups and fixes.
334        * wrapup/Makefile.am: Misc cleanups and fixes.
335
3362003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Add dirstamp support to preinstallation.
339        * clock/Makefile.am: Cosmetics.
340        * console/Makefile.am: Cosmetics.
341        * erc32sonic/Makefile.am: Cosmetics.
342        * gnatsupp/Makefile.am: Cosmetics.
343        * start/Makefile.am: Cosmetics.
344        * startup/Makefile.am: Cosmetics.
345        * timer/Makefile.am: Cosmetics.
346        * wrapup/Makefile.am: Cosmetics.
347
3482003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * clock/Makefile.am: Remove all-local: $(ARCH).
351        * console/Makefile.am: Remove all-local: $(ARCH).
352        * erc32sonic/Makefile.am: Remove all-local: $(ARCH).
353        * gnatsupp/Makefile.am: Remove all-local: $(ARCH).
354        * start/Makefile.am: Remove all-local: $(ARCH).
355        * startup/Makefile.am: Remove all-local: $(ARCH).
356        * timer/Makefile.am: Remove all-local: $(ARCH).
357        * wrapup/Makefile.am: Remove all-local: $(ARCH).
358
3592003-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * Makefile.am: Fix preinstallation of include/coverhd.h.
362
3632003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * Makefile.am: Merge-in include/Makefile.am.
366        Reflect changes to bsp.am.
367        * include/Makefile.am: Remove.
368        * configure.ac: Reflect changes above.
369
3702003-09-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * bsp_specs: Remove *lib:.
373
3742003-09-04      Joel Sherrill <joel@OARcorp.com>
375
376        * clock/ckinit.c, console/console.c, console/consolereserveresources.c,
377        console/debugputs.c, include/bsp.h, include/coverhd.h,
378        include/erc32.h, startup/erc32mec.c, startup/setvec.c, timer/timer.c:
379        URL for license changed.
380
3812003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * Makefile.am: Reflect having moved aclocal/.
384
3852003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * Makefile.am: Reflect having moved automake/.
388        * clock/Makefile.am: Reflect having moved automake/.
389        * console/Makefile.am: Reflect having moved automake/.
390        * erc32sonic/Makefile.am: Reflect having moved automake/.
391        * gnatsupp/Makefile.am: Reflect having moved automake/.
392        * include/Makefile.am: Reflect having moved automake/.
393        * start/Makefile.am: Reflect having moved automake/.
394        * startup/Makefile.am: Reflect having moved automake/.
395        * timer/Makefile.am: Reflect having moved automake/.
396        * wrapup/Makefile.am: Reflect having moved automake/.
397
3982003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        PR 452/bsps
401        * startup/Makefile.am: Remove USE_INIT_FINI.
402
4032003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
406
4072003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        PR 445/bsps
410        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
411        Remove cpp, old_cpp (now unused).
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-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
432        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
433        * erc32sonic/Makefile.am: Don't include @RTEMS_BSP@.cfg.
434        * gnatsupp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
435        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
436        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
437        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
438
4392002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
440
441        * start/Makefile.am: Use install-data-local to install startfile.
442
4432002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
446
4472002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * .cvsignore: Reformat.
450        Add autom4te*cache.
451        Remove autom4te.cache.
452
4532002-08-21      Joel Sherrill <joel@OARcorp.com>
454
455        * bsp_specs: Added support for -nostdlibs.
456
4572002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
460        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
461
4622002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
465        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
466        * erc32sonic/Makefile.am: Use .$(OBJEXT) instead of .o.
467        * gnatsupp/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
4722002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * start/Makefile.am: Eliminate PGM.
475        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
476
4772002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
480
4812002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
484        Remove $(OBJS) from all-local.
485
4862002-07-01      Joel Sherrill <joel@OARcorp.com>
487
488        * startup/erc32mec.c: New file.
489        * startup/Makefile.am: Reflect above.
490        * include/erc32.h: Converted SCORE_EXTERN to extern.
491        * tools/runtest.in: Lengthened timeout on test runs.
492
4932002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
496
4972001-05-09      Joel Sherrill <joel@OARcorp.com>
498
499        * startup/linkcmds: In support of gcc 3.1, added one of more
500        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
501        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
502        and direction of segments to memory regions may also have been
503        addressed.  This was a sweep across all BSPs.
504 
5052001-04-26      Joel Sherrill <joel@OARcorp.com>
506
507        * include/bsp.h: Change SIS to ERC32_BSP.
508 
5092002-04-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * configure.ac: Remove BSPOPTS_*(NO_TABLE_MOVE).
512        Remove BSPOPTS_*(FPU_REVB).
513        * wrapup/Makefile.am: Remove tbr.
514
5152002-03-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * configure.ac: Add BSPOPTS_*(NO_TABLE_MOVE).
518        Add BSPOPTS_*(FPU_REVB).
519        * wrapup/Makefile.am: Add tbr.
520
5212002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.ac:
524        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
525        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
526        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
527        * Makefile.am: Remove AUTOMAKE_OPTIONS.
528        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
529        * erc32sonic/Makefile.am: Remove AUTOMAKE_OPTIONS.
530        * gnatsupp/Makefile.am: Remove AUTOMAKE_OPTIONS.
531        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
532        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
533        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
534        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
535        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
536
5372001-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * configure.ac: Add RTEMS_BSPOPTS*(CONSOLE_USE_INTERRUPTS).
540        Add RTEMS_BSPOPTS*(SIMSPARC_FAST_IDLE).
541        Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
542        * include/bsp.h: include bspopts.h.
543
5442001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
545
546        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
547
5482001-11-08      Jiri Gaisler <jiri@gaisler.com>
549
550        This fix is in response to test results reported by Jerry Needell
551        <jerry.needell@unh.edu> for the SPARC/ERC32 and tracked as PR80.
552        * include/bsp.h: TM27 was not running properly because the ERC32
553        and LEON cannot nest interrupts at the same level.  The BSP test support
554        had to be modified to support using two different interrupt sources.
555
5562001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
559        * configure.in: Remove.
560        * configure.ac: New file, generated from configure.in by autoupdate.
561
5622001-09-27      Joel Sherrill <joel@OARcorp.com>
563
564        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
565
5662001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
567
568        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
569
5702001-08-16      Joel Sherrill <joel@OARcorp.com>
571
572        * tools/runtest.in: Recognize debug variant of monitor test.
573
5742001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
575
576        * configure.in: Add bspopts.h.
577        * include/.cvsignore: Add bspopts.h*, stamp-h*.
578        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
579        * include/bsp.h: Include bspopts.h.
580
5812001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
582
583        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
584
5852000-04-23      Jiri Gaisler <jiri@gaisler.com>
586
587        * console/debugputs.c: Switched to unsigned characters.
588
5892000-12-06      Joel Sherrill <joel@OARcorp.com>
590
591        * gnatsupp/gnatsupp.c: Added prototype to eliminate warning.
592
5932000-11-30      Joel Sherrill <joel@OARcorp.com>
594
595        * erc32sonic/Makefile.am: Only compile this if networking is enabled.
596
5972000-11-21      Jiri Gaisler <jgais@ws.estec.esa.nl>
598
599        * erc32sonic/erc32sonic.c: Minor modifications which enable
600        network interface to come up and work for some time before
601        getting an error in the SONIC driver.  The error is a bit random,
602        sometimes MCLGET (m, M_WAIT) tries to access memory way outside the
603        available ram (and traps) while sometimes there is a panic due
604        to RBAE/RXEN.
605
6062000-11-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
607
608        * Makefile.am: Cleanup.
609
6102000-11-14      Jiri Gaisler <jgais@ws.estec.esa.nl>
611
612        * wrapup/Makefile.am: Pick up cache code from libcpu and pick
613        up .o's instead of .rel's from libcpu.
614
6152000-11-13      Jiri Gaisler <jgais@ws.estec.esa.nl>
616
617        * Makefile.am, configure.in, gnatsupp/Makefile.am,
618        gnatsupp/gnatsupp.c, include/Makefile.am, include/bsp.h,
619        start/Makefile.am, startup/Makefile.am, startup/setvec.c,
620        wrapup/Makefile.am:
621        * erc32sonic: New directory.
622        * erc32sonic/Makefile.am, erc32sonic/erc32sonic.c,
623        erc32sonic/.cvsignore: New files.
624        * include/erc32.h: New file.
625        * startup/boardinit.S: New file.
626        Big update of SPARC support for ERC32 and LEON.
627        Added support for ERC32 without floating point.
628        Added SONIC support as configured on Tharsys ERC32 board.
629        The bsp's share various code in the shared directory:
630           gnat-support, start-up code, etc.
631        To decrease the foot-print, I removed the 16 kbyte start-up
632        stack that was put in .bss and never reused once the system
633        was up. The stack is now put between the heap and the
634        workspace. To reclaim it, the user can do a rtems_region_extend
635        to merge the stack to the heap region once the system is up.
636
6372000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
638
639        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
640
6412000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
642
643        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
644
6452000-11-01      Joel Sherrill <joel@OARcorp.com>
646
647        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
648        and libcsupport.h moved from libc to lib/include/rtems and
649        now must be referenced as <rtems/XXX.h>.   Header file order
650        was cleaned up while doing this.
651
6522000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
653
654        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
655        Switch to GNU canonicalization.
656
6572000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
658
659        * clock/Makefile.am, console/Makefile.am, gnatsupp/Makefile.am,
660        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
661        wrapup/Makefile.am: Include compile.am
662
6632000-08-10      Joel Sherrill <joel@OARcorp.com>
664
665        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.