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

4.104.115
Last change on this file since 9957dbf was 9957dbf, checked in by Joel Sherrill <joel.sherrill@…>, on 10/02/08 at 21:39:40

2008-10-02 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, preinstall.am: Use shared tm27.h stub.
  • include/tm27.h: Removed.
  • Property mode set to 100644
File size: 19.3 KB
RevLine 
[9957dbf]12008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * Makefile.am, preinstall.am: Use shared tm27.h stub.
4        * include/tm27.h: Removed.
5
[57a40406]62008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
9        of building libbspstart.a, using automake-rules.
10
[64eb0c7]112008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
12
13        * Makefile.am: Eliminate *_SOURCES.
14
[e94666d]152008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
16
17        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
18        components.
19
[4ba8866]202008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
21
22        * Makefile.am: Remove noinst_PROGRAMS (Unused).
23
[c06b3fa]242008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
25
26        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
27
[95aa5e1]282008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
29
30        * configure.ac: Make letting boot_card() handle work area allocation
31        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
32        BSP_BOOTCARD_OPTIONS.
33
[0682df58]342008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
35
36        * Makefile.am, startup/linkcmds, startup/linkcmds.ram,
37        startup/linkcmds.rom: Use top level shared bsp_get_work_area()
38        implementation.
39
[11a6c97]402008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
43        shared bsp_get_work_area() in its own file and rely on BSP Framework
44        to perform more initialization. After factoring this out, it turned
45        out that all SuperH BSPs has the same bsp_start() implementation so
46        this was made shared.
47        * startup/bspstart.c: Removed.
48
[05adba6]492008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
50
51        * Makefile.am, include/bsp.h: Review of all bsp_cleanup()
52        implementations. In this phase, all prototypes were removed from
53        bsp.h and empty implementations were removed and made to use the
54        shared stub.
55        * startup/bspclean.c: Removed.
56
[dde1fedb]572008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
60        Framework to ask the BSP where it has memory for the RTEMS Workspace
61        and C Program Heap. These collectively are referred to as work area.
62        If the BSP supports this, then it does not have to include code to
63        split the available memory between the two areas. This reduces the
64        amount of code in the BSP specific bspstart.c file. Additionally, the
65        shared framework can initialize the C Library, call
66        rtems_debug_enable(), and dirty the work area memory. Until most/all
67        BSPs support this new capability, if the BSP supports this, it should
68        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
69        When the transition is complete, this autoconf macro can be removed.
70
[1d0ee80e]712008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
72
73        * Makefile.am: Rework to avoid .rel files.
74
[6ea100c1]752008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
76
77        * startup/bspstart.c: Refactored and renamed initialization routines to
78        rtems_initialize_data_structures, rtems_initialize_before_drivers,
79        rtems_initialize_device_drivers, and
80        rtems_initialize_start_multitasking. This opened the sequence up so
81        that bootcard() could provide a more robust and flexible framework
82        which is easier to explain and understand. This also lays the
83        groundwork for sharing the division of available memory between the
84        RTEMS workspace and heap and the C library initialization across all
85        BSPs.
86
[d1f57b5]872008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
88
89        * startup/linkcmds: Add wildcard to gcc_except_table section so
90        programs compiled with gcc 4.3.x can link.
91
[4130d8e2]922007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
93
94        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
95        Configuration Table. Use the RTEMS provided accessor macros to obtain
96        configuration fields.
97
[d34d8692]982007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
101        from CPU Table to Configuration Table. Eliminate CPU Table from all
102        ports. Delete references to CPU Table in all forms.
103
[558bc25]1042007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
105
106        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
107        Table fields to the Configuration Table. This included
108        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
109        do_zero_of_workspace, extra_mpci_receive_server_stack,
110        stack_allocate_hook, and stack_free_hook. As a side-effect of this
111        effort some multiprocessing code was made conditional and some style
112        clean up occurred.
113
[26d47f8]1142007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
115
116        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
117        SuperH CPU Table and define another mechanism for drivers to obtain
118        this information.
119
[d4d4c051]1202007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
121
122        * Makefile.am: Separate debug IO from console so console driver is not
123        linked in all the time. This manaifested itself when the IO manager
124        optional manager stub dropped some symbols.
125
[1144653]1262007-05-03      Joel Sherrill <joel@OARcorp.com>
127
128        * startup/linkcmds: Handle .data.* sections
129
[bff4b946]1302007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
131
132        * bsp_specs: Remove qrtems_debug.
133
[3002831]1342007-04-02      Joel Sherrill <joel@OARcorp.com>
135
136        * Makefile.am: Add dummy printk support so all tests link.
137
[fcb0cd46]1382006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
139
140        * configure.ac: New BUG-REPORT address.
141
[aa4369c]1422006-11-15      Joel Sherrill <joel@OARcorp.com>
143
144        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
145        file and simplified initialization.
146
[57357d9]1472006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
148
149        * Makefile.am: Remove superfluous -DASM.
150
[754610f]1512006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * configure.ac: Require autoconf-2.60. Require automake-1.10.
154
[b8de9518]1552006-06-24      Joel Sherrill <joel@OARcorp.com>
156
157        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
158        .rela.dyn sections.
159
[84138c1]1602006-03-08      Joel Sherrill <joel@OARcorp.com>
161
162        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
163        .gnu.linkonce.b.* section.
164
[ae3ab74]1652006-02-08      Joel Sherrill <joel@OARcorp.com>
166
167        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
168        sections required by newer gcc versions.
169
[a06faad]1702006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
171
172        * Makefile.am: Add preinstall.am.
173
[34c4852]1742005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
175
176        * include/bsp.h: New header guard.
177
[a67e01e]1782005-05-11      Joel Sherrill <joel@OARcorp.com>
179
180        * startup/linkcmds: Add .rodata.* sections.
181
[dc5e3d4f]1822005-05-03      Joel Sherrill <joel@OARcorp.com>
183
184        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
185        overflow of _CPU_Interrupt_stack_high calculation.
186
[844609f9]1872005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
188
189        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
190
[db3fa14]1912005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
192
193        * Makefile.am: Remove build-variant support.
194
[97891e5e]1952004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
196
197        * configure.ac: Require automake > 1.9.
198
[3defec6]1992004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
200
201        PR 610/bsps
202        * Makefile.am: Add include/tm27.h, Cosmetics.
203        * include/tm27.h: Final cosmetics.
204
[52cfc7de]2052004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
206
207        * include/bsp.h: Split out tmtest27 support.
208        * include/tm27.h: New.
209
[3344730a]2102004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
211
212        PR 613/bsps
213        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
214
[7dd6e8d]2152004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
216
217        PR 614/bsps
218        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
219
[cb33a86f]2202004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
221
222        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
223
[2d39080c]2242004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
225
226        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
227        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
228        * startup/hw_init.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
229
[8cf4fac5]2302004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
231
232        * include/bsp.h, startup/bspstart.c, startup/hw_init.c: Convert to
233        using c99 fixed size types.
234
[2a7f9a28]2352004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
236
237        * Makefile.am: Reflect changes to bsp.am.
238        Preinstall dist_project_lib*.
239
[6ac101b]2402004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
241
242        * Makefile.am: Reflect changes to bsp.am.
243
[c24d7c84]2442004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
245
246        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
247
[4e942c8]2482004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
249
250        * Makefile.am: Pickup files from ../../sh/shared instead of
251        ../shared. Reformat.
252
[0f14e45]2532004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
254
255        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
256        startup/Makefile.am, wrapup/Makefile.am.
257        Use automake compilation rules.
258        * console/Makefile.am, scitab/Makefile.am,
259        startup/Makefile.am, wrapup/Makefile.am: Remove.
260        * configure.ac: Reflect changes above.
261
[f3c5a0ec]2622004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
265        Add RTEMS_PROG_CCAS.
266
[7984a69]2672004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * Makefile.am: Add PREINSTALL_DIRS.
270        * wrapup/Makefile.am: Reflect changes to libcpu.
271
[7f269d0]2722004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * wrapup/Makefile.am: Reflect changes to libcpu.
275
[ff716ea0]2762004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
277
278        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
279        Add PRE/TMPINSTALL_FILES to CLEANFILES.
280        * startup/Makefile.am: Ditto.
281
[7a5a3a41]2822004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * start/Makefile.am: Remove.
285        * Makefile.am: Merge-in start/Makefile.am.
286        * configure.ac: Reflect changes above.
287
[6411947]2882004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * wrapup/Makefile.am: Eliminate $(LIB).
291        Use noinst_DATA to trigger building libbsp.a.
292
[b35414a]2932003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
296        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
297
[935773b]2982003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
301        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
302
[810720b6]3032003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
306
[968b78d]3072003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * start/Makefile.am: Misc cleanups and fixes.
310        * startup/Makefile.am: Misc cleanups and fixes.
311
[726a240]3122003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
313
314        * Makefile.am: Add preinstallation dirstamp support.
315        * console/Makefile.am: Cosmetics.
316        * startup/Makefile.am: Cosmetics.
317        * wrapup/Makefile.am: Cosmetics.
318
[84128ef7]3192003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * console/Makefile.am: Remove all-local: $(ARCH).
322        * scitab/Makefile.am: Remove all-local: $(ARCH).
323        * start/Makefile.am: Remove all-local: $(ARCH).
324        * startup/Makefile.am: Remove all-local: $(ARCH).
325        * wrapup/Makefile.am: Remove all-local: $(ARCH).
326
[d0d6a5c]3272003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * Makefile.am: Merge-in include/Makefile.am.
330        Reflect changes to bsp.am.
331        * include/Makefile.am: Remove.
332        * configure.ac: Reflect changes above.
333
[3299388d]3342003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
335
336        * bsp_specs: Remove *lib:.
337
[5e1b695]3382003-09-04      Joel Sherrill <joel@OARcorp.com>
339
340        * console/config.c, include/bsp.h, include/coverhd.h, start/start.S,
341        start/start.ram, start/start.rom, startup/bspclean.c,
342        startup/bspstart.c, startup/hw_init.c, startup/linkcmds,
343        startup/linkcmds.ram, startup/linkcmds.rom: URL for license changed.
344
[fe8bc62f]3452003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * Makefile.am: Reflect having moved aclocal/.
348
[c1ea6f3]3492003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
[c483a4e]351        * Makefile.am: Reflect having moved automake/.
352        * console/Makefile.am: Reflect having moved automake/.
353        * include/Makefile.am: Reflect having moved automake/.
354        * scitab/Makefile.am: Reflect having moved automake/.
355        * start/Makefile.am: Reflect having moved automake/.
356        * startup/Makefile.am: Reflect having moved automake/.
357        * wrapup/Makefile.am: Reflect having moved automake/.
[c1ea6f3]358
[7dcc3fe]3592003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
362
[d266acd2]3632003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
[75fcb394]365        PR 445/bsps
[d266acd2]366        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
367        Remove cpp, old_cpp (now unused).
368
[9eb574dd]3692003-06-13      Joel Sherrill <joel@OARcorp.com>
370
371        * startup/linkcmds: Removed warnings.
372
[afaa498d]3732003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * configure.ac: Remove AC_CONFIG_AUX_DIR.
376
[ccd81b60]3772003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
380
[9b5c258]3812003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * configure.ac: AC_PREREQ(2.57).
384
[99159ec6]3852003-01-28      Joel Sherrill <joel@OARcorp.com>
386
387        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix to
388        work around truncated section names.
389
[646e0008]3902003-01-20      Joel Sherrill <joel@OARcorp.com>
391
392        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
393        FreeBSD sysctl() sections.
394
[c62c75af]3952003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
398
[387df95]3992003-01-15      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
[59a01a6e]4062002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * start/Makefile.am: Use install-data-local to install startfile.
409
[ad5c7fe]4102002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
413
[716d0d4]4142002-11-07      Joel Sherrill <joel@OARcorp.com>
415
416        * startup/linkcmds: Include all .rodata* sections.
417
[4d654d7]4182002-11-01      Joel Sherrill <joel@OARcorp.com>
419
420        * start/start.S, startup/hw_init.c: Removed warnings.
421
[8730f45]4222002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * .cvsignore: Reformat.
425        Add autom4te*cache.
426        Remove autom4te.cache.
427
[536f5f94]4282002-09-14      Joel Sherrill <joel@OARcorp.com>
429
430        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
431        of all calls to bsp_libc_init() resulted in some cleanup here.
432
[a2ae30c2]4332002-08-21      Joel Sherrill <joel@OARcorp.com>
434
435        * bsp_specs: Added support for -nostdlibs.
436
[c633eb4]4372002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
440
[681bd04]4412002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
444        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
445        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
446        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
447
[bc9037d]4482002-07-25      Joel Sherrill <joel@OARcorp.com>
449
450        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
451        to remove problems linking empty main(){} with BSP.
452
[5543770e]4532002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * start/Makefile.am: Eliminate PGMS.
456        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
457
[f1feebb]4582002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
459
460        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
461
[445c0a0]4622002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
465        Remove $(OBJS) from all-local.
466
[80defac]4672002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
470
[85c92574]4712001-05-09      Joel Sherrill <joel@OARcorp.com>
472
473        * startup/linkcmds: In support of gcc 3.1, added one of more
474        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
475        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
476        and direction of segments to memory regions may also have been
477        addressed.  This was a sweep across all BSPs.
478 
[7fb5793]4792002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
480
481        * configure.ac:
482        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
483        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
484        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
485        * Makefile.am: Remove AUTOMAKE_OPTIONS.
486        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
487        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
488        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
489        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
490        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
491
[9e1ae79]4922001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
495
[d516bbf]4962001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
497
498        * configure.ac: Add RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ),
499        RTEMS_BSPOPTS_*(START_HW_INIT),
500        RTEMS_BSPOPTS_*(STANDALONE_EVB).
501        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
502
[14a67aa9]5032001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
506
[2b4c86e]5072001-10-12      Joel Sherrill <joel@OARcorp.com>
508
509        * include/bsp.h, start/start.S, start/start.ram, start/start.rom,
510        startup/bspclean.c, startup/bspstart.c, startup/linkcmds,
511        startup/linkcmds.ram, startup/linkcmds.rom: Fixed typo.
512
[df25c998]5132001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
516        * configure.in: Remove.
517        * configure.ac: New file, generated from configure.in by autoupdate.
518
[cf282090]5192001-09-27      Joel Sherrill <joel@OARcorp.com>
520
521        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
522
[46d31795]5232001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
524
525        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
526        * startup/Makefile.am: Use 'PREINSTALL_FILES ='.
527
[1344bf2]5282001-09-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
529
530        * scitab/Makefile.am: Remove stray blank from SCITAB rule.
531
[ede9699c]5322001-08-01  Radzislaw Galler  <rgaller@et.put.poznan.pl>
533
534        * include/bsp.h: Disabled redefinition of
535        CONSOLE_DRIVER_TABLE_ENTRY. Some "FIXME:" comments added.
536        * console/config.c: New file. Definitions of externs referenced
537        from libbsp/shared/console.c.
538        * console/Makefile.am: Changed VPATH to point to
539        libbsp/shared. Added config.c to C_FILES and EXTRA_DIST.
540
[a2e6723]5412001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * configure.in: Add bspopts.h.
544        * include/.cvsignore: Add bspopts.h*, stamp-h*.
545        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
546        * include/bsp.h: Include bspopts.h.
547        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
548
[c7c6e72]5492001-06-19      Joel Sherrill <joel@OARcorp.com>
550
551        * scitab/Makefile.am, startup/Makefile.am: Use CPU_CLOCK_RATE_HZ as
552        it is called in configure.in instead of HZ.
553
[5dbd4fe]5542001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
555
556        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), add
557        bspopts.h.     
558        * include/.cvsignore: Add stamp-h*, bspopts.h*.
559        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
560        * include/bsp.h: Add bspopts.h.
561        * startup/bspstart.c: Replace HZ w/ CPU_CLOCK_RATE_HZ.
562
[ed3ec25]5632001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
564
565        * startup/linkcmds: Remove OUTPUT_FORMAT.
566
[9f87484]5672001-01-22  Radzislaw Galler  <rgaller@et.put.poznan.pl>
568
569        * README.EVB7045F: New file.
570        * README: Additions and corrections.
571        * include/bsp.h: Switch console to sci0.
572
[96b2583]5732001-01-05      Joel Sherrill <joel@OARcorp.com>
574
575        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
576        the movement of this component to libmisc.
577        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
578
[feead226]5792000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
580
581        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
582
[a314d3b4]5832000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
586
[eba2e4f]5872000-11-01      Joel Sherrill <joel@OARcorp.com>
588
589        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
590        and libcsupport.h moved from libc to lib/include/rtems and
591        now must be referenced as <rtems/XXX.h>.   Header file order
592        was cleaned up while doing this.
593
[e83378d]5942000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
595
596        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
597        Switch to GNU canonicalization.
598
[633657c]5992000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
600
601        * scitab/Makefile.am: PROJECT_TOPdir.
602
[a2af371]6032000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
604
605        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
606        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
607
[e94ad1fe]6082000-08-10      Joel Sherrill <joel@OARcorp.com>
609
610        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.