source: rtems/c/src/lib/libbsp/sh/gensh1/ChangeLog @ 57a40406

4.104.115
Last change on this file since 57a40406 was 57a40406, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/30/08 at 07:12:11

2008-09-30 Ralf Corsépius <ralf.corsepius@…>

  • Makefile.am: Eliminate bsp.am. Build startup files as side-effect of building libbspstart.a, using automake-rules.
  • Property mode set to 100644
File size: 18.5 KB
Line 
12008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
4        of building libbspstart.a, using automake-rules.
5
62008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * Makefile.am: Eliminate *_SOURCES.
9
102008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
13        components.
14
152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
16
17        * Makefile.am: Remove noinst_PROGRAMS (Unused).
18
192008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
20
21        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
22
232008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * configure.ac: Make letting boot_card() handle work area allocation
26        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
27        BSP_BOOTCARD_OPTIONS.
28
292008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * Makefile.am, configure.ac: Use standardized bsp_cleanup() which can
32        optionally print a message, poll for user to press key, and call
33        bsp_reset(). Using this eliminates the various bsp_cleanup()
34        implementations which had their own implementation and variety of
35        string constants.
36        * startup/bspclean.c: Removed.
37
382008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * Makefile.am, startup/linkcmds: Use top level shared
41        bsp_get_work_area() implementation.
42
432008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
44
45        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
46        shared bsp_get_work_area() in its own file and rely on BSP Framework
47        to perform more initialization. After factoring this out, it turned
48        out that all SuperH BSPs has the same bsp_start() implementation so
49        this was made shared.
50        * startup/bspstart.c: Removed.
51
522008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
53
54        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
55        phase, all prototypes were removed from bsp.h and empty
56        implementations were removed and made to use the shared stub.
57
582008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
59
60        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
61        Framework to ask the BSP where it has memory for the RTEMS Workspace
62        and C Program Heap. These collectively are referred to as work area.
63        If the BSP supports this, then it does not have to include code to
64        split the available memory between the two areas. This reduces the
65        amount of code in the BSP specific bspstart.c file. Additionally, the
66        shared framework can initialize the C Library, call
67        rtems_debug_enable(), and dirty the work area memory. Until most/all
68        BSPs support this new capability, if the BSP supports this, it should
69        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
70        When the transition is complete, this autoconf macro can be removed.
71
722008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
73
74        * Makefile.am: Rework to avoid .rel files.
75
762008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
77
78        * startup/bspstart.c: Refactored and renamed initialization routines to
79        rtems_initialize_data_structures, rtems_initialize_before_drivers,
80        rtems_initialize_device_drivers, and
81        rtems_initialize_start_multitasking. This opened the sequence up so
82        that bootcard() could provide a more robust and flexible framework
83        which is easier to explain and understand. This also lays the
84        groundwork for sharing the division of available memory between the
85        RTEMS workspace and heap and the C library initialization across all
86        BSPs.
87
882008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
89
90        * startup/linkcmds: Add wildcard to gcc_except_table section so
91        programs compiled with gcc 4.3.x can link.
92
932007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
96        Configuration Table. Use the RTEMS provided accessor macros to obtain
97        configuration fields.
98
992007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
102        from CPU Table to Configuration Table. Eliminate CPU Table from all
103        ports. Delete references to CPU Table in all forms.
104
1052007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
106
107        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
108        Table fields to the Configuration Table. This included
109        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
110        do_zero_of_workspace, extra_mpci_receive_server_stack,
111        stack_allocate_hook, and stack_free_hook. As a side-effect of this
112        effort some multiprocessing code was made conditional and some style
113        clean up occurred.
114
1152007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
116
117        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
118        SuperH CPU Table and define another mechanism for drivers to obtain
119        this information.
120
1212007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
122
123        * Makefile.am: Separate debug IO from console so console driver is not
124        linked in all the time. This manaifested itself when the IO manager
125        optional manager stub dropped some symbols.
126
1272007-05-03      Joel Sherrill <joel@OARcorp.com>
128
129        * startup/linkcmds: Handle .data.* sections. Also change directive
130        placing stack on onchip_ram to make ld happy.
131
1322007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
133
134        * bsp_specs: Remove qrtems_debug.
135
1362007-04-02      Joel Sherrill <joel@OARcorp.com>
137
138        * Makefile.am: Add dummy printk support so all tests link.
139
1402006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
141
142        * configure.ac: New BUG-REPORT address.
143
1442006-11-15      Joel Sherrill <joel@OARcorp.com>
145
146        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
147        file and simplified initialization.
148
1492006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
150
151        * Makefile.am: Remove superfluous -DASM.
152
1532006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
154
155        * configure.ac: Require autoconf-2.60. Require automake-1.10.
156
1572006-06-24      Joel Sherrill <joel@OARcorp.com>
158
159        * startup/linkcmds: Add .rela.dyn sections.
160
1612006-03-08      Joel Sherrill <joel@OARcorp.com>
162
163        * startup/linkcmds: Add .gnu.linkonce.b.* section.
164
1652006-02-08      Joel Sherrill <joel@OARcorp.com>
166
167        * startup/linkcmds: Add sections required by newer gcc versions.
168
1692006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
170
171        * Makefile.am: Add preinstall.am.
172
1732005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
174
175        * include/bsp.h: New header guard.
176
1772005-05-11      Joel Sherrill <joel@OARcorp.com>
178
179        * startup/linkcmds: Add .rodata.* 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
2232004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
224
225        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
226        types.
227
2282004-03-03      Joel Sherrill <joel@OARcorp.com>
229
230        * startup/linkcmds: Add more memory and sections so tests can link.
231        This is a generic BSP for a CPU model so OK to do this.
232
2332004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * Makefile.am: Reflect changes to bsp.am.
236        Preinstall dist_project_lib*.
237
2382004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * Makefile.am: Reflect changes to bsp.am.
241
2422004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
245
2462004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * Makefile.am: Pickup files from ../../sh/shared instead of
249        ../shared. Reformat.
250
2512004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * Makefile.am: Cosmetics.
254
2552004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
258        Add RTEMS_PROG_CCAS.
259
2602004-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
263        startup/Makefile.am, wrapup/Makefile.am.
264        Use automake-compilation rules.
265        * console/Makefile.am, scitab/Makefile.am, startup/Makefile.am,
266        wrapup/Makefile.am: Remove.
267        * configure.ac: Reflect changes above.
268
2692004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
270
271        * Makefile.am: Add PREINSTALL_DIRS.
272        * wrapup/Makefile.am: Reflect changes to libcpu.
273
2742004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
275
276        * wrapup/Makefile.am: Reflect changes to libcpu.
277
2782004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
281        Add PRE/TMPINSTALL_FILES to CLEANFILES.
282        * startup/Makefile.am: Ditto.
283
2842004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
285
286        * start/Makefile.am: Remove.
287        * Makefile.am: Merge-in start/Makefile.am.
288        * configure.ac: Reflect changes above.
289
2902004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
291
292        * wrapup/Makefile.am: Eliminate $(LIB).
293        Use noinst_DATA to trigger building libbsp.a.
294
2952003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
298        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
299
3002003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
301
302        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
303        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
304
3052003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
306
307        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
308
3092003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * start/Makefile.am: Misc cleanups and fixes.
312        * startup/Makefile.am: Misc cleanups and fixes.
313        * wrapup/Makefile.am: Misc cleanups and fixes.
314
3152003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * Makefile.am: Add preinstallation dirstamp support.
318        * console/Makefile.am: Cosmetics.
319        * scitab/Makefile.am: Cosmetics.
320        * startup/Makefile.am: Cosmetics.
321        * wrapup/Makefile.am: Cosmetics.
322
3232003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * console/Makefile.am: Remove all-local: $(ARCH).
326        * scitab/Makefile.am: Remove all-local: $(ARCH).
327        * start/Makefile.am: Remove all-local: $(ARCH).
328        * startup/Makefile.am: Remove all-local: $(ARCH).
329        * wrapup/Makefile.am: Remove all-local: $(ARCH).
330
3312003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
332
333        * Makefile.am: Merge-in include/Makefile.am.
334        Reflect changes to bsp.am.
335        * include/Makefile.am: Remove.
336        * configure.ac: Reflect changes above.
337
3382003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
339
340        * bsp_specs: Remove *lib:.
341
3422003-09-04      Joel Sherrill <joel@OARcorp.com>
343
344        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
345        startup/bspstart.c, startup/linkcmds: URL for license changed.
346
3472003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * Makefile.am: Reflect having moved aclocal/.
350
3512003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
352
353        * Makefile.am: Reflect having moved automake/.
354        * console/Makefile.am: Reflect having moved automake/.
355        * include/Makefile.am: Reflect having moved automake/.
356        * scitab/Makefile.am: Reflect having moved automake/.
357        * start/Makefile.am: Reflect having moved automake/.
358        * startup/Makefile.am: Reflect having moved automake/.
359        * wrapup/Makefile.am: Reflect having moved automake/.
360
3612003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
364
3652003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        PR 445/bsps
368        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
369        Remove cpp, old_cpp (now unused).
370
3712003-06-13      Joel Sherrill <joel@OARcorp.com>
372
373        * startup/linkcmds: Removed warnings.
374
3752003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
376
377        * configure.ac: Remove AC_CONFIG_AUX_DIR.
378
3792003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
382
3832003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * configure.ac: AC_PREREQ(2.57).
386
3872003-01-28      Joel Sherrill <joel@OARcorp.com>
388
389        * startup/linkcmds: Fix to work around truncated section names.
390
3912003-01-20      Joel Sherrill <joel@OARcorp.com>
392
393        * startup/linkcmds*: Add FreeBSD sysctl() sections.
394
3952003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
398
3992002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
402        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
403        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
404        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
405
4062002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * start/Makefile.am: Use install-data-local to install startfile.
409
4102002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
413
4142002-11-07      Joel Sherrill <joel@OARcorp.com>
415
416        * startup/linkcmds: Include all .rodata* sections.
417
4182002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * .cvsignore: Reformat.
421        Add autom4te*cache.
422        Remove autom4te.cache.
423
4242002-09-14      Joel Sherrill <joel@OARcorp.com>
425
426        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
427        of all calls to bsp_libc_init() resulted in some cleanup here.
428
4292002-08-21      Joel Sherrill <joel@OARcorp.com>
430
431        * bsp_specs: Added support for -nostdlibs.
432
4332002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
436        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
437
4382002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
441        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
442        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
443        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
444
4452002-07-25      Joel Sherrill <joel@OARcorp.com>
446
447        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
448        to remove problems linking empty main(){} with BSP.
449
4502002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * start/Makefile.am: Eliminate PGM.
453        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
454
4552002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
458
4592002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
462        Remove $(OBJS) from all-local.
463
4642002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
465
466        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
467
4682001-05-09      Joel Sherrill <joel@OARcorp.com>
469
470        * startup/linkcmds: In support of gcc 3.1, added one of more
471        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
472        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
473        and direction of segments to memory regions may also have been
474        addressed.  This was a sweep across all BSPs.
475 
4762002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
477
478        * configure.ac:
479        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
480        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
481        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
482        * Makefile.am: Remove AUTOMAKE_OPTIONS.
483        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
484        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
485        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
486        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
487        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
488
4892001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
492
4932001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
494
495        * configure.ac: Replace RTEMS_BSPOPTS_BSP with RTEMS_BSPOPTS_SET (typo).
496
4972001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
498
499        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
500        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
501
5022001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
505
5062001-10-12      Joel Sherrill <joel@OARcorp.com>
507
508        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
509        startup/bspstart.c, startup/linkcmds: Fixed typo.
510
5112001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
514        * configure.in: Remove.
515        * configure.ac: New file, generated from configure.in by autoupdate.
516
5172001-09-27      Joel Sherrill <joel@OARcorp.com>
518
519        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
520
5212001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
524
5252001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * configure.in: Add bspopts.h.
528        * include/.cvsignore: Add bspopts.h*, stamp-h*.
529        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
530        * include/bsp.h: Include bspopts.h.
531        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
532
5332001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
534
535        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]),
536        add bspopts.h.
537        * include/.cvsignore: Add stamp-h*, bspopts.h*.
538        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
539        * include/bsp.h: Add bspopts.h.
540
5412001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * startup/linkcmds: Remove OUTPUT_FORMAT.
544
5452001-01-05      Joel Sherrill <joel@OARcorp.com>
546
547        * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed
548        rest of make-target-options and moved them to BSP configure options.
549
5502001-01-05      Joel Sherrill <joel@OARcorp.com>
551
552        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
553        the movement of this component to libmisc.
554        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
555
5562000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
559
5602000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
561
562        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
563
5642000-11-01      Joel Sherrill <joel@OARcorp.com>
565
566        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
567        libcsupport.h moved from libc to lib/include/rtems and
568        now must be referenced as <rtems/XXX.h>.   Header file order
569        was cleaned up while doing this.
570
5712000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
572
573        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
574        Switch to GNU canonicalization.
575
5762000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
577
578        * scitab/Makefile.am: PROJECT_TOPdir.
579
5802000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
581
582        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
583        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
584
5852000-08-10      Joel Sherrill <joel@OARcorp.com>
586
587        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.