source: rtems/c/src/lib/libbsp/sh/gensh4/ChangeLog @ 8ee3775

4.115
Last change on this file since 8ee3775 was 8ee3775, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/02/11 at 15:01:43

2011-02-02 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Require autoconf-2.68, automake-1.11.1.
  • Property mode set to 100644
File size: 18.2 KB
Line 
12011-02-02      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Require autoconf-2.68, automake-1.11.1.
4
52010-04-24      Joel Sherrill <joel.sherrill@oarcorp.com>
6
7        * start/start.S: Verify boot_card is invoked properly with argc, argv.
8
92010-04-20      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * console/console.c: Reflect termios-API having changed.
12
132009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * make/custom/gensh4.cfg: Remove RTEMS_BSP_FAMILY.
16
172009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * configure.ac: Don't add -ansi -fasm to CFLAGS.
20
212009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * make/custom/gensh4.cfg: New (relocated from /make/custom).
24
252009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
26
27        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
28
29 2009-07-16     Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
32        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
33        have the same options.
34
352009-04-28      Chris Johns <chrisj@rtems.org>
36
37        * start/start.S: Update for boot_card command line change.
38
392008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
40
41        * bsp_specs: Move -e start from *link to *startfile to avoid warning
42        for undefined entry symbol when linking relocatables with binutils
43        2.19.
44
452008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
46
47        * Makefile.am, preinstall.am: Use shared stub coverhd.h
48        * include/coverhd.h: Removed.
49
502008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
51
52        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
53        of building libbspstart.a, using automake-rules.
54
552008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
56
57        * Makefile.am: Eliminate *_SOURCES.
58
592008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
60
61        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
62        components.
63
642008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
65
66        * Makefile.am: Remove noinst_PROGRAMS (Unused).
67
682008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
69
70        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
71
722008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
73
74        * configure.ac: Make letting boot_card() handle work area allocation
75        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
76        BSP_BOOTCARD_OPTIONS.
77
782008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
79
80        * Makefile.am, startup/linkcmds, startup/linkcmds.rom,
81        startup/linkcmds.rom2ram: Use top level shared bsp_get_work_area()
82        implementation.
83
842008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
87        shared bsp_get_work_area() in its own file and rely on BSP Framework
88        to perform more initialization. After factoring this out, it turned
89        out that all SuperH BSPs has the same bsp_start() implementation so
90        this was made shared.
91        * startup/bspstart.c: Removed.
92
932008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
94
95        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
96        phase, all prototypes were removed from bsp.h and empty
97        implementations were removed and made to use the shared stub.
98
992008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
102        Framework to ask the BSP where it has memory for the RTEMS Workspace
103        and C Program Heap. These collectively are referred to as work area.
104        If the BSP supports this, then it does not have to include code to
105        split the available memory between the two areas. This reduces the
106        amount of code in the BSP specific bspstart.c file. Additionally, the
107        shared framework can initialize the C Library, call
108        rtems_debug_enable(), and dirty the work area memory. Until most/all
109        BSPs support this new capability, if the BSP supports this, it should
110        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
111        When the transition is complete, this autoconf macro can be removed.
112
1132008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        * Makefile.am: Rework to avoid .rel files.
116
1172008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
118
119        * startup/bspstart.c: Refactored and renamed initialization routines to
120        rtems_initialize_data_structures, rtems_initialize_before_drivers,
121        rtems_initialize_device_drivers, and
122        rtems_initialize_start_multitasking. This opened the sequence up so
123        that bootcard() could provide a more robust and flexible framework
124        which is easier to explain and understand. This also lays the
125        groundwork for sharing the division of available memory between the
126        RTEMS workspace and heap and the C library initialization across all
127        BSPs.
128
1292008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
130
131        * console/console.c: Remove all references to console_reserve_resources
132        and termios_reserve_resources.
133
1342008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * startup/linkcmds: Add wildcard to gcc_except_table section so
137        programs compiled with gcc 4.3.x can link.
138
1392007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
142        Configuration Table. Use the RTEMS provided accessor macros to obtain
143        configuration fields.
144
1452007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
146
147        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
148        from CPU Table to Configuration Table. Eliminate CPU Table from all
149        ports. Delete references to CPU Table in all forms.
150
1512007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
152
153        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
154        Table fields to the Configuration Table. This included
155        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
156        do_zero_of_workspace, extra_mpci_receive_server_stack,
157        stack_allocate_hook, and stack_free_hook. As a side-effect of this
158        effort some multiprocessing code was made conditional and some style
159        clean up occurred.
160
1612007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
162
163        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
164        SuperH CPU Table and define another mechanism for drivers to obtain
165        this information.
166
1672007-05-03      Joel Sherrill <joel@OARcorp.com>
168
169        * startup/linkcmds: Handle .data.* sections
170
1712007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
172
173        * bsp_specs: Remove qrtems_debug.
174
1752007-04-02      Joel Sherrill <joel@OARcorp.com>
176
177        * Makefile.am: Add dummy printk support so all tests link.
178
1792006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
180
181        * configure.ac: New BUG-REPORT address.
182
1832006-11-15      Joel Sherrill <joel@OARcorp.com>
184
185        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
186        file and simplified initialization.
187
1882006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
189
190        * Makefile.am: Remove superfluous -DASM.
191
1922006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
193
194        * configure.ac: Require autoconf-2.60. Require automake-1.10.
195
1962006-06-24      Joel Sherrill <joel@OARcorp.com>
197
198        * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add
199        .rela.dyn sections.
200
2012006-03-08      Joel Sherrill <joel@OARcorp.com>
202
203        * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add
204        .gnu.linkonce.b.* section.
205
2062006-02-08      Joel Sherrill <joel@OARcorp.com>
207
208        * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Add
209        sections required by newer gcc versions.
210
2112006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
212
213        * Makefile.am: Add preinstall.am.
214
2152005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
216
217        * include/bsp.h: New header guard.
218
2192005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
222
2232005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
224
225        * Makefile.am: Remove build-variant support.
226
2272004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
228
229        * configure.ac: Require automake > 1.9.
230
2312004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
232
233        PR 610/bsps
234        * Makefile.am: Add include/tm27.h, Cosmetics.
235        * include/tm27.h: Final cosmetics.
236
2372004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
238
239        * include/bsp.h: Split out tmtest27 support.
240        * include/tm27.h: New.
241
2422004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
243
244        PR 613/bsps
245        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
246
2472004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
248
249        PR 614/bsps
250        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
251
2522004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
253
254        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
255
2562004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
257
258        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
259        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
260
2612004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
262
263        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
264        types.
265
2662004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * Makefile.am: Reflect changes to bsp.am.
269        Preinstall dist_project_lib*.
270
2712004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Reflect changes to bsp.am.
274
2752004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
278
2792004-01-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * Makefile.am: Merge-in console/Makefile.am, hw_init/Makefile.am,
282        startup/Makefile.am, wrapup/Makefile.am. Use automake compilation rules.
283        * console/Makefile.am, hw_init/Makefile.am, startup/Makefile.am,
284        wrapup/Makefile.am: Remove.
285        * configure.ac: Reflect changes above.
286
2872004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
290        Add RTEMS_PROG_CCAS.
291
2922004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * Makefile.am: Add PREINSTALL_DIRS.
295        * wrapup/Makefile.am: Reflect changes to libcpu.
296
2972004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * startup/Makefile.am: Remove bogus EXTRA_DIST.
300        * wrapup/Makefile.am: Reflect changes to libcpu.
301
3022004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
303
304        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
305        Add PRE/TMPINSTALL_FILES to CLEANFILES.
306        * startup/Makefile.am: Ditto.
307
3082004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * start/Makefile.am: Remove.
311        * Makefile.am: Merge-in start/Makefile.am.
312        * configure.ac: Reflect changes above.
313
3142004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
315
316        * wrapup/Makefile.am: Eliminate $(LIB).
317        Use noinst_DATA to trigger building libbsp.a.
318
3192003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
322        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
323
3242003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
327        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
328
3292003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
332
3332003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * start/Makefile.am: Misc cleanups and fixes.
336        * startup/Makefile.am: Misc cleanups and fixes.
337
3382003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * Makefile.am: Add preinstallation dirstamp support.
341        * console/Makefile.am: Cosmetics.
342        * hw_init/Makefile.am: Cosmetics.
343        * startup/Makefile.am: Cosmetics.
344        * wrapup/Makefile.am: Cosmetics.
345
3462003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
347
348        * console/Makefile.am: Remove all-local: $(ARCH).
349        * hw_init/Makefile.am: Remove all-local: $(ARCH).
350        * start/Makefile.am: Remove all-local: $(ARCH).
351        * startup/Makefile.am: Remove all-local: $(ARCH).
352        * wrapup/Makefile.am: Remove all-local: $(ARCH).
353
3542003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * Makefile.am: Merge-in include/Makefile.am.
357        Reflect changes to bsp.am.
358        * include/Makefile.am: Remove.
359        * configure.ac: Reflect changes above.
360
3612003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * bsp_specs: Remove *lib:.
364
3652003-09-04      Joel Sherrill <joel@OARcorp.com>
366
367        * console/console.c, hw_init/hw_init.c, include/bsp.h,
368        include/coverhd.h, include/sdram.h, start/start.S,
369        startup/bspstart.c, startup/linkcmds, startup/linkcmds.rom,
370        startup/linkcmds.rom2ram: URL for license changed.
371
3722003-08-20      Joel Sherrill <joel@OARcorp.com>
373
374        * console/console.c: Correct copyright statements.
375
3762003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * Makefile.am: Reflect having moved aclocal/.
379
3802003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
381
382        * Makefile.am: Reflect having moved automake/.
383        * console/Makefile.am: Reflect having moved automake/.
384        * hw_init/Makefile.am: Reflect having moved automake/.
385        * include/Makefile.am: Reflect having moved automake/.
386        * start/Makefile.am: Reflect having moved automake/.
387        * startup/Makefile.am: Reflect having moved automake/.
388        * wrapup/Makefile.am: Reflect having moved automake/.
389
3902003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
393
3942003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        PR 445/bsps
397        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
398        Remove cpp, old_cpp (now unused).
399
4002003-06-13      Joel Sherrill <joel@OARcorp.com>
401
402        * startup/linkcmds: Removed warnings.
403
4042003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * configure.ac: Remove AC_CONFIG_AUX_DIR.
407
4082003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
411
4122003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * configure.ac: AC_PREREQ(2.57).
415
4162003-01-28      Joel Sherrill <joel@OARcorp.com>
417
418        * startup/linkcmds, startup/linkcmds.rom, startup/linkcmds.rom2ram: Fix
419        to work around truncated section names.
420
4212003-01-20      Joel Sherrill <joel@OARcorp.com>
422
423        * startup/linkcmds*: Add FreeBSD sysctl() sections.
424
4252003-01-20      Joel Sherrill <joel@OARcorp.com>
426
427        * startup/linkcmds.rom, startup/linkcmds.rom2ram: Add FreeBSD sysctl()
428        sections.
429
4302003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
433
4342003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
435
436        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
437        * hw_init/Makefile.am: Don't include @RTEMS_BSP@.cfg.
438        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
439        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
440
4412002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * start/Makefile.am: Use install-data-local to install startfile.
444
4452002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
448
4492002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * .cvsignore: Reformat.
452        Add autom4te*cache.
453        Remove autom4te.cache.
454
4552002-09-14      Joel Sherrill <joel@OARcorp.com>
456
457        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
458        of all calls to bsp_libc_init() resulted in some cleanup here.
459
4602002-08-21      Joel Sherrill <joel@OARcorp.com>
461
462        * bsp_specs: Added support for -nostdlibs.
463
4642002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
467
4682002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
471        * hw_init/Makefile.am: Use .$(OBJEXT) instead of .o.
472        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
473        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
474
4752002-07-25      Joel Sherrill <joel@OARcorp.com>
476
477        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
478        to remove problems linking empty main(){} with BSP.
479
4802002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
481
482        * start/Makefile.am: Eliminate PGMS.
483        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
484
4852002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * startup/Makefile.am: Add bsplib_DATA = linkcmds linkcmds.rom
488        linkcmds.rom2ram.
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        * hw_init/Makefile.am: Remove AUTOMAKE_OPTIONS.
515        * include/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-10-29      Joel Sherrill <joel@OARcorp.com>
525
526        * startup/linkcmds: Remove explicit force of output format.
527
5282001-10-26      Alexandra Kossovsky <sasha@oktet.ru>
529
530        * README, console/console.c, hw_init/hw_init.c, include/bsp.h,
531        startup/bspstart.c, startup/linkcmds: Minor fixes post merge.
532
5332001-10-15      Joel Sherrill <joel@OARcorp.com>
534
535        * console/.cvsignore: New file.
536
5372001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
538
539        * configure.ac: Remove AC_SUBST(CPU_CLOCK_RATE_HZ), add
540        START_HW_INIT-support macros, add console/Makefile.
541        * Makefile.am: Add console SUBDIR.
542        * hw_init/Makefile.am: Fix C_FILES, remove AM_CPPFLAGS/HZ.
543        * include/Makefile.am: Add bspopts.h.
544        * include/bsp.h: Comment out SH4_CPU_HZ_Frequency.
545        * startup/bspstart.c: Comment out SH4_CPU_HZ_Frequency.
546        * startup/linkcmds: Comment out OUTPUT_FORMAT for coff
547        compatibility.
548        * wrapup/Makefile.am: Add console to BSP_PIECES.
549        * console/Makefile.am: New.
550        * console/console.c: Moved from libcpu/sh/sh7750/sci/console.c.
551
5522001-10-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * configure.ac: Add bspopts.h; Add CPU_CLOCK_RATE_HZ.
555        * startup/bspstart.c: Replace HZ with CPU_CLOCK_RATE_HZ.
556        * include/.cvsignore: Add stamp-h*, bspopts.h*.
557        * include/bsp.h: Add bspopts.h.
558
5592001-10-11      Alexandra Kossovsky <sasha@oktet.ru>
560
561        * Makefile.am, README, bsp_specs, .cvsignore, include/Makefile.am,
562        include/bsp.h, include/coverhd.h, include/sdram.h, include/.cvsignore,
563        start/Makefile.am, start/start.S, start/.cvsignore, startup/Makefile.am,
564        startup/bspstart.c, startup/linkcmds, startup/linkcmds.rom,
565        startup/linkcmds.rom2ram, startup/.cvsignore, wrapup/Makefile.am,
566        wrapup/.cvsignore, hw_init/Makefile.am, hw_init/hw_init.c,
567        hw_init/.cvsignore, times, configure.ac, ChangeLog:  New files. 
568        Reviewed and updated to latest automake and autoconf standards
569        by Ralf Corsepius <corsepiu@faw.uni-ulm.de>.
570
Note: See TracBrowser for help on using the repository browser.