source: rtems/c/src/lib/libbsp/sh/gensh2/ChangeLog @ 2b1610b

4.104.115
Last change on this file since 2b1610b was 2b1610b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/15/09 at 04:08:34

2009-10-15 Ralf Corsépius <ralf.corsepius@…>

  • make/custom/gensh2.cfg: New (relocated from /make/custom).
  • Property mode set to 100644
File size: 20.1 KB
Line 
12009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * make/custom/gensh2.cfg: New (relocated from /make/custom).
4
52009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
8
9 2009-08-17     Joel Sherrill <joel.sherrill@OARcorp.com>
10
11        * include/bsp.h: Mark as a small memory BSP.
12
132009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
14
15        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
16        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
17        have the same options.
18
192009-04-28      Chris Johns <chrisj@rtems.org>
20
21        * start/start.S: Update for boot_card command line change.
22
232008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * bsp_specs: Move -e start from *link to *startfile to avoid warning
26        for undefined entry symbol when linking relocatables with binutils
27        2.19.
28
292008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
30
31        * Makefile.am, preinstall.am: Use shared tm27.h stub.
32        * include/tm27.h: Removed.
33
342008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
35
36        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
37        of building libbspstart.a, using automake-rules.
38
392008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
40
41        * Makefile.am: Eliminate *_SOURCES.
42
432008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
44
45        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
46        components.
47
482008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
49
50        * Makefile.am: Remove noinst_PROGRAMS (Unused).
51
522008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
53
54        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
55
562008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
57
58        * configure.ac: Make letting boot_card() handle work area allocation
59        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
60        BSP_BOOTCARD_OPTIONS.
61
622008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * Makefile.am, startup/linkcmds, startup/linkcmds.ram,
65        startup/linkcmds.rom: Use top level shared bsp_get_work_area()
66        implementation.
67
682008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
69
70        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
71        shared bsp_get_work_area() in its own file and rely on BSP Framework
72        to perform more initialization. After factoring this out, it turned
73        out that all SuperH BSPs has the same bsp_start() implementation so
74        this was made shared.
75        * startup/bspstart.c: Removed.
76
772008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
80        implementations. In this phase, all prototypes were removed from
81        bsp.h and empty implementations were removed and made to use the
82        shared stub.
83        * startup/bspclean.c: Removed.
84
852008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
88        Framework to ask the BSP where it has memory for the RTEMS Workspace
89        and C Program Heap. These collectively are referred to as work area.
90        If the BSP supports this, then it does not have to include code to
91        split the available memory between the two areas. This reduces the
92        amount of code in the BSP specific bspstart.c file. Additionally, the
93        shared framework can initialize the C Library, call
94        rtems_debug_enable(), and dirty the work area memory. Until most/all
95        BSPs support this new capability, if the BSP supports this, it should
96        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
97        When the transition is complete, this autoconf macro can be removed.
98
992008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * Makefile.am: Rework to avoid .rel files.
102
1032008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * startup/bspstart.c: Refactored and renamed initialization routines to
106        rtems_initialize_data_structures, rtems_initialize_before_drivers,
107        rtems_initialize_device_drivers, and
108        rtems_initialize_start_multitasking. This opened the sequence up so
109        that bootcard() could provide a more robust and flexible framework
110        which is easier to explain and understand. This also lays the
111        groundwork for sharing the division of available memory between the
112        RTEMS workspace and heap and the C library initialization across all
113        BSPs.
114
1152008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * startup/linkcmds: Add wildcard to gcc_except_table section so
118        programs compiled with gcc 4.3.x can link.
119
1202007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
123        Configuration Table. Use the RTEMS provided accessor macros to obtain
124        configuration fields.
125
1262007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
129        from CPU Table to Configuration Table. Eliminate CPU Table from all
130        ports. Delete references to CPU Table in all forms.
131
1322007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
133
134        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
135        Table fields to the Configuration Table. This included
136        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
137        do_zero_of_workspace, extra_mpci_receive_server_stack,
138        stack_allocate_hook, and stack_free_hook. As a side-effect of this
139        effort some multiprocessing code was made conditional and some style
140        clean up occurred.
141
1422007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
143
144        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
145        SuperH CPU Table and define another mechanism for drivers to obtain
146        this information.
147
1482007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
149
150        * Makefile.am: Separate debug IO from console so console driver is not
151        linked in all the time. This manaifested itself when the IO manager
152        optional manager stub dropped some symbols.
153
1542007-05-03      Joel Sherrill <joel@OARcorp.com>
155
156        * startup/linkcmds: Handle .data.* sections
157
1582007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
159
160        * bsp_specs: Remove qrtems_debug.
161
1622007-04-02      Joel Sherrill <joel@OARcorp.com>
163
164        * Makefile.am: Add dummy printk support so all tests link.
165
1662006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
167
168        * configure.ac: New BUG-REPORT address.
169
1702006-11-15      Joel Sherrill <joel@OARcorp.com>
171
172        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
173        file and simplified initialization.
174
1752006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
176
177        * Makefile.am: Remove superfluous -DASM.
178
1792006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
180
181        * configure.ac: Require autoconf-2.60. Require automake-1.10.
182
1832006-06-24      Joel Sherrill <joel@OARcorp.com>
184
185        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
186        .rela.dyn sections.
187
1882006-03-08      Joel Sherrill <joel@OARcorp.com>
189
190        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
191        .gnu.linkonce.b.* section.
192
1932006-02-08      Joel Sherrill <joel@OARcorp.com>
194
195        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
196        sections required by newer gcc versions.
197
1982006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
199
200        * Makefile.am: Add preinstall.am.
201
2022005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
203
204        * include/bsp.h: New header guard.
205
2062005-05-11      Joel Sherrill <joel@OARcorp.com>
207
208        * startup/linkcmds: Add .rodata.* sections.
209
2102005-05-03      Joel Sherrill <joel@OARcorp.com>
211
212        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
213        overflow of _CPU_Interrupt_stack_high calculation.
214
2152005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
216
217        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
218
2192005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Remove build-variant support.
222
2232004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
224
225        * configure.ac: Require automake > 1.9.
226
2272004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
228
229        PR 610/bsps
230        * Makefile.am: Add include/tm27.h, Cosmetics.
231        * include/tm27.h: Final cosmetics.
232
2332004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
234
235        * include/bsp.h: Split out tmtest27 support.
236        * include/tm27.h: New.
237
2382004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
239
240        PR 613/bsps
241        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
242
2432004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
244
245        PR 614/bsps
246        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
247
2482004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
249
250        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
251
2522004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
253
254        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
255        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
256        * startup/hw_init.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
257
2582004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
259
260        * include/bsp.h, startup/bspstart.c, startup/hw_init.c: Convert to
261        using c99 fixed size types.
262
2632004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
264
265        * Makefile.am: Reflect changes to bsp.am.
266        Preinstall dist_project_lib*.
267
2682004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
269
270        * Makefile.am: Reflect changes to bsp.am.
271
2722004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
275
2762004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * Makefile.am: Pickup files from ../../sh/shared instead of
279        ../shared. Reformat.
280
2812004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
282
283        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
284        startup/Makefile.am, wrapup/Makefile.am.
285        Use automake compilation rules.
286        * console/Makefile.am, scitab/Makefile.am,
287        startup/Makefile.am, wrapup/Makefile.am: Remove.
288        * configure.ac: Reflect changes above.
289
2902004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
293        Add RTEMS_PROG_CCAS.
294
2952004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * Makefile.am: Add PREINSTALL_DIRS.
298        * wrapup/Makefile.am: Reflect changes to libcpu.
299
3002004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * wrapup/Makefile.am: Reflect changes to libcpu.
303
3042004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
307        Add PRE/TMPINSTALL_FILES to CLEANFILES.
308        * startup/Makefile.am: Ditto.
309
3102004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * start/Makefile.am: Remove.
313        * Makefile.am: Merge-in start/Makefile.am.
314        * configure.ac: Reflect changes above.
315
3162004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * wrapup/Makefile.am: Eliminate $(LIB).
319        Use noinst_DATA to trigger building libbsp.a.
320
3212003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
324        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
325
3262003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
329        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
330
3312003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
334
3352003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
336
337        * start/Makefile.am: Misc cleanups and fixes.
338        * startup/Makefile.am: Misc cleanups and fixes.
339
3402003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Add preinstallation dirstamp support.
343        * console/Makefile.am: Cosmetics.
344        * startup/Makefile.am: Cosmetics.
345        * wrapup/Makefile.am: Cosmetics.
346
3472003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * console/Makefile.am: Remove all-local: $(ARCH).
350        * scitab/Makefile.am: Remove all-local: $(ARCH).
351        * start/Makefile.am: Remove all-local: $(ARCH).
352        * startup/Makefile.am: Remove all-local: $(ARCH).
353        * wrapup/Makefile.am: Remove all-local: $(ARCH).
354
3552003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Merge-in include/Makefile.am.
358        Reflect changes to bsp.am.
359        * include/Makefile.am: Remove.
360        * configure.ac: Reflect changes above.
361
3622003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * bsp_specs: Remove *lib:.
365
3662003-09-04      Joel Sherrill <joel@OARcorp.com>
367
368        * console/config.c, include/bsp.h, include/coverhd.h, start/start.S,
369        start/start.ram, start/start.rom, startup/bspclean.c,
370        startup/bspstart.c, startup/hw_init.c, startup/linkcmds,
371        startup/linkcmds.ram, startup/linkcmds.rom: URL for license changed.
372
3732003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * Makefile.am: Reflect having moved aclocal/.
376
3772003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * Makefile.am: Reflect having moved automake/.
380        * console/Makefile.am: Reflect having moved automake/.
381        * include/Makefile.am: Reflect having moved automake/.
382        * scitab/Makefile.am: Reflect having moved automake/.
383        * start/Makefile.am: Reflect having moved automake/.
384        * startup/Makefile.am: Reflect having moved automake/.
385        * wrapup/Makefile.am: Reflect having moved automake/.
386
3872003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
390
3912003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        PR 445/bsps
394        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
395        Remove cpp, old_cpp (now unused).
396
3972003-06-13      Joel Sherrill <joel@OARcorp.com>
398
399        * startup/linkcmds: Removed warnings.
400
4012003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * configure.ac: Remove AC_CONFIG_AUX_DIR.
404
4052003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
408
4092003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
410
411        * configure.ac: AC_PREREQ(2.57).
412
4132003-01-28      Joel Sherrill <joel@OARcorp.com>
414
415        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix to
416        work around truncated section names.
417
4182003-01-20      Joel Sherrill <joel@OARcorp.com>
419
420        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
421        FreeBSD sysctl() sections.
422
4232003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
426
4272003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
430        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
431        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
432        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
433
4342002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * start/Makefile.am: Use install-data-local to install startfile.
437
4382002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
441
4422002-11-07      Joel Sherrill <joel@OARcorp.com>
443
444        * startup/linkcmds: Include all .rodata* sections.
445
4462002-11-01      Joel Sherrill <joel@OARcorp.com>
447
448        * start/start.S, startup/hw_init.c: Removed warnings.
449
4502002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * .cvsignore: Reformat.
453        Add autom4te*cache.
454        Remove autom4te.cache.
455
4562002-09-14      Joel Sherrill <joel@OARcorp.com>
457
458        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
459        of all calls to bsp_libc_init() resulted in some cleanup here.
460
4612002-08-21      Joel Sherrill <joel@OARcorp.com>
462
463        * bsp_specs: Added support for -nostdlibs.
464
4652002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
468
4692002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
472        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
473        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
474        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
475
4762002-07-25      Joel Sherrill <joel@OARcorp.com>
477
478        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
479        to remove problems linking empty main(){} with BSP.
480
4812002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * start/Makefile.am: Eliminate PGMS.
484        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
485
4862002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
487
488        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
489
4902002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
493        Remove $(OBJS) from all-local.
494
4952002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
498
4992001-05-09      Joel Sherrill <joel@OARcorp.com>
500
501        * startup/linkcmds: In support of gcc 3.1, added one of more
502        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
503        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
504        and direction of segments to memory regions may also have been
505        addressed.  This was a sweep across all BSPs.
506 
5072002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
508
509        * configure.ac:
510        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
511        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
512        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
513        * Makefile.am: Remove AUTOMAKE_OPTIONS.
514        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
515        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
516        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
517        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
518        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
519
5202001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
523
5242001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
525
526        * configure.ac: Add RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ),
527        RTEMS_BSPOPTS_*(START_HW_INIT),
528        RTEMS_BSPOPTS_*(STANDALONE_EVB).
529        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
530
5312001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
534
5352001-10-12      Joel Sherrill <joel@OARcorp.com>
536
537        * include/bsp.h, start/start.S, start/start.ram, start/start.rom,
538        startup/bspclean.c, startup/bspstart.c, startup/linkcmds,
539        startup/linkcmds.ram, startup/linkcmds.rom: Fixed typo.
540
5412001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
544        * configure.in: Remove.
545        * configure.ac: New file, generated from configure.in by autoupdate.
546
5472001-09-27      Joel Sherrill <joel@OARcorp.com>
548
549        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
550
5512001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
552
553        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
554        * startup/Makefile.am: Use 'PREINSTALL_FILES ='.
555
5562001-09-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * scitab/Makefile.am: Remove stray blank from SCITAB rule.
559
5602001-08-01  Radzislaw Galler  <rgaller@et.put.poznan.pl>
561
562        * include/bsp.h: Disabled redefinition of
563        CONSOLE_DRIVER_TABLE_ENTRY. Some "FIXME:" comments added.
564        * console/config.c: New file. Definitions of externs referenced
565        from libbsp/shared/console.c.
566        * console/Makefile.am: Changed VPATH to point to
567        libbsp/shared. Added config.c to C_FILES and EXTRA_DIST.
568
5692001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * configure.in: Add bspopts.h.
572        * include/.cvsignore: Add bspopts.h*, stamp-h*.
573        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
574        * include/bsp.h: Include bspopts.h.
575        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
576
5772001-06-19      Joel Sherrill <joel@OARcorp.com>
578
579        * scitab/Makefile.am, startup/Makefile.am: Use CPU_CLOCK_RATE_HZ as
580        it is called in configure.in instead of HZ.
581
5822001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
583
584        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), add
585        bspopts.h.     
586        * include/.cvsignore: Add stamp-h*, bspopts.h*.
587        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
588        * include/bsp.h: Add bspopts.h.
589        * startup/bspstart.c: Replace HZ w/ CPU_CLOCK_RATE_HZ.
590
5912001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
592
593        * startup/linkcmds: Remove OUTPUT_FORMAT.
594
5952001-01-22  Radzislaw Galler  <rgaller@et.put.poznan.pl>
596
597        * README.EVB7045F: New file.
598        * README: Additions and corrections.
599        * include/bsp.h: Switch console to sci0.
600
6012001-01-05      Joel Sherrill <joel@OARcorp.com>
602
603        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
604        the movement of this component to libmisc.
605        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
606
6072000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
608
609        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
610
6112000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
612
613        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
614
6152000-11-01      Joel Sherrill <joel@OARcorp.com>
616
617        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
618        and libcsupport.h moved from libc to lib/include/rtems and
619        now must be referenced as <rtems/XXX.h>.   Header file order
620        was cleaned up while doing this.
621
6222000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
625        Switch to GNU canonicalization.
626
6272000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
628
629        * scitab/Makefile.am: PROJECT_TOPdir.
630
6312000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
632
633        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
634        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
635
6362000-08-10      Joel Sherrill <joel@OARcorp.com>
637
638        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.