source: rtems/c/src/lib/libbsp/sh/shsim/ChangeLog @ b1ded240

4.104.115
Last change on this file since b1ded240 was 512d0fc, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 19:18:31

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

  • Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use shared bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization. After factoring this out, it turned out that all SuperH BSPs has the same bsp_start() implementation so this was made shared.
  • Property mode set to 100644
File size: 18.5 KB
Line 
12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
4        shared bsp_get_work_area() in its own file and rely on BSP Framework
5        to perform more initialization. After factoring this out, it turned
6        out that all SuperH BSPs has the same bsp_start() implementation so
7        this was made shared.
8
92008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
10
11        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
12        phase, all prototypes were removed from bsp.h and empty
13        implementations were removed and made to use the shared stub.
14
152008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
16
17        * trap34/console-io.c: Add missing prototypes.
18
192008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
22        Framework to ask the BSP where it has memory for the RTEMS Workspace
23        and C Program Heap. These collectively are referred to as work area.
24        If the BSP supports this, then it does not have to include code to
25        split the available memory between the two areas. This reduces the
26        amount of code in the BSP specific bspstart.c file. Additionally, the
27        shared framework can initialize the C Library, call
28        rtems_debug_enable(), and dirty the work area memory. Until most/all
29        BSPs support this new capability, if the BSP supports this, it should
30        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
31        When the transition is complete, this autoconf macro can be removed.
32
332008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
34
35        * Makefile.am: Rework to avoid .rel files.
36
372008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
38
39        * startup/bspstart.c: Refactored and renamed initialization routines to
40        rtems_initialize_data_structures, rtems_initialize_before_drivers,
41        rtems_initialize_device_drivers, and
42        rtems_initialize_start_multitasking. This opened the sequence up so
43        that bootcard() could provide a more robust and flexible framework
44        which is easier to explain and understand. This also lays the
45        groundwork for sharing the division of available memory between the
46        RTEMS workspace and heap and the C library initialization across all
47        BSPs.
48
492008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
50
51        * startup/linkcmds, startup/linkcmds.sim: Add wildcard to
52        gcc_except_table section so programs compiled with gcc 4.3.x can
53        link.
54
552007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
58        Configuration Table. Use the RTEMS provided accessor macros to obtain
59        configuration fields.
60
612007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
62
63        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
64        from CPU Table to Configuration Table. Eliminate CPU Table from all
65        ports. Delete references to CPU Table in all forms.
66
672007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
70        Table fields to the Configuration Table. This included
71        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
72        do_zero_of_workspace, extra_mpci_receive_server_stack,
73        stack_allocate_hook, and stack_free_hook. As a side-effect of this
74        effort some multiprocessing code was made conditional and some style
75        clean up occurred.
76
772007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
78
79        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
80        SuperH CPU Table and define another mechanism for drivers to obtain
81        this information.
82
832007-07-24      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * Makefile.am, preinstall.am, startup/linkcmds: Save the old linker
86        script as linkcmds.sim and use one with enough memory to link all
87        tests so we can at least build things.
88        * startup/linkcmds.sim: New file.
89
902007-05-03      Joel Sherrill <joel@OARcorp.com>
91
92        * startup/linkcmds: Handle .data.* sections. Also change directive
93        placing stack on onchip_ram to make ld happy.
94
952007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
96
97        * bsp_specs: Remove qrtems_debug.
98
992007-04-02      Joel Sherrill <joel@OARcorp.com>
100
101        * Makefile.am: Add dummy printk support so all tests link.
102
1032006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * configure.ac: New BUG-REPORT address.
106
1072006-11-15      Joel Sherrill <joel@OARcorp.com>
108
109        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
110        file and simplified initialization.
111
1122006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
113
114        * Makefile.am: Remove superfluous -DASM.
115
1162006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
117
118        * configure.ac: Require autoconf-2.60. Require automake-1.10.
119
1202006-06-24      Joel Sherrill <joel@OARcorp.com>
121
122        * startup/linkcmds: Add .rela.dyn sections.
123
1242006-03-08      Joel Sherrill <joel@OARcorp.com>
125
126        * startup/linkcmds: Add .gnu.linkonce.b.* section.
127
1282006-02-08      Joel Sherrill <joel@OARcorp.com>
129
130        * startup/linkcmds: Add sections required by newer gcc versions.
131
1322006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
133
134        * Makefile.am: Add preinstall.am.
135
1362005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
137
138        * include/bsp.h: New header guard.
139
1402005-05-20      Ralf Corsepius <ralf.corsepius@rtems.org>
141
142        * Makefile.am: Add SHGEN.
143        * startup/linkcmds: Add missing sections.
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-02      Ralf Corsepius <ralf_corsepius@rtems.org>
179
180        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
181
1822004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
183
184        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
185        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
186        * gdbsci/gdbsci.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
187
1882004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
189
190        * gdbsci/gdbsci.c, include/bsp.h, startup/bspstart.c: Convert to
191        using c99 fixed size types.
192
1932004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
194
195        * Makefile.am: Reflect changes to bsp.am.
196        Preinstall dist_project_lib*.
197
1982004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
199
200        * Makefile.am: Reflect changes to bsp.am.
201
2022004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
203
204        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
205
2062004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
207
208        * Makefile.am: Pickup files from ../../sh/shared instead of
209        ../shared. Reformat.
210
2112004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
212
213        * Makefile.am: Cosmetics.
214
2152004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
216
217        * Makefile.am: Merge-in clock/Makefile.am, gdbsci/Makefile.am,
218        startup/Makefile.am, wrapup/Makefile.am, console/Makefile.am,
219        scitab/Makefile.am, trap34/Makefile.am. Use automake compilation rules.
220        * clock/Makefile.am, gdbsci/Makefile.am, startup/Makefile.am,
221        wrapup/Makefile.am, console/Makefile.am, scitab/Makefile.am,
222        trap34/Makefile.am: Remove.
223        * configure.ac: Reflect changes above.
224
2252004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
226
227        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
228        Add RTEMS_PROG_CCAS.
229
2302004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
231
232        * Makefile.am: Add PREINSTALL_DIRS.
233        * wrapup/Makefile.am: Reflect changes to libcpu.
234
2352004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
236
237        * clock/Makefile.am: Remove bogus EXTRA_DIST.
238        * gdbsci/Makefile.am: Remove bogus EXTRA_DIST.
239        * wrapup/Makefile.am: Reflect changes to libcpu.
240
2412004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
244        Add PRE/TMPINSTALL_FILES to CLEANFILES.
245        * startup/Makefile.am: Ditto.
246
2472004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * start/Makefile.am: Remove.
250        * Makefile.am: Merge-in start/Makefile.am.
251        * configure.ac: Reflect changes above.
252
2532004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * start/regs.S: Remove.
256
2572004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
258
259        * wrapup/Makefile.am: Eliminate $(LIB).
260        Use noinst_DATA to trigger building libbsp.a.
261
2622003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
265        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
266
2672003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
270        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
271
2722003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
275
2762003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * start/Makefile.am: Misc cleanups and fixes.
279        * startup/Makefile.am: Misc cleanups and fixes.
280        * wrapup/Makefile.am: Misc cleanups and fixes.
281
2822003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * Makefile.am: Add preinstallation dirstamp support.
285        * clock/Makefile.am: Cosmetics.
286        * console/Makefile.am: Cosmetics.
287        * gdbsci/Makefile.am: Cosmetics.
288        * scitab/Makefile.am: Cosmetics.
289        * startup/Makefile.am: Cosmetics.
290        * trap34/Makefile.am: Cosmetics.
291        * wrapup/Makefile.am: Cosmetics.
292
2932003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * clock/Makefile.am: Remove all-local: $(ARCH).
296        * console/Makefile.am: Remove all-local: $(ARCH).
297        * gdbsci/Makefile.am: Remove all-local: $(ARCH).
298        * scitab/Makefile.am: Remove all-local: $(ARCH).
299        * start/Makefile.am: Remove all-local: $(ARCH).
300        * startup/Makefile.am: Remove all-local: $(ARCH).
301        * trap34/Makefile.am: Remove all-local: $(ARCH).
302        * wrapup/Makefile.am: Remove all-local: $(ARCH).
303
3042003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * Makefile.am: Merge-in include/Makefile.am.
307        Reflect changes to bsp.am.
308        * include/Makefile.am: Remove.
309        * configure.ac: Reflect changes above.
310
3112003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * bsp_specs: Remove *lib:.
314
3152003-09-04      Joel Sherrill <joel@OARcorp.com>
316
317        * include/bsp.h, start/start.S, startup/bspstart.c,
318        trap34/console-io.c: URL for license changed.
319
3202003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * Makefile.am: Reflect having moved aclocal/.
323
3242003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * Makefile.am: Reflect having moved automake/.
327        * clock/Makefile.am: Reflect having moved automake/.
328        * console/Makefile.am: Reflect having moved automake/.
329        * gdbsci/Makefile.am: Reflect having moved automake/.
330        * include/Makefile.am: Reflect having moved automake/.
331        * scitab/Makefile.am: Reflect having moved automake/.
332        * start/Makefile.am: Reflect having moved automake/.
333        * startup/Makefile.am: Reflect having moved automake/.
334        * trap34/Makefile.am: Reflect having moved automake/.
335        * wrapup/Makefile.am: Reflect having moved automake/.
336
3372003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
340
3412003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        PR 445/bsps
344        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
345        Remove cpp, old_cpp (now unused).
346
3472003-06-13      Joel Sherrill <joel@OARcorp.com>
348
349        * startup/linkcmds: Removed warnings.
350
3512003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * configure.ac: Remove AC_CONFIG_AUX_DIR.
354
3552003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
358
3592003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * configure.ac: AC_PREREQ(2.57).
362
3632003-01-28      Joel Sherrill <joel@OARcorp.com>
364
365        * startup/linkcmds: Fix to work around truncated section names.
366
3672003-01-20      Joel Sherrill <joel@OARcorp.com>
368
369        * startup/linkcmds*: Add FreeBSD sysctl() sections.
370
3712003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
372
373        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
374        Eliminate unused GENERIC_FILES.
375
3762003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
379        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
380        * gdbsci/Makefile.am: Don't include @RTEMS_BSP@.cfg.
381        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
382        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
383        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
384        * trap34/Makefile.am: Don't include @RTEMS_BSP@.cfg.
385
3862002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * start/Makefile.am: Use install-data-local to install startfile.
389
3902002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
393
3942002-11-07      Joel Sherrill <joel@OARcorp.com>
395
396        * startup/linkcmds: Include all .rodata* sections.
397
3982002-11-01      Joel Sherrill <joel@OARcorp.com>
399
400        * gdbsci/gdbsci.c: Removed warnings.
401
4022002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
403
404        * .cvsignore: Reformat.
405        Add autom4te*cache.
406        Remove autom4te.cache.
407
4082002-09-14      Joel Sherrill <joel@OARcorp.com>
409
410        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
411        of all calls to bsp_libc_init() resulted in some cleanup here.
412
4132002-08-21      Joel Sherrill <joel@OARcorp.com>
414
415        * bsp_specs: Added support for -nostdlibs.
416
4172002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
420        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
421
4222002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
425        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
426        * gdbsci/Makefile.am: Use .$(OBJEXT) instead of .o.
427        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
428        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
429        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
430        * trap34/Makefile.am: Use .$(OBJEXT) instead of .o.
431
4322002-07-25      Joel Sherrill <joel@OARcorp.com>
433
434        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
435        to remove problems linking empty main(){} with BSP.
436
4372002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * start/Makefile.am: Eliminate PGM.
440        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
441
4422002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
445
4462002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
449        Remove $(OBJS) from all-local.
450
4512002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * wrapup/Makefile.am: Add $(LIB) to all-local.
454
4552002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
458
4592001-05-09      Joel Sherrill <joel@OARcorp.com>
460
461        * startup/linkcmds: In support of gcc 3.1, added one of more
462        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
463        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
464        and direction of segments to memory regions may also have been
465        addressed.  This was a sweep across all BSPs.
466 
4672002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * configure.ac:
470        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
471        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
472        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
473        * Makefile.am: Remove AUTOMAKE_OPTIONS.
474        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
475        * gdbsci/Makefile.am: Remove AUTOMAKE_OPTIONS.
476        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
477        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
478        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
479        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
480        * trap34/Makefile.am: Remove AUTOMAKE_OPTIONS.
481        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
482
4832001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
486        * console/Makefile.am: C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o).
487        * wrapup/Makefile.am: Add gdbsci, scitab to BSP_FILES, add
488        CPU_FILES.
489
4902001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
493
4942001-10-12      Joel Sherrill <joel@OARcorp.com>
495
496        * start/start.S: Fixed typo.
497
4982001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
499
500        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
501        * configure.in: Remove.
502        * configure.ac: New file, generated from configure.in by autoupdate.
503
5042001-09-27      Joel Sherrill <joel@OARcorp.com>
505
506        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
507
5082001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * include/Makefile.am: Use 'CLEANFILES ='.
511        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
512
5132001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * configure.in: Add bspopts.h.
516        * include/.cvsignore: Add bspopts.h*, stamp-h*.
517        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
518        * include/bsp.h: Include bspopts.h.
519        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
520
5212001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
522
523        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), adapt
524        bspopts.h handling to other sh-BSPs.
525        * include/.cvsignore: Add stamp-h*, bspopts.h*.
526        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
527        * startup/bspstart.c: Reworked, based on the amos BSP.
528
5292001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * scitab/.cvsignore: Add.
532        * configure.in: Add --enable-console, CPU_CLOCK_RATE_HZ, autoheader
533        bspopt.h.
534        * include/bsp.h: Complete rewrite based on the AMOS-BSP.
535        * README: Update.
536        * bsp_specs: copy from gensh1
537
5382001-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
539
540        * Makefile.am: Add scitab, gdbsci to SUBDIRS.
541        * include/gdbsci.h: New file.
542        * include/.cvsignore: Add stamp-h? and bspopts.h*.
543        * console/Makefile.am: Use shared/console.c.
544        * console/console-io.c, console/console-support.S: Remove.
545
5462001-01-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
547
548        * gdbsci/, scitab/, trap34/: Add directories.
549
5502001-01-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
551
552        * Makefile.am, README, console/console-io.c, start/start.S,
553        startup/linkcmds: Update to make shsim closer to functional.
554
5552001-01-03      Joel Sherrill <joel@OARcorp.com>
556
557        * console/console-io.c: Added console_initialize_hardware().
558
5592000-11-27      Joel Sherrill <joel@OARcorp.com>
560
561        * The shsim is for the SH simulator in gdb. It should be able
562        to be used with multiple SH CPU models.
563        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs,
564        configure.in, clock/.cvsignore, clock/Makefile.am,
565        clock/clockdrv.c, console/.cvsignore, console/Makefile.am,
566        console/console-io.c, console/console-support.S,
567        include/.cvsignore, include/Makefile.am, include/bsp.h,
568        start/.cvsignore, start/Makefile.am, start/regs.S,
569        start/start.S, startup/.cvsignore, startup/Makefile.am,
570        startup/bspstart.c, startup/linkcmds, wrapup/.cvsignore,
571        wrapup/Makefile.am: New files.
Note: See TracBrowser for help on using the repository browser.