source: rtems/c/src/lib/libbsp/powerpc/psim/ChangeLog @ c93b6ec

4.104.114.95
Last change on this file since c93b6ec was d34d8692, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/07 at 22:22:26

2007-12-04 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
  • Property mode set to 100644
File size: 21.3 KB
Line 
12007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
4        from CPU Table to Configuration Table. Eliminate CPU Table from all
5        ports. Delete references to CPU Table in all forms.
6
72007-12-03      Joel Sherrill <joel.sherrill@oarcorp.com>
8
9        * Makefile.am, irq/no_pic.c: Spacing.
10
112007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
12
13        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
14        Table fields to the Configuration Table. This included
15        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
16        do_zero_of_workspace, extra_mpci_receive_server_stack,
17        stack_allocate_hook, and stack_free_hook. As a side-effect of this
18        effort some multiprocessing code was made conditional and some style
19        clean up occurred.
20
212007-12-02      Till Straumann <strauman@slac.stanford.edu>
22
23        * irq/no_pic.c: use new inline routine exported by
24        shared/irq/irq_supp.h for scanning the handler list.
25
262007-12-02      Till Straumann <strauman@slac.stanford.edu>
27
28        * irq/irq_init.c: removed irrelevant comment.
29
302007-11-30      Till Straumann <strauman@slac.stanford.edu>
31
32        * startup/bspstart.c: removed declaration of
33        bsp_exceptions_in_RAM.
34
352007-11-30      Till Straumann <strauman@slac.stanford.edu>
36
37        * irq/irq.h, irq/no_pic.c: some more changes to let
38        using shared/irq/irq.c work.
39
402007-11-30      Till Straumann <strauman@slac.stanford.edu>
41
42        * Makefile.am, irq/irq.h, irq/no_pic.c: install
43        and use new <irq/irq_supp.h> header.
44
452007-11-30      Till Straumann <strauman@slac.stanford.edu>
46        * irq/irq.h, irq/irq_init.c: Removed the definition
47        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
48        initialize the irqBase member of the rtems_irq_global_settings
49        struct. However, irqBase is an rtems_irq_symbolic_name,
50        so using BSP_LOWEST_OFFSET is more appropriate.
51
522007-11-30      Till Straumann <strauman@slac.stanford.edu>
53        * irq/irq.h, irq/irq.c (removed), irq/no_pic.c (added),
54        irq/irq_init.c, Makefile.am: The PSIM BSP (currently)
55        has no support for an interrupt controller or interrupts
56        other than the decrementer. Removed all definitions for PCI + ISA
57        interrupts and all unnecessary code (leftovers from copying).
58        Separated PIC-specific bits into 'no_pic.c' which allows us
59        to use 'irq.c' (i.e., more code) from 'shared'.
60
612007-11-30      Till Straumann <strauman@slac.stanford.edu>
62
63        * startup/linkcmds.c, start/start.S: call __eabi() from start.S
64        and make sure linkcmds defines _SDA_BASE_ + _SDA2_BASE_ so that
65        sysv + eabi are properly supported.
66
672007-11-30      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * startup/bspstart.c: BSP_DIRTY_MEMORY should be tested for zero not
70        just defined.
71
722007-11-29      Till Straumann <strauman@slac.stanford.edu>
73
74        * startup/bspstart.c, Makefile.am: Initialize BATs and enable MMU
75        to come closer to what other BSPs do. This allows us to use the
76        shared irq_asm.S. No more individual assembly code :-)
77
782007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
79
80        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
81        Table. They have been replaced with variables named bsp_XXX as
82        needed.
83
842007-09-13      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * configure.ac, startup/bspstart.c: Add BSP_DIRTY_MEMORY option.
87
882007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
89
90        PR 1257/bsps
91        * irq/irq.c: Code outside of cpukit should use the public API for
92        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
93        public API and directly accessing _CPU_ISR_Disable and
94        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
95        directive which could lead to problems. This patch also changes the
96        type of the variable passed into these routines and addresses minor
97        style issues.
98
992007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
100
101        * irq_init.c, Makefile.am: adapted to shared exception code
102
1032007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
104
105        * bsp_specs: Remove qrtems_debug.
106
1072007-04-05      Joel Sherrill <joel@OARcorp.com>
108
109        * clock/clock.c: Removed. File is unused in current source.
110
1112007-03-28      Joel Sherrill <joel@OARcorp.com>
112
113        * Makefile.am: Modify to avoid pulling in too much into minimum
114        executable.
115
1162006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
117
118        * configure.ac: New BUG-REPORT address.
119
1202006-11-15      Joel Sherrill <joel@OARcorp.com>
121
122        * Makefile.am, irq/irq.h: Merge c_rtems_main() into boot_card(). This
123        eliminated a file and simplified initialization.
124
1252006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
126
127        * Makefile.am: Remove superfluous -DASM.
128
1292006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
130
131        * configure.ac: Require autoconf-2.60. Require automake-1.10.
132
1332006-08-09      Joel Sherrill <joel@OARcorp.com>
134
135        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
136
1372006-03-08      Joel Sherrill <joel@OARcorp.com>
138
139        * startup/linkcmds: Add .gnu.linkonce.b.* section.
140
1412006-02-08      Joel Sherrill <joel@OARcorp.com>
142
143        * startup/linkcmds: Add sections required by newer gcc versions.
144
1452006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
146
147        * configure.ac: Remove explicit ampolish3 support (now in
148        RTEMS_BSP_CONFIGURE).
149
1502006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
151
152        * configure.ac: Add ampolish3 support.
153        * Makefile.am: Add preinstall.am.
154
1552006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
156
157        * Makefile.am: Don't include subdirs.am.
158
1592006-01-05      Till Straumann <strauman@slac.stanford.edu>
160
161        * Makefile.am, vectors/vectors.S: use shared version of vectors.S.
162
1632005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
164
165        * include/bsp.h: New header guard.
166
1672005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
168
169        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
170
1712005-05-11      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * include/tm27.h: Elininate unsigned32.
174
1752005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
176
177        PR 779/bsp
178        * irq/irq.c, irq/irq.h, irq/irq_init.c: add parameter to new exception
179        interrupt handlers in powerpc bsps
180
1812005-04-11      Jennifer Averett <jennifer@OARcorp.com>
182
183        PR 777/bsps
184        * include/bsp.h: Add a Processor_Synchronize command in bsp.h
185
1862005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
187
188        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
189        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
190        CPU_MINIMUM_STACK_FRAME_SIZE.
191
1922005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
193
194        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
195
1962005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
197
198        * Makefile.am: Merge-in wrapup/Makefile.am.
199        * wrapup/Makefile.am: Remove.
200        * configure.ac: Reflect changes above.
201
2022005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
203
204        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
205
2062005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
209
2102004-11-22      Jennifer Averett <jennifer@OARcorp.com>
211
212        PR 617/bsps
213        PR 581/bsps
214        * Makefile.am, bsp_specs, configure.ac, include/bsp.h, include/tm27.h,
215        start/start.S, startup/bspstart.c, startup/linkcmds,
216        tools/Makefile.am, tools/psim, vectors/vectors.S, wrapup/Makefile.am:
217        Convert PSIM to new exception model.
218        * irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c: New files.
219        * startup/setvec.c, timer/timer.c: Removed.
220
2212004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
222
223        * configure.ac: Require automake > 1.9.
224
2252004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
226
227        PR 610/bsps
228        * Makefile.am: Add include/tm27.h, Cosmetics.
229        * include/tm27.h: Final cosmetics.
230
2312004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
232
233        * include/bsp.h: Split out tmtest27 support.
234        * include/tm27.h: New.
235
2362004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
237
238        PR 613/bsps
239        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
240
2412004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
242
243        PR 614/bsps
244        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
245
2462004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
247
248        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
249
2502004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
251
252        * vectors/align_h.S: Include <rtems/asm.h> instead of <asm.h>.
253        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
254        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
255        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
256
2572004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
258
259        * include/bsp.h, shmsupp/getcfg.c, startup/bspstart.c,
260        timer/timer.c: Convert to using c99 fixed size types.
261
2622004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
263
264        * Makefile.am: Reflect changes to bsp.am.
265        Preinstall dist_project_lib*.
266
2672004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
268
269        * Makefile.am: Reflect changes to bsp.am.
270
2712004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
272
273        * Makefile.am: Cosmetics.
274
2752004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
276
277        * Makefile.am: Add $(TMPINSTALL_FILES) to all-local.
278
2792004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
280
281        * wrapup/Makefile.am: Convert to automake-building rules.
282
2832004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
284
285        * configure.ac: Remove RTEMS_CHECK_MULTIPROCESSING.
286        Remove AM_CONDITIONAL(HAS_MP).
287
2882004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
289
290        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
291        shmsupp/Makefile.am, startup/Makefile.am, timer/Makefile.am,
292        vectors/Makefile.am. Use automake compilation rules.
293        * clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am,
294        startup/Makefile.am, timer/Makefile.am, vectors/Makefile.am: Remove.
295        * configure.ac: Reflect changes above.
296
2972004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
298
299        * Makefile.am: Merge-in start/Makefile.am.
300        * start/Makefile.am: Remove.
301        * configure.ac: Reflect changes above.
302
3032004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
304
305        * wrapup/Makefile.am: Reflect changes to
306        ../support/*exception_processing/*.
307
3082004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
309
310        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
311        Add RTEMS_PROG_CCAS.
312
3132004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
314
315        * Makefile.am: Add PREINSTALL_DIRS.
316
3172004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
318
319        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
320        Add PRE/TMPINSTALL_FILES to CLEANFILES.
321        * start/Makefile.am: Ditto.
322        * startup/Makefile.am: Ditto.
323
3242004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
325
326        * wrapup/Makefile.am: Eliminate $(LIB).
327        Use noinst_DATA to trigger building libbsp.a.
328
3292003-12-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
330
331        * console/Makefile.am: Eliminate *.rel.
332        Use $(top_srcdir)/../../shared instead of ../../../shared.
333        * startup/Makefile.am: Cosmetics.
334
3352003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
336
337        * clock/Makefile.am: Eliminate VPATH.
338        * console/Makefile.am: Eliminate VPATH.
339        * shmsupp/Makefile.am: Eliminate VPATH.
340        * startup/Makefile.am: Eliminate VPATH.
341        * timer/Makefile.am: Eliminate VPATH.
342        * vectors/Makefile.am: Eliminate VPATH.
343
3442003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346        * wrapup/Makefile.am: Remove GENERIC_FILES.
347
3482003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * startup/linkcmds: Remove SEARCH_DIR.
351
3522003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
353
354        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
355        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
356
3572003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
360        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
361
3622003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
365
3662003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * start/Makefile.am: Misc cleanups and fixes.
369        * startup/Makefile.am: Misc cleanups and fixes.
370        * startup/linkcmds: Preparations for gcc-3.3.x.
371        * wrapup/Makefile.am: Misc cleanups and fixes.
372
3732003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
374
375        * Makefile.am: Add preinstallation dirstamp support.
376        * clock/Makefile.am: Cosmetics.
377        * console/Makefile.am: Cosmetics.
378        * shmsupp/Makefile.am: Cosmetics.
379        * startup/Makefile.am: Cosmetics.
380        * timer/Makefile.am: Cosmetics.
381        * vectors/Makefile.am: Cosmetics.
382        * wrapup/Makefile.am: Cosmetics.
383
3842003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * clock/Makefile.am: Remove all-local: $(ARCH).
387        * console/Makefile.am: Remove all-local: $(ARCH).
388        * shmsupp/Makefile.am: Remove all-local: $(ARCH).
389        * start/Makefile.am: Remove all-local: $(ARCH).
390        * startup/Makefile.am: Remove all-local: $(ARCH).
391        * timer/Makefile.am: Remove all-local: $(ARCH).
392        * vectors/Makefile.am: Remove all-local: $(ARCH).
393        * wrapup/Makefile.am: Remove all-local: $(ARCH).
394
3952003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * Makefile.am: Merge-in include/Makefile.am.
398        Reflect changes to bsp.am.
399        * include/Makefile.am: Remove.
400        * configure.ac: Reflect changes above.
401
4022003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
403
404        * bsp_specs: Remove *lib:.
405
4062003-09-04      Joel Sherrill <joel@OARcorp.com>
407
408        * console/console-io.c, include/bsp.h, include/coverhd.h,
409        shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c,
410        shmsupp/mpisr.c, startup/bspclean.c, startup/bspstart.c,
411        startup/linkcmds, startup/setvec.c, tools/psim, tools/runtest,
412        vectors/vectors.S: URL for license changed.
413
4142003-09-04      Joel Sherrill <joel@OARcorp.com>
415
416        * startup/bspstart.c: Removed incorrect statement about copyright
417        assignment.
418
4192003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
420
421        * Makefile.am: Reflect having moved aclocal/.
422
4232003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
424
425        * Makefile.am: Reflect having moved automake/.
426        * clock/Makefile.am: Reflect having moved automake/.
427        * console/Makefile.am: Reflect having moved automake/.
428        * include/Makefile.am: Reflect having moved automake/.
429        * shmsupp/Makefile.am: Reflect having moved automake/.
430        * start/Makefile.am: Reflect having moved automake/.
431        * startup/Makefile.am: Reflect having moved automake/.
432        * timer/Makefile.am: Reflect having moved automake/.
433        * vectors/Makefile.am: Reflect having moved automake/.
434        * wrapup/Makefile.am: Reflect having moved automake/.
435
4362003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
437
438        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
439
4402003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        PR 445/bsps
443        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
444        Remove cpp, old_cpp (now unused).
445
4462003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * configure.ac: Remove AC_CONFIG_AUX_DIR.
449
4502003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
451
452        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
453
4542003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
455
456        * configure.ac: AC_PREREQ(2.57).
457
4582003-01-20      Joel Sherrill <joel@OARcorp.com>
459
460        * startup/linkcmds*: Add FreeBSD sysctl() sections.
461
4622002-12-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
465        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
466        * shmsupp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
467        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
468        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
469        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
470        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
471
4722002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
473
474        * start/Makefile.am: Use install-data-local to install startfile.
475
4762002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
477
478        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
479
4802002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
481
482        * .cvsignore: Reformat.
483        Add autom4te*cache.
484        Remove autom4te.cache.
485
4862002-09-07      Joel Sherrill <joel@OARcorp.com>
487
488        * clock/clock.c: Disabled use of fast idle since it seems broken
489        with gcc 3.2.
490
4912002-08-21      Joel Sherrill <joel@OARcorp.com>
492
493        * bsp_specs: Added support for -nostdlibs.
494
4952002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
498        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
499        * shmsupp/Makefile.am: Use .$(OBJEXT) instead of .o.
500        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
501        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
502        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
503        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
504        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
505
5062002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * start/Makefile.am: Eliminate PGM.
509        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
510
5112002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * startup/Makefile.am: Add bsplib_DATA = linkcmds device-tree.
514
5152002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
516
517        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
518        Remove $(OBJS) from all-local.
519
5202002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
521
522        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
523
5242001-05-09      Joel Sherrill <joel@OARcorp.com>
525
526        * startup/linkcmds: In support of gcc 3.1, added one of more
527        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
528        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
529        and direction of segments to memory regions may also have been
530        addressed.  This was a sweep across all BSPs.
531 
5322002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * startup/bspstart.c: Include <rtems/bspIo.h>.
535        * vectors/align_h.S: Use <> instead of "" for include files.
536
5372001-04-08      Joel Sherrill <joel@OARcorp.com>
538
539        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
540 
5412002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * configure.ac:
544        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
545        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
546        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
547        * Makefile.am: Remove AUTOMAKE_OPTIONS.
548        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
549        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
550        * shmsupp/Makefile.am: Remove AUTOMAKE_OPTIONS.
551        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
552        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
553        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
554        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
555        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
556
5572002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * console/console-io.c: Include rtems/bspIo.h instead of bspIo.h.
560
5612001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
562
563        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
564
5652001-11-26      Joel Sherrill <joel@OARcorp.com>
566
567        * vectors/vectors.S: Include <bsp.h> to get PPC_VECTOR_FILE_BASE.
568
5692001-11-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
570
571        * Makefile.am: Add @exceptions@ to SUBDIRS.
572        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
573        make/custom/psim.cfg;
574        Remove RTEMS_OUTPUT_BUILD_SUBDIRS;
575        Add RTEMS_PPC_EXCEPTIONS([old]).
576        * include/Makefile.am: include force-preinstall.am.
577        * wrapup/Makefile.am: Apply @exceptions@.
578
5792001-11-20      Joel Sherrill <joel@OARcorp.com>
580
581        * console/console-io.c: Fix incorrect comment.
582
5832001-11-08      Dennis Ehlin (ECS) <Dennis.Ehlin@ecs.ericsson.se>
584
585        This modification is part of the submitted modifications necessary to
586        support the IBM PPC405 family.  This submission was reviewed by
587        Thomas Doerfler <Thomas.Doerfler@imd-systems.de> who ensured it did
588        not negatively impact the ppc403 BSPs.  The submission and tracking
589        process was captured as PR50.
590        * vectors/align_h.S: Added ppc405 support.
591
5922001-10-25      Joel Sherrill <joel@OARcorp.com>
593
594        * startup/linkcmds: Added _init and _fini.
595
5962001-10-12      Joel Sherrill <joel@OARcorp.com>
597
598        * shmsupp/lock.c, shmsupp/mpisr.c: Fixed typo.
599
6002001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
603        * configure.in: Remove.
604        * configure.ac: New file, generated from configure.in by autoupdate.
605
6062001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
607
608        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
609
6102001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
611
612        * wrapup/Makefile.am: Use GENERIC_PIECES = to make automake-1.5
613        happy.
614
6152001-08-16      Joel Sherrill <joel@OARcorp.com>
616
617        * clock/clock.c: Ensure that clock ticks are long enough to
618        make forward progress.  This was modified to improve results
619        on the RTEMS tests and the ACATS.
620        * startup/linkcmds: Modified to work better with gcc 2.8.1 and
621        gnat 3.13p.
622
6232001-05-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
624
625        * configure.in: Add bspopts.h.
626        * include/.cvsignore: Add bspopts.h*, stamp-h*.
627        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
628        * include/bsp.h: Include bspopts.h.
629
6302001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
631
632        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
633
6342001-01-03      Joel Sherrill <joel@OARcorp.com>
635
636        * clock/clock.c: Use shared clock driver shell.
637        * console/console.c: Removed.  Now use shared polling shell.
638        * console/console-io.c: New file.
639        * console/Makefile.am: Correct to use shared polling shell.
640        * startup/bspstart.c: Remove all fast idle references.
641
6422000-12-19      Joel Sherrill <joel@OARcorp.com>
643
644        * timer/timer.c: Removed incorrect comments about ERC32.
645
6462000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
649
6502000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
651
652        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
653
6542000-11-01      Joel Sherrill <joel@OARcorp.com>
655
656        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
657        and libcsupport.h moved from libc to lib/include/rtems and
658        now must be referenced as <rtems/XXX.h>.   Header file order
659        was cleaned up while doing this.
660
6612000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
662
663        * configure.in, Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
664        Switch to GNU canonicalization.
665
6662000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
667
668        * clock/Makefile.am, console/Makefile.am, shmsupp/Makefile.am,
669        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
670        vectors/Makefile.am, wrapup/Makefile.am: Include compile.am
671
6722000-08-10      Joel Sherrill <joel@OARcorp.com>
673
674        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.