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

4.104.115
Last change on this file since df393962 was df393962, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/08 at 20:34:02

2008-12-04 Joel Sherrill <joel.sherrill@…>

  • bsp_specs: Move -e start from *link to *startfile to avoid warning for undefined entry symbol when linking relocatables with binutils 2.19.
  • Property mode set to 100644
File size: 19.5 KB
Line 
12008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * bsp_specs: Move -e start from *link to *startfile to avoid warning
4        for undefined entry symbol when linking relocatables with binutils
5        2.19.
6
72008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
8
9        * Makefile.am, preinstall.am: Use shared tm27.h stub.
10        * include/tm27.h: Removed.
11
122008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
13
14        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
15        of building libbspstart.a, using automake-rules.
16
172008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
18
19        * Makefile.am: Eliminate *_SOURCES.
20
212008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
22
23        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
24        components.
25
262008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
27
28        * Makefile.am: Remove noinst_PROGRAMS (Unused).
29
302008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
33
342008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * configure.ac: Make letting boot_card() handle work area allocation
37        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
38        BSP_BOOTCARD_OPTIONS.
39
402008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * Makefile.am, startup/linkcmds, startup/linkcmds.ram,
43        startup/linkcmds.rom: Use top level shared bsp_get_work_area()
44        implementation.
45
462008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
47
48        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
49        shared bsp_get_work_area() in its own file and rely on BSP Framework
50        to perform more initialization. After factoring this out, it turned
51        out that all SuperH BSPs has the same bsp_start() implementation so
52        this was made shared.
53        * startup/bspstart.c: Removed.
54
552008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
56
57        * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
58        implementations. In this phase, all prototypes were removed from
59        bsp.h and empty implementations were removed and made to use the
60        shared stub.
61        * startup/bspclean.c: Removed.
62
632008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
66        Framework to ask the BSP where it has memory for the RTEMS Workspace
67        and C Program Heap. These collectively are referred to as work area.
68        If the BSP supports this, then it does not have to include code to
69        split the available memory between the two areas. This reduces the
70        amount of code in the BSP specific bspstart.c file. Additionally, the
71        shared framework can initialize the C Library, call
72        rtems_debug_enable(), and dirty the work area memory. Until most/all
73        BSPs support this new capability, if the BSP supports this, it should
74        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
75        When the transition is complete, this autoconf macro can be removed.
76
772008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * Makefile.am: Rework to avoid .rel files.
80
812008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * startup/bspstart.c: Refactored and renamed initialization routines to
84        rtems_initialize_data_structures, rtems_initialize_before_drivers,
85        rtems_initialize_device_drivers, and
86        rtems_initialize_start_multitasking. This opened the sequence up so
87        that bootcard() could provide a more robust and flexible framework
88        which is easier to explain and understand. This also lays the
89        groundwork for sharing the division of available memory between the
90        RTEMS workspace and heap and the C library initialization across all
91        BSPs.
92
932008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * startup/linkcmds: Add wildcard to gcc_except_table section so
96        programs compiled with gcc 4.3.x can link.
97
982007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
101        Configuration Table. Use the RTEMS provided accessor macros to obtain
102        configuration fields.
103
1042007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
107        from CPU Table to Configuration Table. Eliminate CPU Table from all
108        ports. Delete references to CPU Table in all forms.
109
1102007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
111
112        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
113        Table fields to the Configuration Table. This included
114        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
115        do_zero_of_workspace, extra_mpci_receive_server_stack,
116        stack_allocate_hook, and stack_free_hook. As a side-effect of this
117        effort some multiprocessing code was made conditional and some style
118        clean up occurred.
119
1202007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
121
122        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
123        SuperH CPU Table and define another mechanism for drivers to obtain
124        this information.
125
1262007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
127
128        * Makefile.am: Separate debug IO from console so console driver is not
129        linked in all the time. This manaifested itself when the IO manager
130        optional manager stub dropped some symbols.
131
1322007-05-03      Joel Sherrill <joel@OARcorp.com>
133
134        * startup/linkcmds: Handle .data.* sections
135
1362007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
137
138        * bsp_specs: Remove qrtems_debug.
139
1402007-04-02      Joel Sherrill <joel@OARcorp.com>
141
142        * Makefile.am: Add dummy printk support so all tests link.
143
1442006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * configure.ac: New BUG-REPORT address.
147
1482006-11-15      Joel Sherrill <joel@OARcorp.com>
149
150        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
151        file and simplified initialization.
152
1532006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
154
155        * Makefile.am: Remove superfluous -DASM.
156
1572006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
158
159        * configure.ac: Require autoconf-2.60. Require automake-1.10.
160
1612006-06-24      Joel Sherrill <joel@OARcorp.com>
162
163        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
164        .rela.dyn sections.
165
1662006-03-08      Joel Sherrill <joel@OARcorp.com>
167
168        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
169        .gnu.linkonce.b.* section.
170
1712006-02-08      Joel Sherrill <joel@OARcorp.com>
172
173        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
174        sections required by newer gcc versions.
175
1762006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
177
178        * Makefile.am: Add preinstall.am.
179
1802005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * include/bsp.h: New header guard.
183
1842005-05-11      Joel Sherrill <joel@OARcorp.com>
185
186        * startup/linkcmds: Add .rodata.* sections.
187
1882005-05-03      Joel Sherrill <joel@OARcorp.com>
189
190        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
191        overflow of _CPU_Interrupt_stack_high calculation.
192
1932005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
194
195        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
196
1972005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * Makefile.am: Remove build-variant support.
200
2012004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        * configure.ac: Require automake > 1.9.
204
2052004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        PR 610/bsps
208        * Makefile.am: Add include/tm27.h, Cosmetics.
209        * include/tm27.h: Final cosmetics.
210
2112004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
212
213        * include/bsp.h: Split out tmtest27 support.
214        * include/tm27.h: New.
215
2162004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
217
218        PR 613/bsps
219        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
220
2212004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        PR 614/bsps
224        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
225
2262004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
227
228        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
229
2302004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
231
232        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
233        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
234        * startup/hw_init.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
235
2362004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
237
238        * include/bsp.h, startup/bspstart.c, startup/hw_init.c: Convert to
239        using c99 fixed size types.
240
2412004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * Makefile.am: Reflect changes to bsp.am.
244        Preinstall dist_project_lib*.
245
2462004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * Makefile.am: Reflect changes to bsp.am.
249
2502004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
251
252        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
253
2542004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
255
256        * Makefile.am: Pickup files from ../../sh/shared instead of
257        ../shared. Reformat.
258
2592004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
260
261        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
262        startup/Makefile.am, wrapup/Makefile.am.
263        Use automake compilation rules.
264        * console/Makefile.am, scitab/Makefile.am,
265        startup/Makefile.am, wrapup/Makefile.am: Remove.
266        * configure.ac: Reflect changes above.
267
2682004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
269
270        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
271        Add RTEMS_PROG_CCAS.
272
2732004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Add PREINSTALL_DIRS.
276        * wrapup/Makefile.am: Reflect changes to libcpu.
277
2782004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * wrapup/Makefile.am: Reflect changes to libcpu.
281
2822004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
285        Add PRE/TMPINSTALL_FILES to CLEANFILES.
286        * startup/Makefile.am: Ditto.
287
2882004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * start/Makefile.am: Remove.
291        * Makefile.am: Merge-in start/Makefile.am.
292        * configure.ac: Reflect changes above.
293
2942004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        * wrapup/Makefile.am: Eliminate $(LIB).
297        Use noinst_DATA to trigger building libbsp.a.
298
2992003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
302        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
303
3042003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
305
306        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
307        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
308
3092003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
312
3132003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * start/Makefile.am: Misc cleanups and fixes.
316        * startup/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        * console/Makefile.am: Cosmetics.
322        * startup/Makefile.am: Cosmetics.
323        * wrapup/Makefile.am: Cosmetics.
324
3252003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * console/Makefile.am: Remove all-local: $(ARCH).
328        * scitab/Makefile.am: Remove all-local: $(ARCH).
329        * start/Makefile.am: Remove all-local: $(ARCH).
330        * startup/Makefile.am: Remove all-local: $(ARCH).
331        * wrapup/Makefile.am: Remove all-local: $(ARCH).
332
3332003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * Makefile.am: Merge-in include/Makefile.am.
336        Reflect changes to bsp.am.
337        * include/Makefile.am: Remove.
338        * configure.ac: Reflect changes above.
339
3402003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * bsp_specs: Remove *lib:.
343
3442003-09-04      Joel Sherrill <joel@OARcorp.com>
345
346        * console/config.c, include/bsp.h, include/coverhd.h, start/start.S,
347        start/start.ram, start/start.rom, startup/bspclean.c,
348        startup/bspstart.c, startup/hw_init.c, startup/linkcmds,
349        startup/linkcmds.ram, startup/linkcmds.rom: URL for license changed.
350
3512003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * Makefile.am: Reflect having moved aclocal/.
354
3552003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
356
357        * Makefile.am: Reflect having moved automake/.
358        * console/Makefile.am: Reflect having moved automake/.
359        * include/Makefile.am: Reflect having moved automake/.
360        * scitab/Makefile.am: Reflect having moved automake/.
361        * start/Makefile.am: Reflect having moved automake/.
362        * startup/Makefile.am: Reflect having moved automake/.
363        * wrapup/Makefile.am: Reflect having moved automake/.
364
3652003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
368
3692003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        PR 445/bsps
372        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
373        Remove cpp, old_cpp (now unused).
374
3752003-06-13      Joel Sherrill <joel@OARcorp.com>
376
377        * startup/linkcmds: Removed warnings.
378
3792003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * configure.ac: Remove AC_CONFIG_AUX_DIR.
382
3832003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
386
3872003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: AC_PREREQ(2.57).
390
3912003-01-28      Joel Sherrill <joel@OARcorp.com>
392
393        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix to
394        work around truncated section names.
395
3962003-01-20      Joel Sherrill <joel@OARcorp.com>
397
398        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
399        FreeBSD sysctl() sections.
400
4012003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
404
4052003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
406
407        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
408        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
409        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
410        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
411
4122002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * start/Makefile.am: Use install-data-local to install startfile.
415
4162002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
419
4202002-11-07      Joel Sherrill <joel@OARcorp.com>
421
422        * startup/linkcmds: Include all .rodata* sections.
423
4242002-11-01      Joel Sherrill <joel@OARcorp.com>
425
426        * start/start.S, startup/hw_init.c: Removed warnings.
427
4282002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * .cvsignore: Reformat.
431        Add autom4te*cache.
432        Remove autom4te.cache.
433
4342002-09-14      Joel Sherrill <joel@OARcorp.com>
435
436        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
437        of all calls to bsp_libc_init() resulted in some cleanup here.
438
4392002-08-21      Joel Sherrill <joel@OARcorp.com>
440
441        * bsp_specs: Added support for -nostdlibs.
442
4432002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
446
4472002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
450        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
451        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
452        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
453
4542002-07-25      Joel Sherrill <joel@OARcorp.com>
455
456        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
457        to remove problems linking empty main(){} with BSP.
458
4592002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * start/Makefile.am: Eliminate PGMS.
462        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
463
4642002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
467
4682002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
471        Remove $(OBJS) from all-local.
472
4732002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
476
4772001-05-09      Joel Sherrill <joel@OARcorp.com>
478
479        * startup/linkcmds: In support of gcc 3.1, added one of more
480        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
481        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
482        and direction of segments to memory regions may also have been
483        addressed.  This was a sweep across all BSPs.
484 
4852002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * configure.ac:
488        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
489        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
490        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
491        * Makefile.am: Remove AUTOMAKE_OPTIONS.
492        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
493        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
494        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
495        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
496        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
497
4982001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
499
500        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
501
5022001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: Add RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ),
505        RTEMS_BSPOPTS_*(START_HW_INIT),
506        RTEMS_BSPOPTS_*(STANDALONE_EVB).
507        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
508
5092001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
512
5132001-10-12      Joel Sherrill <joel@OARcorp.com>
514
515        * include/bsp.h, start/start.S, start/start.ram, start/start.rom,
516        startup/bspclean.c, startup/bspstart.c, startup/linkcmds,
517        startup/linkcmds.ram, startup/linkcmds.rom: Fixed typo.
518
5192001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
522        * configure.in: Remove.
523        * configure.ac: New file, generated from configure.in by autoupdate.
524
5252001-09-27      Joel Sherrill <joel@OARcorp.com>
526
527        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
528
5292001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
532        * startup/Makefile.am: Use 'PREINSTALL_FILES ='.
533
5342001-09-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
535
536        * scitab/Makefile.am: Remove stray blank from SCITAB rule.
537
5382001-08-01  Radzislaw Galler  <rgaller@et.put.poznan.pl>
539
540        * include/bsp.h: Disabled redefinition of
541        CONSOLE_DRIVER_TABLE_ENTRY. Some "FIXME:" comments added.
542        * console/config.c: New file. Definitions of externs referenced
543        from libbsp/shared/console.c.
544        * console/Makefile.am: Changed VPATH to point to
545        libbsp/shared. Added config.c to C_FILES and EXTRA_DIST.
546
5472001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
548
549        * configure.in: Add bspopts.h.
550        * include/.cvsignore: Add bspopts.h*, stamp-h*.
551        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
552        * include/bsp.h: Include bspopts.h.
553        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
554
5552001-06-19      Joel Sherrill <joel@OARcorp.com>
556
557        * scitab/Makefile.am, startup/Makefile.am: Use CPU_CLOCK_RATE_HZ as
558        it is called in configure.in instead of HZ.
559
5602001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
561
562        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), add
563        bspopts.h.     
564        * include/.cvsignore: Add stamp-h*, bspopts.h*.
565        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
566        * include/bsp.h: Add bspopts.h.
567        * startup/bspstart.c: Replace HZ w/ CPU_CLOCK_RATE_HZ.
568
5692001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * startup/linkcmds: Remove OUTPUT_FORMAT.
572
5732001-01-22  Radzislaw Galler  <rgaller@et.put.poznan.pl>
574
575        * README.EVB7045F: New file.
576        * README: Additions and corrections.
577        * include/bsp.h: Switch console to sci0.
578
5792001-01-05      Joel Sherrill <joel@OARcorp.com>
580
581        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
582        the movement of this component to libmisc.
583        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
584
5852000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
586
587        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
588
5892000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
590
591        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
592
5932000-11-01      Joel Sherrill <joel@OARcorp.com>
594
595        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
596        and libcsupport.h moved from libc to lib/include/rtems and
597        now must be referenced as <rtems/XXX.h>.   Header file order
598        was cleaned up while doing this.
599
6002000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
603        Switch to GNU canonicalization.
604
6052000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
606
607        * scitab/Makefile.am: PROJECT_TOPdir.
608
6092000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
610
611        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
612        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
613
6142000-08-10      Joel Sherrill <joel@OARcorp.com>
615
616        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.