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

4.104.115
Last change on this file since fa6f92df was fa6f92df, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/08 at 18:42:02

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

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