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

4.9
Last change on this file since 7be8d6b was 7be8d6b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 01:48:04

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

  • Makefile.am: Remove noinst_PROGRAMS (Unused).
  • Property mode set to 100644
File size: 17.6 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Remove noinst_PROGRAMS (Unused).
4
52008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
6
7        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
8        Framework to ask the BSP where it has memory for the RTEMS Workspace
9        and C Program Heap. These collectively are referred to as work area.
10        If the BSP supports this, then it does not have to include code to
11        split the available memory between the two areas. This reduces the
12        amount of code in the BSP specific bspstart.c file. Additionally, the
13        shared framework can initialize the C Library, call
14        rtems_debug_enable(), and dirty the work area memory. Until most/all
15        BSPs support this new capability, if the BSP supports this, it should
16        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
17        When the transition is complete, this autoconf macro can be removed.
18
192008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        * Makefile.am: Rework to avoid .rel files.
22
232008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
24
25        * startup/bspstart.c: Refactored and renamed initialization routines to
26        rtems_initialize_data_structures, rtems_initialize_before_drivers,
27        rtems_initialize_device_drivers, and
28        rtems_initialize_start_multitasking. This opened the sequence up so
29        that bootcard() could provide a more robust and flexible framework
30        which is easier to explain and understand. This also lays the
31        groundwork for sharing the division of available memory between the
32        RTEMS workspace and heap and the C library initialization across all
33        BSPs.
34
352008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
36
37        * startup/linkcmds: Add wildcard to gcc_except_table section so
38        programs compiled with gcc 4.3.x can link.
39
402007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
41
42        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
43        Configuration Table. Use the RTEMS provided accessor macros to obtain
44        configuration fields.
45
462007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
47
48        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
49        from CPU Table to Configuration Table. Eliminate CPU Table from all
50        ports. Delete references to CPU Table in all forms.
51
522007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
53
54        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
55        Table fields to the Configuration Table. This included
56        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
57        do_zero_of_workspace, extra_mpci_receive_server_stack,
58        stack_allocate_hook, and stack_free_hook. As a side-effect of this
59        effort some multiprocessing code was made conditional and some style
60        clean up occurred.
61
622007-11-26      Joel Sherrill <joel.sherrill@oarcorp.com>
63
64        * startup/bspstart.c: Eliminate the clicks_per_microsecond field in the
65        SuperH CPU Table and define another mechanism for drivers to obtain
66        this information.
67
682007-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * Makefile.am: Separate debug IO from console so console driver is not
71        linked in all the time. This manaifested itself when the IO manager
72        optional manager stub dropped some symbols.
73
742007-05-03      Joel Sherrill <joel@OARcorp.com>
75
76        * startup/linkcmds: Handle .data.* sections
77
782007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
79
80        * bsp_specs: Remove qrtems_debug.
81
822007-04-02      Joel Sherrill <joel@OARcorp.com>
83
84        * Makefile.am: Add dummy printk support so all tests link.
85
862006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
87
88        * configure.ac: New BUG-REPORT address.
89
902006-11-15      Joel Sherrill <joel@OARcorp.com>
91
92        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
93        file and simplified initialization.
94
952006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
96
97        * Makefile.am: Remove superfluous -DASM.
98
992006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
100
101        * configure.ac: Require autoconf-2.60. Require automake-1.10.
102
1032006-06-24      Joel Sherrill <joel@OARcorp.com>
104
105        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
106        .rela.dyn sections.
107
1082006-03-08      Joel Sherrill <joel@OARcorp.com>
109
110        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
111        .gnu.linkonce.b.* section.
112
1132006-02-08      Joel Sherrill <joel@OARcorp.com>
114
115        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
116        sections required by newer gcc versions.
117
1182006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
119
120        * Makefile.am: Add preinstall.am.
121
1222005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
123
124        * include/bsp.h: New header guard.
125
1262005-05-11      Joel Sherrill <joel@OARcorp.com>
127
128        * startup/linkcmds: Add .rodata.* sections.
129
1302005-05-03      Joel Sherrill <joel@OARcorp.com>
131
132        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix
133        overflow of _CPU_Interrupt_stack_high calculation.
134
1352005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
136
137        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
138
1392005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
140
141        * Makefile.am: Remove build-variant support.
142
1432004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
144
145        * configure.ac: Require automake > 1.9.
146
1472004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
148
149        PR 610/bsps
150        * Makefile.am: Add include/tm27.h, Cosmetics.
151        * include/tm27.h: Final cosmetics.
152
1532004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
154
155        * include/bsp.h: Split out tmtest27 support.
156        * include/tm27.h: New.
157
1582004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
159
160        PR 613/bsps
161        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
162
1632004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
164
165        PR 614/bsps
166        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
167
1682004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
169
170        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
171
1722004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
173
174        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
175        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
176        * startup/hw_init.c: Include <rtems/iosupp.h> instead of <iosupp.h>.
177
1782004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
179
180        * include/bsp.h, startup/bspstart.c, startup/hw_init.c: Convert to
181        using c99 fixed size types.
182
1832004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
184
185        * Makefile.am: Reflect changes to bsp.am.
186        Preinstall dist_project_lib*.
187
1882004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
189
190        * Makefile.am: Reflect changes to bsp.am.
191
1922004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
193
194        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
195
1962004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
197
198        * Makefile.am: Pickup files from ../../sh/shared instead of
199        ../shared. Reformat.
200
2012004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
202
203        * Makefile.am: Merge-in console/Makefile.am, scitab/Makefile.am,
204        startup/Makefile.am, wrapup/Makefile.am.
205        Use automake compilation rules.
206        * console/Makefile.am, scitab/Makefile.am,
207        startup/Makefile.am, wrapup/Makefile.am: Remove.
208        * configure.ac: Reflect changes above.
209
2102004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
211
212        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
213        Add RTEMS_PROG_CCAS.
214
2152004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
216
217        * Makefile.am: Add PREINSTALL_DIRS.
218        * wrapup/Makefile.am: Reflect changes to libcpu.
219
2202004-01-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
221
222        * wrapup/Makefile.am: Reflect changes to libcpu.
223
2242004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
225
226        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
227        Add PRE/TMPINSTALL_FILES to CLEANFILES.
228        * startup/Makefile.am: Ditto.
229
2302004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
231
232        * start/Makefile.am: Remove.
233        * Makefile.am: Merge-in start/Makefile.am.
234        * configure.ac: Reflect changes above.
235
2362004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
237
238        * wrapup/Makefile.am: Eliminate $(LIB).
239        Use noinst_DATA to trigger building libbsp.a.
240
2412003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
242
243        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
244        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
245
2462003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
247
248        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
249        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
250
2512003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
254
2552003-12-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * start/Makefile.am: Misc cleanups and fixes.
258        * startup/Makefile.am: Misc cleanups and fixes.
259
2602003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * Makefile.am: Add preinstallation dirstamp support.
263        * console/Makefile.am: Cosmetics.
264        * startup/Makefile.am: Cosmetics.
265        * wrapup/Makefile.am: Cosmetics.
266
2672003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * console/Makefile.am: Remove all-local: $(ARCH).
270        * scitab/Makefile.am: Remove all-local: $(ARCH).
271        * start/Makefile.am: Remove all-local: $(ARCH).
272        * startup/Makefile.am: Remove all-local: $(ARCH).
273        * wrapup/Makefile.am: Remove all-local: $(ARCH).
274
2752003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Merge-in include/Makefile.am.
278        Reflect changes to bsp.am.
279        * include/Makefile.am: Remove.
280        * configure.ac: Reflect changes above.
281
2822003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
283
284        * bsp_specs: Remove *lib:.
285
2862003-09-04      Joel Sherrill <joel@OARcorp.com>
287
288        * console/config.c, include/bsp.h, include/coverhd.h, start/start.S,
289        start/start.ram, start/start.rom, startup/bspclean.c,
290        startup/bspstart.c, startup/hw_init.c, startup/linkcmds,
291        startup/linkcmds.ram, startup/linkcmds.rom: URL for license changed.
292
2932003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
294
295        * Makefile.am: Reflect having moved aclocal/.
296
2972003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * Makefile.am: Reflect having moved automake/.
300        * console/Makefile.am: Reflect having moved automake/.
301        * include/Makefile.am: Reflect having moved automake/.
302        * scitab/Makefile.am: Reflect having moved automake/.
303        * start/Makefile.am: Reflect having moved automake/.
304        * startup/Makefile.am: Reflect having moved automake/.
305        * wrapup/Makefile.am: Reflect having moved automake/.
306
3072003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
308
309        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
310
3112003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        PR 445/bsps
314        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
315        Remove cpp, old_cpp (now unused).
316
3172003-06-13      Joel Sherrill <joel@OARcorp.com>
318
319        * startup/linkcmds: Removed warnings.
320
3212003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
322
323        * configure.ac: Remove AC_CONFIG_AUX_DIR.
324
3252003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
326
327        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
328
3292003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * configure.ac: AC_PREREQ(2.57).
332
3332003-01-28      Joel Sherrill <joel@OARcorp.com>
334
335        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Fix to
336        work around truncated section names.
337
3382003-01-20      Joel Sherrill <joel@OARcorp.com>
339
340        * startup/linkcmds, startup/linkcmds.ram, startup/linkcmds.rom: Add
341        FreeBSD sysctl() sections.
342
3432003-01-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * wrapup/Makefile.am: Reflect changes to libcpu/sh/*.
346
3472003-01-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
348
349        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
350        * scitab/Makefile.am: Don't include @RTEMS_BSP@.cfg.
351        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
352        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
353
3542002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * start/Makefile.am: Use install-data-local to install startfile.
357
3582002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
361
3622002-11-07      Joel Sherrill <joel@OARcorp.com>
363
364        * startup/linkcmds: Include all .rodata* sections.
365
3662002-11-01      Joel Sherrill <joel@OARcorp.com>
367
368        * start/start.S, startup/hw_init.c: Removed warnings.
369
3702002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * .cvsignore: Reformat.
373        Add autom4te*cache.
374        Remove autom4te.cache.
375
3762002-09-14      Joel Sherrill <joel@OARcorp.com>
377
378        * startup/bspstart.c: As part of fixing PR281 on gensh4, a review
379        of all calls to bsp_libc_init() resulted in some cleanup here.
380
3812002-08-21      Joel Sherrill <joel@OARcorp.com>
382
383        * bsp_specs: Added support for -nostdlibs.
384
3852002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
386
387        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
388
3892002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
390
391        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
392        * scitab/Makefile.am: Use .$(OBJEXT) instead of .o.
393        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
394        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
395
3962002-07-25      Joel Sherrill <joel@OARcorp.com>
397
398        * startup/linkcmds: Added __EH_FRAME_BEGIN__ and __EH_FRAME_END__
399        to remove problems linking empty main(){} with BSP.
400
4012002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * start/Makefile.am: Eliminate PGMS.
404        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
405
4062002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
407
408        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
409
4102002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
413        Remove $(OBJS) from all-local.
414
4152002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
418
4192001-05-09      Joel Sherrill <joel@OARcorp.com>
420
421        * startup/linkcmds: In support of gcc 3.1, added one of more
422        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
423        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
424        and direction of segments to memory regions may also have been
425        addressed.  This was a sweep across all BSPs.
426 
4272002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * configure.ac:
430        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
431        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
432        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
433        * Makefile.am: Remove AUTOMAKE_OPTIONS.
434        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
435        * scitab/Makefile.am: Remove AUTOMAKE_OPTIONS.
436        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
437        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
438        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
439
4402001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
443
4442001-11-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
445
446        * configure.ac: Add RTEMS_BSPOPTS_*(CPU_CLOCK_RATE_HZ),
447        RTEMS_BSPOPTS_*(START_HW_INIT),
448        RTEMS_BSPOPTS_*(STANDALONE_EVB).
449        * wrapup/Makefile.am: Apply RTEMS_CPU_MODEL to pickup CPU_PIECES.
450
4512001-10-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * startup/Makefile.am: Remove AC_CFLAGS, HZ.
454
4552001-10-12      Joel Sherrill <joel@OARcorp.com>
456
457        * include/bsp.h, start/start.S, start/start.ram, start/start.rom,
458        startup/bspclean.c, startup/bspstart.c, startup/linkcmds,
459        startup/linkcmds.ram, startup/linkcmds.rom: Fixed typo.
460
4612001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
464        * configure.in: Remove.
465        * configure.ac: New file, generated from configure.in by autoupdate.
466
4672001-09-27      Joel Sherrill <joel@OARcorp.com>
468
469        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
470
4712001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
474        * startup/Makefile.am: Use 'PREINSTALL_FILES ='.
475
4762001-09-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
477
478        * scitab/Makefile.am: Remove stray blank from SCITAB rule.
479
4802001-08-01  Radzislaw Galler  <rgaller@et.put.poznan.pl>
481
482        * include/bsp.h: Disabled redefinition of
483        CONSOLE_DRIVER_TABLE_ENTRY. Some "FIXME:" comments added.
484        * console/config.c: New file. Definitions of externs referenced
485        from libbsp/shared/console.c.
486        * console/Makefile.am: Changed VPATH to point to
487        libbsp/shared. Added config.c to C_FILES and EXTRA_DIST.
488
4892001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
490
491        * configure.in: Add bspopts.h.
492        * include/.cvsignore: Add bspopts.h*, stamp-h*.
493        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
494        * include/bsp.h: Include bspopts.h.
495        * scitab/Makefile.am: Use @CPU_CLOCK_RATE_HZ@.
496
4972001-06-19      Joel Sherrill <joel@OARcorp.com>
498
499        * scitab/Makefile.am, startup/Makefile.am: Use CPU_CLOCK_RATE_HZ as
500        it is called in configure.in instead of HZ.
501
5022001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
503
504        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]), add
505        bspopts.h.     
506        * include/.cvsignore: Add stamp-h*, bspopts.h*.
507        * include/Makefile.am: Use include_HEADERS instead of H_FILES.
508        * include/bsp.h: Add bspopts.h.
509        * startup/bspstart.c: Replace HZ w/ CPU_CLOCK_RATE_HZ.
510
5112001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * startup/linkcmds: Remove OUTPUT_FORMAT.
514
5152001-01-22  Radzislaw Galler  <rgaller@et.put.poznan.pl>
516
517        * README.EVB7045F: New file.
518        * README: Additions and corrections.
519        * include/bsp.h: Switch console to sci0.
520
5212001-01-05      Joel Sherrill <joel@OARcorp.com>
522
523        * include/bsp.h: Changed <sh/null.h> to <rtems/devnull.h> to reflect
524        the movement of this component to libmisc.
525        * wrapup/Makefile.am: /dev/null driver is no longer in libcpu/sh.
526
5272000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
528
529        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
530
5312000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
534
5352000-11-01      Joel Sherrill <joel@OARcorp.com>
536
537        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
538        and libcsupport.h moved from libc to lib/include/rtems and
539        now must be referenced as <rtems/XXX.h>.   Header file order
540        was cleaned up while doing this.
541
5422000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
543
544        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
545        Switch to GNU canonicalization.
546
5472000-09-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
548
549        * scitab/Makefile.am: PROJECT_TOPdir.
550
5512000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
552
553        * console/Makefile.am, scitab/Makefile.am, start/Makefile.am,
554        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
555
5562000-08-10      Joel Sherrill <joel@OARcorp.com>
557
558        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.