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

4.104.115
Last change on this file since e751e66 was e751e66, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/08 at 13:35:24

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

  • Makefile.am: Now runs using fake clock ticker.
  • clock/clockdrv.c: Removed.
  • Property mode set to 100644
File size: 19.5 KB
Line 
12008-09-25      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am: Now runs using fake clock ticker.
4        * clock/clockdrv.c: Removed.
5
62008-09-24      Joel Sherrill <joel.sherrill@oarcorp.com>
7
8        * clock/clockdrv.c: Fix comment.
9
102008-09-24      Joel Sherrill <joel.sherrill@OARcorp.com>
11
12        * Makefile.am, configure.ac, clock/clockdrv.c, include/bsp.h,
13        start/start.S, startup/linkcmds: Now runs ticker and hello on
14        sh-rtems4.10-gdb. The SH simulator in gdb has no hardware IO or
15        interrupt simulation so we use the trap interface to print.
16        * gdbsci/gdbsci.c: Removed.
17
182008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
19
20        * configure.ac: Make letting boot_card() handle work area allocation
21        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
22        BSP_BOOTCARD_OPTIONS.
23
242008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
25
26        * Makefile.am, startup/linkcmds, startup/linkcmds.sim: Use top level
27        shared bsp_get_work_area() implementation.
28
292008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * startup/bspstart.c: Removed.
32
332008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
34
35        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
36        shared bsp_get_work_area() in its own file and rely on BSP Framework
37        to perform more initialization. After factoring this out, it turned
38        out that all SuperH BSPs has the same bsp_start() implementation so
39        this was made shared.
40
412008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
44        phase, all prototypes were removed from bsp.h and empty
45        implementations were removed and made to use the shared stub.
46
472008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
48
49        * trap34/console-io.c: Add missing prototypes.
50
512008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
54        Framework to ask the BSP where it has memory for the RTEMS Workspace
55        and C Program Heap. These collectively are referred to as work area.
56        If the BSP supports this, then it does not have to include code to
57        split the available memory between the two areas. This reduces the
58        amount of code in the BSP specific bspstart.c file. Additionally, the
59        shared framework can initialize the C Library, call
60        rtems_debug_enable(), and dirty the work area memory. Until most/all
61        BSPs support this new capability, if the BSP supports this, it should
62        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
63        When the transition is complete, this autoconf macro can be removed.
64
652008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
66
67        * Makefile.am: Rework to avoid .rel files.
68
692008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
70
71        * startup/bspstart.c: Refactored and renamed initialization routines to
72        rtems_initialize_data_structures, rtems_initialize_before_drivers,
73        rtems_initialize_device_drivers, and
74        rtems_initialize_start_multitasking. This opened the sequence up so
75        that bootcard() could provide a more robust and flexible framework
76        which is easier to explain and understand. This also lays the
77        groundwork for sharing the division of available memory between the
78        RTEMS workspace and heap and the C library initialization across all
79        BSPs.
80
812008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * startup/linkcmds, startup/linkcmds.sim: Add wildcard to
84        gcc_except_table section so programs compiled with gcc 4.3.x can
85        link.
86
872007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
90        Configuration Table. Use the RTEMS provided accessor macros to obtain
91        configuration fields.
92
932007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
96        from CPU Table to Configuration Table. Eliminate CPU Table from all
97        ports. Delete references to CPU Table in all forms.
98
992007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
102        Table fields to the Configuration Table. This included
103        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
104        do_zero_of_workspace, extra_mpci_receive_server_stack,
105        stack_allocate_hook, and stack_free_hook. As a side-effect of this
106        effort some multiprocessing code was made conditional and some style
107        clean up occurred.
108
1092007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
110
111        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
112        SuperH CPU Table and define another mechanism for drivers to obtain
113        this information.
114
1152007-07-24      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * Makefile.am, preinstall.am, startup/linkcmds: Save the old linker
118        script as linkcmds.sim and use one with enough memory to link all
119        tests so we can at least build things.
120        * startup/linkcmds.sim: New file.
121
1222007-05-03      Joel Sherrill <joel@OARcorp.com>
123
124        * startup/linkcmds: Handle .data.* sections. Also change directive
125        placing stack on onchip_ram to make ld happy.
126
1272007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
128
129        * bsp_specs: Remove qrtems_debug.
130
1312007-04-02      Joel Sherrill <joel@OARcorp.com>
132
133        * Makefile.am: Add dummy printk support so all tests link.
134
1352006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
136
137        * configure.ac: New BUG-REPORT address.
138
1392006-11-15      Joel Sherrill <joel@OARcorp.com>
140
141        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
142        file and simplified initialization.
143
1442006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * Makefile.am: Remove superfluous -DASM.
147
1482006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
149
150        * configure.ac: Require autoconf-2.60. Require automake-1.10.
151
1522006-06-24      Joel Sherrill <joel@OARcorp.com>
153
154        * startup/linkcmds: Add .rela.dyn sections.
155
1562006-03-08      Joel Sherrill <joel@OARcorp.com>
157
158        * startup/linkcmds: Add .gnu.linkonce.b.* section.
159
1602006-02-08      Joel Sherrill <joel@OARcorp.com>
161
162        * startup/linkcmds: Add sections required by newer gcc versions.
163
1642006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
165
166        * Makefile.am: Add preinstall.am.
167
1682005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
169
170        * include/bsp.h: New header guard.
171
1722005-05-20      Ralf Corsepius <ralf.corsepius@rtems.org>
173
174        * Makefile.am: Add SHGEN.
175        * startup/linkcmds: Add missing sections.
176
1772005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
178
179        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
180
1812005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
182
183        * Makefile.am: Remove build-variant support.
184
1852004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
186
187        * configure.ac: Require automake > 1.9.
188
1892004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
190
191        PR 610/bsps
192        * Makefile.am: Add include/tm27.h, Cosmetics.
193        * include/tm27.h: Final cosmetics.
194
1952004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
196
197        * include/bsp.h: Split out tmtest27 support.
198        * include/tm27.h: New.
199
2002004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
201
202        PR 613/bsps
203        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
204
2052004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        PR 614/bsps
208        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
209
2102004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
211
212        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
213
2142004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
215
216        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
217        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
218        * gdbsci/gdbsci.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
219
2202004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
221
222        * gdbsci/gdbsci.c, include/bsp.h, startup/bspstart.c: Convert to
223        using c99 fixed size types.
224
2252004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
226
227        * Makefile.am: Reflect changes to bsp.am.
228        Preinstall dist_project_lib*.
229
2302004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
231
232        * Makefile.am: Reflect changes to bsp.am.
233
2342004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
235
236        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
237
2382004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * Makefile.am: Pickup files from ../../sh/shared instead of
241        ../shared. Reformat.
242
2432004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
244
245        * Makefile.am: Cosmetics.
246
2472004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * Makefile.am: Merge-in clock/Makefile.am, gdbsci/Makefile.am,
250        startup/Makefile.am, wrapup/Makefile.am, console/Makefile.am,
251        scitab/Makefile.am, trap34/Makefile.am. Use automake compilation rules.
252        * clock/Makefile.am, gdbsci/Makefile.am, startup/Makefile.am,
253        wrapup/Makefile.am, console/Makefile.am, scitab/Makefile.am,
254        trap34/Makefile.am: Remove.
255        * configure.ac: Reflect changes above.
256
2572004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
258
259        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
260        Add RTEMS_PROG_CCAS.
261
2622004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Add PREINSTALL_DIRS.
265        * wrapup/Makefile.am: Reflect changes to libcpu.
266
2672004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * clock/Makefile.am: Remove bogus EXTRA_DIST.
270        * gdbsci/Makefile.am: Remove bogus EXTRA_DIST.
271        * wrapup/Makefile.am: Reflect changes to libcpu.
272
2732004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
276        Add PRE/TMPINSTALL_FILES to CLEANFILES.
277        * startup/Makefile.am: Ditto.
278
2792004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * start/Makefile.am: Remove.
282        * Makefile.am: Merge-in start/Makefile.am.
283        * configure.ac: Reflect changes above.
284
2852004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * start/regs.S: Remove.
288
2892004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * wrapup/Makefile.am: Eliminate $(LIB).
292        Use noinst_DATA to trigger building libbsp.a.
293
2942003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
297        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
298
2992003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
302        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
303
3042003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
307
3082003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * start/Makefile.am: Misc cleanups and fixes.
311        * startup/Makefile.am: Misc cleanups and fixes.
312        * wrapup/Makefile.am: Misc cleanups and fixes.
313
3142003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * Makefile.am: Add preinstallation dirstamp support.
317        * clock/Makefile.am: Cosmetics.
318        * console/Makefile.am: Cosmetics.
319        * gdbsci/Makefile.am: Cosmetics.
320        * scitab/Makefile.am: Cosmetics.
321        * startup/Makefile.am: Cosmetics.
322        * trap34/Makefile.am: Cosmetics.
323        * wrapup/Makefile.am: Cosmetics.
324
3252003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * clock/Makefile.am: Remove all-local: $(ARCH).
328        * console/Makefile.am: Remove all-local: $(ARCH).
329        * gdbsci/Makefile.am: Remove all-local: $(ARCH).
330        * scitab/Makefile.am: Remove all-local: $(ARCH).
331        * start/Makefile.am: Remove all-local: $(ARCH).
332        * startup/Makefile.am: Remove all-local: $(ARCH).
333        * trap34/Makefile.am: Remove all-local: $(ARCH).
334        * wrapup/Makefile.am: Remove all-local: $(ARCH).
335
3362003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Merge-in include/Makefile.am.
339        Reflect changes to bsp.am.
340        * include/Makefile.am: Remove.
341        * configure.ac: Reflect changes above.
342
3432003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * bsp_specs: Remove *lib:.
346
3472003-09-04      Joel Sherrill <joel@OARcorp.com>
348
349        * include/bsp.h, start/start.S, startup/bspstart.c,
350        trap34/console-io.c: URL for license changed.
351
3522003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * Makefile.am: Reflect having moved aclocal/.
355
3562003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * Makefile.am: Reflect having moved automake/.
359        * clock/Makefile.am: Reflect having moved automake/.
360        * console/Makefile.am: Reflect having moved automake/.
361        * gdbsci/Makefile.am: Reflect having moved automake/.
362        * include/Makefile.am: Reflect having moved automake/.
363        * scitab/Makefile.am: Reflect having moved automake/.
364        * start/Makefile.am: Reflect having moved automake/.
365        * startup/Makefile.am: Reflect having moved automake/.
366        * trap34/Makefile.am: Reflect having moved automake/.
367        * wrapup/Makefile.am: Reflect having moved automake/.
368
3692003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
372
3732003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        PR 445/bsps
376        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
377        Remove cpp, old_cpp (now unused).
378
3792003-06-13      Joel Sherrill <joel@OARcorp.com>
380
381        * startup/linkcmds: Removed warnings.
382
3832003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * configure.ac: Remove AC_CONFIG_AUX_DIR.
386
3872003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
390
3912003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * configure.ac: AC_PREREQ(2.57).
394
3952003-01-28      Joel Sherrill <joel@OARcorp.com>
396
397        * startup/linkcmds: Fix to work around truncated section names.
398
3992003-01-20      Joel Sherrill <joel@OARcorp.com>
400
401        * startup/linkcmds*: Add FreeBSD sysctl() sections.
402
4032003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
406        Eliminate unused GENERIC_FILES.
407
4082003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
411        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
412        * gdbsci/Makefile.am: Don't include @RTEMS_BSP@.cfg.
413        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
414        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
415        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
416        * trap34/Makefile.am: Don't include @RTEMS_BSP@.cfg.
417
4182002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * start/Makefile.am: Use install-data-local to install startfile.
421
4222002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
425
4262002-11-07      Joel Sherrill <joel@OARcorp.com>
427
428        * startup/linkcmds: Include all .rodata* sections.
429
4302002-11-01      Joel Sherrill <joel@OARcorp.com>
431
432        * gdbsci/gdbsci.c: Removed warnings.
433
4342002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * .cvsignore: Reformat.
437        Add autom4te*cache.
438        Remove autom4te.cache.
439
4402002-09-14      Joel Sherrill <joel@OARcorp.com>
441
442        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
443        of all calls to bsp_libc_init() resulted in some cleanup here.
444
4452002-08-21      Joel Sherrill <joel@OARcorp.com>
446
447        * bsp_specs: Added support for -nostdlibs.
448
4492002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
452        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
453
4542002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
457        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
458        * gdbsci/Makefile.am: Use .$(OBJEXT) instead of .o.
459        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
460        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
461        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
462        * trap34/Makefile.am: Use .$(OBJEXT) instead of .o.
463
4642002-07-25      Joel Sherrill <joel@OARcorp.com>
465
466        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
467        to remove problems linking empty main(){} with BSP.
468
4692002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * start/Makefile.am: Eliminate PGM.
472        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
473
4742002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
477
4782002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
481        Remove $(OBJS) from all-local.
482
4832002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
484
485        * wrapup/Makefile.am: Add $(LIB) to all-local.
486
4872002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
490
4912001-05-09      Joel Sherrill <joel@OARcorp.com>
492
493        * startup/linkcmds: In support of gcc 3.1, added one of more
494        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
495        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
496        and direction of segments to memory regions may also have been
497        addressed.  This was a sweep across all BSPs.
498 
4992002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * configure.ac:
502        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
503        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
504        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
505        * Makefile.am: Remove AUTOMAKE_OPTIONS.
506        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
507        * gdbsci/Makefile.am: Remove AUTOMAKE_OPTIONS.
508        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
509        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
510        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
511        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
512        * trap34/Makefile.am: Remove AUTOMAKE_OPTIONS.
513        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
514
5152001-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
518        * console/Makefile.am: C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o).
519        * wrapup/Makefile.am: Add gdbsci, scitab to BSP_FILES, add
520        CPU_FILES.
521
5222001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
523
524        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
525
5262001-10-12      Joel Sherrill <joel@OARcorp.com>
527
528        * start/start.S: Fixed typo.
529
5302001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
531
532        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
533        * configure.in: Remove.
534        * configure.ac: New file, generated from configure.in by autoupdate.
535
5362001-09-27      Joel Sherrill <joel@OARcorp.com>
537
538        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
539
5402001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
541
542        * include/Makefile.am: Use 'CLEANFILES ='.
543        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
544
5452001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * configure.in: Add bspopts.h.
548        * include/.cvsignore: Add bspopts.h*, stamp-h*.
549        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
550        * include/bsp.h: Include bspopts.h.
551        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
552
5532001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
554
555        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), adapt
556        bspopts.h handling to other sh-BSPs.
557        * include/.cvsignore: Add stamp-h*, bspopts.h*.
558        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
559        * startup/bspstart.c: Reworked, based on the amos BSP.
560
5612001-05-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
562
563        * scitab/.cvsignore: Add.
564        * configure.in: Add --enable-console, CPU_CLOCK_RATE_HZ, autoheader
565        bspopt.h.
566        * include/bsp.h: Complete rewrite based on the AMOS-BSP.
567        * README: Update.
568        * bsp_specs: copy from gensh1
569
5702001-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
571
572        * Makefile.am: Add scitab, gdbsci to SUBDIRS.
573        * include/gdbsci.h: New file.
574        * include/.cvsignore: Add stamp-h? and bspopts.h*.
575        * console/Makefile.am: Use shared/console.c.
576        * console/console-io.c, console/console-support.S: Remove.
577
5782001-01-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
579
580        * gdbsci/, scitab/, trap34/: Add directories.
581
5822001-01-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * Makefile.am, README, console/console-io.c, start/start.S,
585        startup/linkcmds: Update to make shsim closer to functional.
586
5872001-01-03      Joel Sherrill <joel@OARcorp.com>
588
589        * console/console-io.c: Added console_initialize_hardware().
590
5912000-11-27      Joel Sherrill <joel@OARcorp.com>
592
593        * The shsim is for the SH simulator in gdb. It should be able
594        to be used with multiple SH CPU models.
595        * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs,
596        configure.in, clock/.cvsignore, clock/Makefile.am,
597        clock/clockdrv.c, console/.cvsignore, console/Makefile.am,
598        console/console-io.c, console/console-support.S,
599        include/.cvsignore, include/Makefile.am, include/bsp.h,
600        start/.cvsignore, start/Makefile.am, start/regs.S,
601        start/start.S, startup/.cvsignore, startup/Makefile.am,
602        startup/bspstart.c, startup/linkcmds, wrapup/.cvsignore,
603        wrapup/Makefile.am: New files.
Note: See TracBrowser for help on using the repository browser.