source: rtems/c/src/lib/libbsp/sh/gensh1/ChangeLog @ 95aa5e1

4.104.115
Last change on this file since 95aa5e1 was 95aa5e1, checked in by Joel Sherrill <joel.sherrill@…>, on 09/23/08 at 19:53:35

2008-09-23 Joel Sherrill <joel.sherrill@…>

  • configure.ac: Make letting boot_card() handle work area allocation mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
  • Property mode set to 100644
File size: 17.9 KB
Line 
12008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * configure.ac: Make letting boot_card() handle work area allocation
4        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
5        BSP_BOOTCARD_OPTIONS.
6
72008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * Makefile.am, configure.ac: Use standardized bsp_cleanup() which can
10        optionally print a message, poll for user to press key, and call
11        bsp_reset(). Using this eliminates the various bsp_cleanup()
12        implementations which had their own implementation and variety of
13        string constants.
14        * startup/bspclean.c: Removed.
15
162008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * Makefile.am, startup/linkcmds: Use top level shared
19        bsp_get_work_area() implementation.
20
212008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
22
23        * Makefile.am, configure.ac, include/bsp.h, startup/linkcmds: Use
24        shared bsp_get_work_area() in its own file and rely on BSP Framework
25        to perform more initialization. After factoring this out, it turned
26        out that all SuperH BSPs has the same bsp_start() implementation so
27        this was made shared.
28        * startup/bspstart.c: Removed.
29
302008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
31
32        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
33        phase, all prototypes were removed from bsp.h and empty
34        implementations were removed and made to use the shared stub.
35
362008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
37
38        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
39        Framework to ask the BSP where it has memory for the RTEMS Workspace
40        and C Program Heap. These collectively are referred to as work area.
41        If the BSP supports this, then it does not have to include code to
42        split the available memory between the two areas. This reduces the
43        amount of code in the BSP specific bspstart.c file. Additionally, the
44        shared framework can initialize the C Library, call
45        rtems_debug_enable(), and dirty the work area memory. Until most/all
46        BSPs support this new capability, if the BSP supports this, it should
47        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
48        When the transition is complete, this autoconf macro can be removed.
49
502008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
51
52        * Makefile.am: Rework to avoid .rel files.
53
542008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
55
56        * startup/bspstart.c: Refactored and renamed initialization routines to
57        rtems_initialize_data_structures, rtems_initialize_before_drivers,
58        rtems_initialize_device_drivers, and
59        rtems_initialize_start_multitasking. This opened the sequence up so
60        that bootcard() could provide a more robust and flexible framework
61        which is easier to explain and understand. This also lays the
62        groundwork for sharing the division of available memory between the
63        RTEMS workspace and heap and the C library initialization across all
64        BSPs.
65
662008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
67
68        * startup/linkcmds: Add wildcard to gcc_except_table section so
69        programs compiled with gcc 4.3.x can link.
70
712007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
72
73        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
74        Configuration Table. Use the RTEMS provided accessor macros to obtain
75        configuration fields.
76
772007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
80        from CPU Table to Configuration Table. Eliminate CPU Table from all
81        ports. Delete references to CPU Table in all forms.
82
832007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
86        Table fields to the Configuration Table. This included
87        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
88        do_zero_of_workspace, extra_mpci_receive_server_stack,
89        stack_allocate_hook, and stack_free_hook. As a side-effect of this
90        effort some multiprocessing code was made conditional and some style
91        clean up occurred.
92
932007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
94
95        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
96        SuperH CPU Table and define another mechanism for drivers to obtain
97        this information.
98
992007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
100
101        * Makefile.am: Separate debug IO from console so console driver is not
102        linked in all the time. This manaifested itself when the IO manager
103        optional manager stub dropped some symbols.
104
1052007-05-03      Joel Sherrill <joel@OARcorp.com>
106
107        * startup/linkcmds: Handle .data.* sections. Also change directive
108        placing stack on onchip_ram to make ld happy.
109
1102007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
111
112        * bsp_specs: Remove qrtems_debug.
113
1142007-04-02      Joel Sherrill <joel@OARcorp.com>
115
116        * Makefile.am: Add dummy printk support so all tests link.
117
1182006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
119
120        * configure.ac: New BUG-REPORT address.
121
1222006-11-15      Joel Sherrill <joel@OARcorp.com>
123
124        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
125        file and simplified initialization.
126
1272006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
128
129        * Makefile.am: Remove superfluous -DASM.
130
1312006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
132
133        * configure.ac: Require autoconf-2.60. Require automake-1.10.
134
1352006-06-24      Joel Sherrill <joel@OARcorp.com>
136
137        * startup/linkcmds: Add .rela.dyn sections.
138
1392006-03-08      Joel Sherrill <joel@OARcorp.com>
140
141        * startup/linkcmds: Add .gnu.linkonce.b.* section.
142
1432006-02-08      Joel Sherrill <joel@OARcorp.com>
144
145        * startup/linkcmds: Add sections required by newer gcc versions.
146
1472006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
148
149        * Makefile.am: Add preinstall.am.
150
1512005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
152
153        * include/bsp.h: New header guard.
154
1552005-05-11      Joel Sherrill <joel@OARcorp.com>
156
157        * startup/linkcmds: Add .rodata.* sections.
158
1592005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
160
161        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
162
1632005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * Makefile.am: Remove build-variant support.
166
1672004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
168
169        * configure.ac: Require automake > 1.9.
170
1712004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
172
173        PR 610/bsps
174        * Makefile.am: Add include/tm27.h, Cosmetics.
175        * include/tm27.h: Final cosmetics.
176
1772004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
178
179        * include/bsp.h: Split out tmtest27 support.
180        * include/tm27.h: New.
181
1822004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
183
184        PR 613/bsps
185        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
186
1872004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
188
189        PR 614/bsps
190        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
191
1922004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
193
194        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
195
1962004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
197
198        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
199        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
200
2012004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
202
203        * include/bsp.h, startup/bspstart.c: Convert to using c99 fixed size
204        types.
205
2062004-03-03      Joel Sherrill <joel@OARcorp.com>
207
208        * startup/linkcmds: Add more memory and sections so tests can link.
209        This is a generic BSP for a CPU model so OK to do this.
210
2112004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
212
213        * Makefile.am: Reflect changes to bsp.am.
214        Preinstall dist_project_lib*.
215
2162004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
217
218        * Makefile.am: Reflect changes to bsp.am.
219
2202004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
221
222        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
223
2242004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
225
226        * Makefile.am: Pickup files from ../../sh/shared instead of
227        ../shared. Reformat.
228
2292004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
230
231        * Makefile.am: Cosmetics.
232
2332004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
234
235        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
236        Add RTEMS_PROG_CCAS.
237
2382004-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
239
240        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
241        startup/Makefile.am, wrapup/Makefile.am.
242        Use automake-compilation rules.
243        * console/Makefile.am, scitab/Makefile.am, startup/Makefile.am,
244        wrapup/Makefile.am: Remove.
245        * configure.ac: Reflect changes above.
246
2472004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * Makefile.am: Add PREINSTALL_DIRS.
250        * wrapup/Makefile.am: Reflect changes to libcpu.
251
2522004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
253
254        * wrapup/Makefile.am: Reflect changes to libcpu.
255
2562004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
257
258        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
259        Add PRE/TMPINSTALL_FILES to CLEANFILES.
260        * startup/Makefile.am: Ditto.
261
2622004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * start/Makefile.am: Remove.
265        * Makefile.am: Merge-in start/Makefile.am.
266        * configure.ac: Reflect changes above.
267
2682004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
269
270        * wrapup/Makefile.am: Eliminate $(LIB).
271        Use noinst_DATA to trigger building libbsp.a.
272
2732003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
276        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
277
2782003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
281        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
282
2832003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
286
2872003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
288
289        * start/Makefile.am: Misc cleanups and fixes.
290        * startup/Makefile.am: Misc cleanups and fixes.
291        * wrapup/Makefile.am: Misc cleanups and fixes.
292
2932003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * Makefile.am: Add preinstallation dirstamp support.
296        * console/Makefile.am: Cosmetics.
297        * scitab/Makefile.am: Cosmetics.
298        * startup/Makefile.am: Cosmetics.
299        * wrapup/Makefile.am: Cosmetics.
300
3012003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
302
303        * console/Makefile.am: Remove all-local: $(ARCH).
304        * scitab/Makefile.am: Remove all-local: $(ARCH).
305        * start/Makefile.am: Remove all-local: $(ARCH).
306        * startup/Makefile.am: Remove all-local: $(ARCH).
307        * wrapup/Makefile.am: Remove all-local: $(ARCH).
308
3092003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
310
311        * Makefile.am: Merge-in include/Makefile.am.
312        Reflect changes to bsp.am.
313        * include/Makefile.am: Remove.
314        * configure.ac: Reflect changes above.
315
3162003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
317
318        * bsp_specs: Remove *lib:.
319
3202003-09-04      Joel Sherrill <joel@OARcorp.com>
321
322        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
323        startup/bspstart.c, startup/linkcmds: URL for license changed.
324
3252003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * Makefile.am: Reflect having moved aclocal/.
328
3292003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * Makefile.am: Reflect having moved automake/.
332        * console/Makefile.am: Reflect having moved automake/.
333        * include/Makefile.am: Reflect having moved automake/.
334        * scitab/Makefile.am: Reflect having moved automake/.
335        * start/Makefile.am: Reflect having moved automake/.
336        * startup/Makefile.am: Reflect having moved automake/.
337        * wrapup/Makefile.am: Reflect having moved automake/.
338
3392003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
342
3432003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        PR 445/bsps
346        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
347        Remove cpp, old_cpp (now unused).
348
3492003-06-13      Joel Sherrill <joel@OARcorp.com>
350
351        * startup/linkcmds: Removed warnings.
352
3532003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * configure.ac: Remove AC_CONFIG_AUX_DIR.
356
3572003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
360
3612003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
362
363        * configure.ac: AC_PREREQ(2.57).
364
3652003-01-28      Joel Sherrill <joel@OARcorp.com>
366
367        * startup/linkcmds: Fix to work around truncated section names.
368
3692003-01-20      Joel Sherrill <joel@OARcorp.com>
370
371        * startup/linkcmds*: Add FreeBSD sysctl() sections.
372
3732003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
376
3772002-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
380        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
381        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
382        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
383
3842002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * start/Makefile.am: Use install-data-local to install startfile.
387
3882002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
389
390        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
391
3922002-11-07      Joel Sherrill <joel@OARcorp.com>
393
394        * startup/linkcmds: Include all .rodata* sections.
395
3962002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * .cvsignore: Reformat.
399        Add autom4te*cache.
400        Remove autom4te.cache.
401
4022002-09-14      Joel Sherrill <joel@OARcorp.com>
403
404        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
405        of all calls to bsp_libc_init() resulted in some cleanup here.
406
4072002-08-21      Joel Sherrill <joel@OARcorp.com>
408
409        * bsp_specs: Added support for -nostdlibs.
410
4112002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
414        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
415
4162002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
419        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
420        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
421        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
422
4232002-07-25      Joel Sherrill <joel@OARcorp.com>
424
425        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
426        to remove problems linking empty main(){} with BSP.
427
4282002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * start/Makefile.am: Eliminate PGM.
431        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
432
4332002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
436
4372002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
440        Remove $(OBJS) from all-local.
441
4422002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
445
4462001-05-09      Joel Sherrill <joel@OARcorp.com>
447
448        * startup/linkcmds: In support of gcc 3.1, added one of more
449        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
450        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
451        and direction of segments to memory regions may also have been
452        addressed.  This was a sweep across all BSPs.
453 
4542002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * configure.ac:
457        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
458        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
459        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
460        * Makefile.am: Remove AUTOMAKE_OPTIONS.
461        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
462        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
463        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
464        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
465        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
466
4672001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
470
4712001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * configure.ac: Replace RTEMS_BSPOPTS_BSP with RTEMS_BSPOPTS_SET (typo).
474
4752001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
476
477        * configure.ac: Apply RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ).
478        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
479
4802001-10-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
481
482        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
483
4842001-10-12      Joel Sherrill <joel@OARcorp.com>
485
486        * include/bsp.h, include/coverhd.h, start/start.S, startup/bspclean.c,
487        startup/bspstart.c, startup/linkcmds: Fixed typo.
488
4892001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
492        * configure.in: Remove.
493        * configure.ac: New file, generated from configure.in by autoupdate.
494
4952001-09-27      Joel Sherrill <joel@OARcorp.com>
496
497        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
498
4992001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
502
5032001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        * configure.in: Add bspopts.h.
506        * include/.cvsignore: Add bspopts.h*, stamp-h*.
507        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
508        * include/bsp.h: Include bspopts.h.
509        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
510
5112001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
512
513        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]),
514        add bspopts.h.
515        * include/.cvsignore: Add stamp-h*, bspopts.h*.
516        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
517        * include/bsp.h: Add bspopts.h.
518
5192001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
520
521        * startup/linkcmds: Remove OUTPUT_FORMAT.
522
5232001-01-05      Joel Sherrill <joel@OARcorp.com>
524
525        * scitab/Makefile.am, startup/bspstart.c, configure.in: Removed
526        rest of make-target-options and moved them to BSP configure options.
527
5282001-01-05      Joel Sherrill <joel@OARcorp.com>
529
530        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
531        the movement of this component to libmisc.
532        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
533
5342000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
535
536        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
537
5382000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
539
540        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
541
5422000-11-01      Joel Sherrill <joel@OARcorp.com>
543
544        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h, and
545        libcsupport.h moved from libc to lib/include/rtems and
546        now must be referenced as <rtems/XXX.h>.   Header file order
547        was cleaned up while doing this.
548
5492000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
550
551        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
552        Switch to GNU canonicalization.
553
5542000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * scitab/Makefile.am: PROJECT_TOPdir.
557
5582000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
561        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
562
5632000-08-10      Joel Sherrill <joel@OARcorp.com>
564
565        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.