source: rtems/c/src/lib/libbsp/m68k/sim68000/ChangeLog @ 7fdce449

4.115
Last change on this file since 7fdce449 was 7fdce449, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/11/11 at 12:34:24

2011-02-11 Ralf Corsépius <ralf.corsepius@…>

  • include/bsp.h: Use "asm" instead of "asm" for improved c99-compliance.
  • Property mode set to 100644
File size: 18.7 KB
Line 
12011-02-11      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * include/bsp.h:
4        Use "__asm__" instead of "asm" for improved c99-compliance.
5
62011-02-02      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * configure.ac: Require autoconf-2.68, automake-1.11.1.
9
102010-04-28      Joel Sherrill <joel.sherrilL@OARcorp.com>
11
12        * startup/bsppredriverhook.c: Remove warnings.
13
142010-04-11      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * console/debugio.c: Include <unistd.h>.
17
182009-10-21      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * make/custom/sim68000.cfg: Remove RTEMS_BSP_FAMILY.
21        * make/custom/simcpu32.cfg: Remove RTEMS_BSP_FAMILY.
22
232009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
24
25        * configure.ac: Don't add -ansi -fasm to CFLAGS.
26
272009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
28
29        * make/custom/sim68000.cfg: New (relocated from /make/custom).
30        * make/custom/simcpu32.cfg: New (relocated from /make/custom).
31
322009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
33
34        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
35
36 2009-08-28     Joel Sherrill <joel.sherrill@OARcorp.com>
37
38        * configure.ac, console/conscfg.c: Add CONSOLE_USE_INTERRUPTS.
39
402009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
41
42        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
43        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
44        have the same options.
45
462009-04-28      Chris Johns <chrisj@rtems.org>
47
48        * start/start.S: Update for boot_card command line change.
49
502008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
51
52        * bsp_specs: Move -e start from *link to *startfile to avoid warning
53        for undefined entry symbol when linking relocatables with binutils
54        2.19.
55
562008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
57
58        * Makefile.am, preinstall.am: Use shared tm27.h stub.
59        * include/tm27.h: Removed.
60
612008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
62
63        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
64        of building libbspstart.a, using automake-rules.
65
662008-09-30      Ralf Corsépius <ralf.corsepius@rtems.org>
67
68        * clock/clockdrv.c: include "../../../shared/clockdrv_shell.h".
69        * Makefile.am: Reflect changes above.
70
712008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
72
73        * Makefile.am: Eliminate *_SOURCES.
74
752008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
76
77        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
78        components.
79
802008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
81
82        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
83
842008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
85
86        * configure.ac: Make letting boot_card() handle work area allocation
87        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
88        BSP_BOOTCARD_OPTIONS.
89
902008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
91
92        * include/bsp.h: Remove unnecessary boilerplate comments.
93
942008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
95
96        * Makefile.am, startup/linkcmds: Use top level shared
97        bsp_get_work_area() implementation.
98
992008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
100
101        * Makefile.am, configure.ac, startup/linkcmds: Add use of
102        bsp_get_work_area() in its own file and rely on BSP Framework to
103        perform more initialization. Remove unnecessary includes of
104        rtems/libio.h and rtems/libcsupport.h.
105        * console/debugio.c, startup/bsppredriverhook.c: New files.
106        * startup/bspstart.c: Removed.
107
1082008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
109
110        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
111        phase, all prototypes were removed from bsp.h and empty
112        implementations were removed and made to use the shared stub.
113
1142008-08-19      Ralf Corsépius <ralf.corsepius@rtems.org>
115
116        * clock/clockdrv.c, startup/bspstart.c: Add missing prototypes.
117
1182008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
119
120        * Makefile.am: Rework to avoid .rel files.
121
1222008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
123
124        * startup/bspstart.c: Refactored and renamed initialization routines to
125        rtems_initialize_data_structures, rtems_initialize_before_drivers,
126        rtems_initialize_device_drivers, and
127        rtems_initialize_start_multitasking. This opened the sequence up so
128        that bootcard() could provide a more robust and flexible framework
129        which is easier to explain and understand. This also lays the
130        groundwork for sharing the division of available memory between the
131        RTEMS workspace and heap and the C library initialization across all
132        BSPs.
133
1342008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
135
136        * startup/linkcmds: Add wildcard to gcc_except_table section so
137        programs compiled with gcc 4.3.x can link.
138
1392007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
142        Configuration Table. Use the RTEMS provided accessor macros to obtain
143        configuration fields.
144
1452007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
146
147        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
148        Configuration Table. Eliminate CPU Table from all ports. Delete
149        references to CPU Table in all forms.
150
1512007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
152
153        * startup/bspstart.c: Moved most of the remaining CPU Table fields to
154        the Configuration Table. This included pretasking_hook,
155        predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace,
156        extra_mpci_receive_server_stack, stack_allocate_hook, and
157        stack_free_hook. As a side-effect of this effort some multiprocessing
158        code was made conditional and some style clean up occurred.
159
1602007-05-03      Joel Sherrill <joel@OARcorp.com>
161
162        * startup/linkcmds: Handle .data.* sections
163
1642007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
165
166        * bsp_specs: Remove qrtems_debug.
167
1682006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
169
170        * configure.ac: New BUG-REPORT address.
171
1722006-11-15      Joel Sherrill <joel@OARcorp.com>
173
174        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
175        file and simplified initialization.
176
1772006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
178
179        * Makefile.am: Remove superfluous -DASM.
180
1812006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * configure.ac: Require autoconf-2.60. Require automake-1.10.
184
1852006-02-08      Joel Sherrill <joel@OARcorp.com>
186
187        * startup/linkcmds: Add sections required by newer gcc versions.
188
1892006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
190
191        * Makefile.am: Add preinstall.am.
192
1932005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
194
195        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
196
1972005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
198
199        * Makefile.am: Remove build-variant support.
200
2012004-11-25      Joel Sherrill <joel@OARcorp.com>
202
203        * startup/linkcmds: Add new bss sections .bss.* and .gnu.linkonce.b*.
204        Also extended RAM section since this is for a simulator
205
2062004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
207
208        * configure.ac: Require automake > 1.9.
209
2102004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
211
212        PR 610/bsps
213        * Makefile.am: Add include/tm27.h, Cosmetics.
214        * include/tm27.h: Final cosmetics.
215
2162004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
217
218        * include/bsp.h: Split out tmtest27 support.
219        * include/tm27.h: New.
220
2212004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        PR 613/bsps
224        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
225
2262004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
227
228        PR 614/bsps
229        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
230
2312004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
232
233        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
234        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
235        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
236
2372004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
238
239        * clock/clockdrv.c, console/conscfg.c, include/bsp.h,
240        startup/bspstart.c: Convert to using c99 fixed size types.
241
2422004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
243
244        * Makefile.am: Reflect changes to bsp.am.
245        Preinstall dist_project_lib*.
246
2472004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
248
249        * Makefile.am: Reflect changes to bsp.am.
250
2512004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
252
253        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
254
2552004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * Makefile.am: Pickup files from ../../m68k/shared instead of
258        ../shared. Reformat.
259
2602004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
263
2642004-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
265
266        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
267        startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am. Use
268        automake compilation rules.
269        * clock/Makefile.am, console/Makefile.am, startup/Makefile.am,
270        timer/Makefile.am, wrapup/Makefile.am: Remove.
271        * configure.ac: Reflect changes above.
272
2732004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
274
275        * Makefile.am: Add PREINSTALL_DIRS.
276        * wrapup/Makefile.am: Reflect changes to libcpu.
277
2782004-01-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
279
280        * Makefile.am: Remove non-existing file "times" from EXTRA_DIST.
281        * startup/Makefile.am: Remove non-existing files setvec.c,
282        bspclean.c, exit.c from EXTRA_DIST.
283        * timer/Makefile.am: Remove non-existing file timer.c from EXTRA_DIST.
284        * wrapup/Makefile.am: Reflect changes to libcpu.
285
2862004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
289        Add PRE/TMPINSTALL_FILES to CLEANFILES.
290        * startup/Makefile.am: Ditto.
291
2922004-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
293
294        * start/Makefile.am: Remove.
295        * Makefile.am: Merge-in start/Makefile.am.
296        * configure.ac: Reflect changes above.
297
2982004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
299
300        * wrapup/Makefile.am: Eliminate $(LIB).
301        Use noinst_DATA to trigger building libbsp.a.
302
3032003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
306        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
307
3082003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
311        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
312
3132003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
316
3172003-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * start/Makefile.am: Misc cleanups and fixes.
320        * startup/Makefile.am: Misc cleanups and fixes.
321        * wrapup/Makefile.am: Misc cleanups and fixes.
322
3232003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * Makefile.am: Add preinstallation dirstamp support.
326        * clock/Makefile.am: Cosmetics.
327        * console/Makefile.am: Cosmetics.
328        * startup/Makefile.am: Cosmetics.
329        * timer/Makefile.am: Cosmetics.
330        * wrapup/Makefile.am: Cosmetics.
331
3322003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * clock/Makefile.am: Remove all-local: $(ARCH).
335        * console/Makefile.am: Remove all-local: $(ARCH).
336        * start/Makefile.am: Remove all-local: $(ARCH).
337        * startup/Makefile.am: Remove all-local: $(ARCH).
338        * timer/Makefile.am: Remove all-local: $(ARCH).
339        * wrapup/Makefile.am: Remove all-local: $(ARCH).
340
3412003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * Makefile.am: Merge-in include/Makefile.am.
344        Reflect changes to bsp.am.
345        * include/Makefile.am: Remove.
346        * configure.ac: Reflect changes above.
347
3482003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * bsp_specs: Remove *lib:.
351
3522003-09-04      Joel Sherrill <joel@OARcorp.com>
353
354        * console/conscfg.c, include/bsp.h, startup/bspstart.c,
355        startup/spurious_assistant.c: URL for license changed.
356
3572003-09-04      Joel Sherrill <joel@OARcorp.com>
358
359        * start/start.S: Removed incorrect statement about copyright
360        assignment.
361
3622003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * Makefile.am: Reflect having moved aclocal/.
365
3662003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * Makefile.am: Reflect having moved automake/.
369        * clock/Makefile.am: Reflect having moved automake/.
370        * console/Makefile.am: Reflect having moved automake/.
371        * include/Makefile.am: Reflect having moved automake/.
372        * start/Makefile.am: Reflect having moved automake/.
373        * startup/Makefile.am: Reflect having moved automake/.
374        * timer/Makefile.am: Reflect having moved automake/.
375        * wrapup/Makefile.am: Reflect having moved automake/.
376
3772003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
380
3812003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        PR 445/bsps
384        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
385        Remove cpp, old_cpp (now unused).
386
3872003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: Remove AC_CONFIG_AUX_DIR.
390
3912003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
394
3952003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * configure.ac: AC_PREREQ(2.57).
398
3992003-01-20      Joel Sherrill <joel@OARcorp.com>
400
401        * startup/linkcmds*: Add FreeBSD sysctl() sections.
402
4032002-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
406        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
407        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
408        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
409        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
410
4112002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * start/Makefile.am: Use install-data-local to install startfile.
414
4152002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
416
417        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
418
4192002-11-01      Joel Sherrill <joel@OARcorp.com>
420
421        * console/conscfg.c, startup/bspstart.c: Removed warnings.
422
4232002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * .cvsignore: Reformat.
426        Add autom4te*cache.
427        Remove autom4te.cache.
428
4292002-08-21      Joel Sherrill <joel@OARcorp.com>
430
431        * wrapup/Makefile.am: PR217 required that the idle task be moved to
432        libcpu so it could be more acutely aware of the CPU model.  This
433        file was modified to pick up the idle task from there.
434
4352002-08-21      Joel Sherrill <joel@OARcorp.com>
436
437        * bsp_specs: Added support for -nostdlibs.
438
4392002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
440
441        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
442        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
443        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
444        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
445        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
446        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
447
4482002-08-05      Joel Sherrill <joel@OARcorp.com>
449
450        * Per PR260 eliminate use of make-target-options.  This impacted
451        RTEMS allowing a distinction between the CPU32 and CPU32+ in the
452        SuperCore and required that the m68k optimized memcpy be moved
453        to libcpu.
454        * wrapup/Makefile.am: Pick up memcpy.o from libcpu.
455
4562002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
457
458        * start/Makefile.am: Eliminate PGM.
459        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
460
4612002-07-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
464
4652002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
468        Remove $(OBJS) from all-local.
469
4702002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * wrapup/Makefile.am: Add $(LIB) to all-local.
473
4742002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
475
476        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
477
4782001-05-09      Joel Sherrill <joel@OARcorp.com>
479
480        * startup/linkcmds: In support of gcc 3.1, added one of more
481        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
482        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
483        and direction of segments to memory regions may also have been
484        addressed.  This was a sweep across all BSPs.
485 
4862002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
487
488        * configure.ac:
489        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
490        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
491        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
492        * Makefile.am: Remove AUTOMAKE_OPTIONS.
493        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
494        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
495        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
496        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
497        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
498        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
499
5002002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
501
502        * startup/bspstart.c: Include rtems/bspIo.h instead of bspIo.h.
503        * startup/spurious_assistant.c: Include rtems/bspIo.h instead of bspIo.h.
504
5052001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
506
507        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
508
5092001-10-30      Joel Sherrill <joel@OARcorp.com>
510
511        * start/start.S: Use __mcpu32__ instead of mcpu32 and change sense
512        of conditional so cpu32 does not attempt to use 68000 style
513        interrupt vectoring.
514
5152001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
518        * configure.in: Remove.
519        * configure.ac: New file, generated from configure.in by autoupdate.
520
5212001-09-27      Joel Sherrill <joel@OARcorp.com>
522
523        * include/bsp.h: Renamed delay() to rtems_bsp_delay().
524
5252001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * include/Makefile.am: Use 'CLEANFILES ='.
528        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
529
5302001-06-19      Joel Sherrill <joel@OARcorp.com>
531
532        * start/start.S: Reverse sense of conditional compilation so the
533        code will compile for a cpu32.
534
5352001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
536
537        * configure.in: Add bspopts.h.
538        * include/.cvsignore: Add bspopts.h*, stamp-h*.
539        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
540        * include/bsp.h: Include bspopts.h.
541
5422001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
543
544        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
545
5462001-01-03      Joel Sherrill <joel@OARcorp.com>
547
548        * start/start.S: Added space for vectors on CPU32 configuration.
549        * startup/bspstart.c: Fixed typo.
550
5512000-12-19      Joel Sherrill <joel@OARcorp.com>
552
553        * startup/linkcmds: Set _VBR to 0 to indicate that the vectors are
554        in RAM not ROM.  Thanks to Juan Zamorano <jzamora@fi.upm.es> for
555        debugging this.
556
5572000-11-27      Joel Sherrill <joel@OARcorp.com>
558
559        * start/start.S, startup/bspstart.c: Not functional for CPU32
560        but hopefully will compile now and give a warning saying that
561        the CPU32 variant needs work.
562
5632000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
564
565        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
566
5672000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
570
5712000-11-01      Joel Sherrill <joel@OARcorp.com>
572
573        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
574        and libcsupport.h moved from libc to lib/include/rtems and
575        now must be referenced as <rtems/XXX.h>.   Header file order
576        was cleaned up while doing this.
577
5782000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
579
580        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
581        Switch to GNU canonicalization.
582
5832000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
584
585        * startup/linkcmds: Added lines so DWARF debug information
586        would be available.  Otherwise gdb complains that the offsets
587        for the debug info are incorrect and doesn't load the files.
588
5892000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
590
591        * clock/Makefile.am, console/Makefile.am, start/Makefile.am,
592        startup/Makefile.am, wrapup/Makefile.am: Include compile.am
593
5942000-08-10      Joel Sherrill <joel@OARcorp.com>
595
596        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.