source: rtems/c/src/lib/libbsp/sh/gensh1/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: 18.8 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-22      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * Makefile.am, configure.ac: Use standardized bsp_cleanup() which can
43        optionally print a message, poll for user to press key, and call
44        bsp_reset(). Using this eliminates the various bsp_cleanup()
45        implementations which had their own implementation and variety of
46        string constants.
47        * startup/bspclean.c: Removed.
48
492008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * Makefile.am, startup/linkcmds: Use top level shared
52        bsp_get_work_area() implementation.
53
542008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
55
56        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
57        shared bsp_get_work_area() in its own file and rely on BSP Framework
58        to perform more initialization. After factoring this out, it turned
59        out that all SuperH BSPs has the same bsp_start() implementation so
60        this was made shared.
61        * startup/bspstart.c: Removed.
62
632008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
66        phase, all prototypes were removed from bsp.h and empty
67        implementations were removed and made to use the shared stub.
68
692008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
70
71        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
72        Framework to ask the BSP where it has memory for the RTEMS Workspace
73        and C Program Heap. These collectively are referred to as work area.
74        If the BSP supports this, then it does not have to include code to
75        split the available memory between the two areas. This reduces the
76        amount of code in the BSP specific bspstart.c file. Additionally, the
77        shared framework can initialize the C Library, call
78        rtems_debug_enable(), and dirty the work area memory. Until most/all
79        BSPs support this new capability, if the BSP supports this, it should
80        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
81        When the transition is complete, this autoconf macro can be removed.
82
832008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * Makefile.am: Rework to avoid .rel files.
86
872008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * startup/bspstart.c: Refactored and renamed initialization routines to
90        rtems_initialize_data_structures, rtems_initialize_before_drivers,
91        rtems_initialize_device_drivers, and
92        rtems_initialize_start_multitasking. This opened the sequence up so
93        that bootcard() could provide a more robust and flexible framework
94        which is easier to explain and understand. This also lays the
95        groundwork for sharing the division of available memory between the
96        RTEMS workspace and heap and the C library initialization across all
97        BSPs.
98
992008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * startup/linkcmds: Add wildcard to gcc_except_table section so
102        programs compiled with gcc 4.3.x can link.
103
1042007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
107        Configuration Table. Use the RTEMS provided accessor macros to obtain
108        configuration fields.
109
1102007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
111
112        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
113        from CPU Table to Configuration Table. Eliminate CPU Table from all
114        ports. Delete references to CPU Table in all forms.
115
1162007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
117
118        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
119        Table fields to the Configuration Table. This included
120        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
121        do_zero_of_workspace, extra_mpci_receive_server_stack,
122        stack_allocate_hook, and stack_free_hook. As a side-effect of this
123        effort some multiprocessing code was made conditional and some style
124        clean up occurred.
125
1262007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
127
128        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
129        SuperH CPU Table and define another mechanism for drivers to obtain
130        this information.
131
1322007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
133
134        * Makefile.am: Separate debug IO from console so console driver is not
135        linked in all the time. This manaifested itself when the IO manager
136        optional manager stub dropped some symbols.
137
1382007-05-03      Joel Sherrill <joel@OARcorp.com>
139
140        * startup/linkcmds: Handle .data.* sections. Also change directive
141        placing stack on onchip_ram to make ld happy.
142
1432007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
144
145        * bsp_specs: Remove qrtems_debug.
146
1472007-04-02      Joel Sherrill <joel@OARcorp.com>
148
149        * Makefile.am: Add dummy printk support so all tests link.
150
1512006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * configure.ac: New BUG-REPORT address.
154
1552006-11-15      Joel Sherrill <joel@OARcorp.com>
156
157        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
158        file and simplified initialization.
159
1602006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
161
162        * Makefile.am: Remove superfluous -DASM.
163
1642006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
165
166        * configure.ac: Require autoconf-2.60. Require automake-1.10.
167
1682006-06-24      Joel Sherrill <joel@OARcorp.com>
169
170        * startup/linkcmds: Add .rela.dyn sections.
171
1722006-03-08      Joel Sherrill <joel@OARcorp.com>
173
174        * startup/linkcmds: Add .gnu.linkonce.b.* section.
175
1762006-02-08      Joel Sherrill <joel@OARcorp.com>
177
178        * startup/linkcmds: Add sections required by newer gcc versions.
179
1802006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * Makefile.am: Add preinstall.am.
183
1842005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
185
186        * include/bsp.h: New header guard.
187
1882005-05-11      Joel Sherrill <joel@OARcorp.com>
189
190        * startup/linkcmds: Add .rodata.* sections.
191
1922005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
193
194        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
195
1962005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
197
198        * Makefile.am: Remove build-variant support.
199
2002004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
201
202        * configure.ac: Require automake > 1.9.
203
2042004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
205
206        PR 610/bsps
207        * Makefile.am: Add include/tm27.h, Cosmetics.
208        * include/tm27.h: Final cosmetics.
209
2102004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
211
212        * include/bsp.h: Split out tmtest27 support.
213        * include/tm27.h: New.
214
2152004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
216
217        PR 613/bsps
218        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
219
2202004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
221
222        PR 614/bsps
223        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
224
2252004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
226
227        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
228
2292004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
230
231        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
232        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
233
2342004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
235
236        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
237        types.
238
2392004-03-03      Joel Sherrill <joel@OARcorp.com>
240
241        * startup/linkcmds: Add more memory and sections so tests can link.
242        This is a generic BSP for a CPU model so OK to do this.
243
2442004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
245
246        * Makefile.am: Reflect changes to bsp.am.
247        Preinstall dist_project_lib*.
248
2492004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
250
251        * Makefile.am: Reflect changes to bsp.am.
252
2532004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
256
2572004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
258
259        * Makefile.am: Pickup files from ../../sh/shared instead of
260        ../shared. Reformat.
261
2622004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Cosmetics.
265
2662004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
267
268        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
269        Add RTEMS_PROG_CCAS.
270
2712004-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
274        startup/Makefile.am, wrapup/Makefile.am.
275        Use automake-compilation rules.
276        * console/Makefile.am, scitab/Makefile.am, startup/Makefile.am,
277        wrapup/Makefile.am: Remove.
278        * configure.ac: Reflect changes above.
279
2802004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
281
282        * Makefile.am: Add PREINSTALL_DIRS.
283        * wrapup/Makefile.am: Reflect changes to libcpu.
284
2852004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
286
287        * wrapup/Makefile.am: Reflect changes to libcpu.
288
2892004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
290
291        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
292        Add PRE/TMPINSTALL_FILES to CLEANFILES.
293        * startup/Makefile.am: Ditto.
294
2952004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
296
297        * start/Makefile.am: Remove.
298        * Makefile.am: Merge-in start/Makefile.am.
299        * configure.ac: Reflect changes above.
300
3012004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * wrapup/Makefile.am: Eliminate $(LIB).
304        Use noinst_DATA to trigger building libbsp.a.
305
3062003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
309        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
310
3112003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
314        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
315
3162003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
319
3202003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
321
322        * start/Makefile.am: Misc cleanups and fixes.
323        * startup/Makefile.am: Misc cleanups and fixes.
324        * wrapup/Makefile.am: Misc cleanups and fixes.
325
3262003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * Makefile.am: Add preinstallation dirstamp support.
329        * console/Makefile.am: Cosmetics.
330        * scitab/Makefile.am: Cosmetics.
331        * startup/Makefile.am: Cosmetics.
332        * wrapup/Makefile.am: Cosmetics.
333
3342003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * console/Makefile.am: Remove all-local: $(ARCH).
337        * scitab/Makefile.am: Remove all-local: $(ARCH).
338        * start/Makefile.am: Remove all-local: $(ARCH).
339        * startup/Makefile.am: Remove all-local: $(ARCH).
340        * wrapup/Makefile.am: Remove all-local: $(ARCH).
341
3422003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
343
344        * Makefile.am: Merge-in include/Makefile.am.
345        Reflect changes to bsp.am.
346        * include/Makefile.am: Remove.
347        * configure.ac: Reflect changes above.
348
3492003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * bsp_specs: Remove *lib:.
352
3532003-09-04      Joel Sherrill <joel@OARcorp.com>
354
355        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
356        startup/bspstart.c, startup/linkcmds: URL for license changed.
357
3582003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * Makefile.am: Reflect having moved aclocal/.
361
3622003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * Makefile.am: Reflect having moved automake/.
365        * console/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        * wrapup/Makefile.am: Reflect having moved automake/.
371
3722003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
373
374        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
375
3762003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        PR 445/bsps
379        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
380        Remove cpp, old_cpp (now unused).
381
3822003-06-13      Joel Sherrill <joel@OARcorp.com>
383
384        * startup/linkcmds: Removed warnings.
385
3862003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * configure.ac: Remove AC_CONFIG_AUX_DIR.
389
3902003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
391
392        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
393
3942003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * configure.ac: AC_PREREQ(2.57).
397
3982003-01-28      Joel Sherrill <joel@OARcorp.com>
399
400        * startup/linkcmds: Fix to work around truncated section names.
401
4022003-01-20      Joel Sherrill <joel@OARcorp.com>
403
404        * startup/linkcmds*: Add FreeBSD sysctl() sections.
405
4062003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
409
4102002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
413        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
414        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
415        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
416
4172002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * start/Makefile.am: Use install-data-local to install startfile.
420
4212002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
424
4252002-11-07      Joel Sherrill <joel@OARcorp.com>
426
427        * startup/linkcmds: Include all .rodata* sections.
428
4292002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * .cvsignore: Reformat.
432        Add autom4te*cache.
433        Remove autom4te.cache.
434
4352002-09-14      Joel Sherrill <joel@OARcorp.com>
436
437        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
438        of all calls to bsp_libc_init() resulted in some cleanup here.
439
4402002-08-21      Joel Sherrill <joel@OARcorp.com>
441
442        * bsp_specs: Added support for -nostdlibs.
443
4442002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
447        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
448
4492002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
450
451        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
452        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
453        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
454        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
455
4562002-07-25      Joel Sherrill <joel@OARcorp.com>
457
458        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
459        to remove problems linking empty main(){} with BSP.
460
4612002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * start/Makefile.am: Eliminate PGM.
464        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
465
4662002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
467
468        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
469
4702002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
473        Remove $(OBJS) from all-local.
474
4752002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
476
477        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
478
4792001-05-09      Joel Sherrill <joel@OARcorp.com>
480
481        * startup/linkcmds: In support of gcc 3.1, added one of more
482        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
483        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
484        and direction of segments to memory regions may also have been
485        addressed.  This was a sweep across all BSPs.
486 
4872002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
488
489        * configure.ac:
490        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
491        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
492        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
493        * Makefile.am: Remove AUTOMAKE_OPTIONS.
494        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
495        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
496        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
497        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
498        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
499
5002001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
501
502        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
503
5042001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * configure.ac: Replace RTEMS_BSPOPTS_BSP with RTEMS_BSPOPTS_SET (typo).
507
5082001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
511        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
512
5132001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
516
5172001-10-12      Joel Sherrill <joel@OARcorp.com>
518
519        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
520        startup/bspstart.c, startup/linkcmds: Fixed typo.
521
5222001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
523
524        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
525        * configure.in: Remove.
526        * configure.ac: New file, generated from configure.in by autoupdate.
527
5282001-09-27      Joel Sherrill <joel@OARcorp.com>
529
530        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
531
5322001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
535
5362001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * configure.in: Add bspopts.h.
539        * include/.cvsignore: Add bspopts.h*, stamp-h*.
540        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
541        * include/bsp.h: Include bspopts.h.
542        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
543
5442001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
545
546        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]),
547        add bspopts.h.
548        * include/.cvsignore: Add stamp-h*, bspopts.h*.
549        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
550        * include/bsp.h: Add bspopts.h.
551
5522001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * startup/linkcmds: Remove OUTPUT_FORMAT.
555
5562001-01-05      Joel Sherrill <joel@OARcorp.com>
557
558        * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed
559        rest of make-target-options and moved them to BSP configure options.
560
5612001-01-05      Joel Sherrill <joel@OARcorp.com>
562
563        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
564        the movement of this component to libmisc.
565        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
566
5672000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
570
5712000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
572
573        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
574
5752000-11-01      Joel Sherrill <joel@OARcorp.com>
576
577        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
578        libcsupport.h moved from libc to lib/include/rtems and
579        now must be referenced as <rtems/XXX.h>.   Header file order
580        was cleaned up while doing this.
581
5822000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
585        Switch to GNU canonicalization.
586
5872000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * scitab/Makefile.am: PROJECT_TOPdir.
590
5912000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
592
593        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
594        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
595
5962000-08-10      Joel Sherrill <joel@OARcorp.com>
597
598        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.