source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog @ 558bc25

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

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

  • Makefile.am, startup/bspstart.c: Moved most of the remaining CPU Table fields to the Configuration Table. This included pretasking_hook, predriver_hook, postdriver_hook, idle_task, do_zero_of_workspace, extra_mpci_receive_server_stack, stack_allocate_hook, and stack_free_hook. As a side-effect of this effort some multiprocessing code was made conditional and some style clean up occurred.
  • Property mode set to 100644
File size: 19.5 KB
Line 
12007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
4        Table fields to the Configuration Table. This included
5        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
6        do_zero_of_workspace, extra_mpci_receive_server_stack,
7        stack_allocate_hook, and stack_free_hook. As a side-effect of this
8        effort some multiprocessing code was made conditional and some style
9        clean up occurred.
10
112007-11-30      Till Straumann <strauman@slac.stanford.edu>
12
13        * irq/irq.h, irq/irq_init.c: Removed the definition
14        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
15        initialize the irqBase member of the rtems_irq_global_settings
16        struct. However, irqBase is an rtems_irq_symbolic_name,
17        so using BSP_LOWEST_OFFSET is more appropriate.
18
192007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
20
21        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
22        Table. They have been replaced with variables named bsp_XXX as
23        needed.
24
252007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
26
27        PR 1257/bsps
28        * irq/irq.c: Code outside of cpukit should use the public API for
29        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
30        public API and directly accessing _CPU_ISR_Disable and
31        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
32        directive which could lead to problems. This patch also changes the
33        type of the variable passed into these routines and addresses minor
34        style issues.
35
362007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
37
38        * vectors/vectors_init.c, irq/irq_init.c:
39        adapted to shared exception code
40
412007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
42
43        * Makefile.am: adapted to shared exception code
44
452007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
46
47        * bsp_specs: Remove qrtems_debug.
48
492007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
50
51        * bsp_specs: Remove lib (Now expected to exist in GCC).
52
532006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
54
55        * network/if_hdlcsubr.h: Remove K'n'R macros.
56        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
57
582006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
59
60        * configure.ac: New BUG-REPORT address.
61
622006-11-15      Joel Sherrill <joel@OARcorp.com>
63
64        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
65        file and simplified initialization.
66
672006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
68
69        * Makefile.am: Remove superfluous -DASM.
70
712006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
72
73        * configure.ac: Require autoconf-2.60. Require automake-1.10.
74
752006-08-09      Joel Sherrill <joel@OARcorp.com>
76
77        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
78
792006-03-08      Joel Sherrill <joel@OARcorp.com>
80
81        * startup/linkcmds: Add .gnu.linkonce.b.* section.
82
832006-02-08      Joel Sherrill <joel@OARcorp.com>
84
85        * startup/linkcmds: Add sections required by newer gcc versions.
86
872006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
88
89        * configure.ac: Remove explicit ampolish3 support (now in
90        RTEMS_BSP_CONFIGURE).
91
922006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
93
94        * configure.ac: Add ampolish3 support.
95        * Makefile.am: Add preinstall.am.
96
972006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
98
99        * Makefile.am: Don't include subdirs.am.
100
1012005-10-06      Till Straumann <strauman@slac.stanford.edu>
102
103        PR 833/bsps
104        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
105        the FPU across the user ISR but DONT save/restore the FPU context.
106        Any use of the FPU fron the user handler (e.g., due to GCC
107        optimizations) result in corruption. The fix results in an exception
108        in such cases (user ISR must explicitely save/enable/restore FPU).
109
1102005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
111
112        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
113        instead of <sys/errno.h>.
114
1152005-05-26      Joel Sherrill <joel@OARcorp.com>
116
117        PR 799/bsps
118        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
119        compiled.
120
1212005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
122
123        * include/bsp.h: New header guard.
124
1252005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
126
127        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
128
1292005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
130
131        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
132
1332005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
134
135        PR 779/bsp
136        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
137        network/network.c: add parameter to new exception interrupt handlers
138        in powerpc bsps
139
1402005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
141
142        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
143        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
144        CPU_MINIMUM_STACK_FRAME_SIZE.
145
1462005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
147
148        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
149
1502005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
151
152        * Makefile.am: Merge-in wrapup/Makefile.am.
153        * wrapup/Makefile.am: Remove.
154        * configure.ac: Reflect changes above.
155
1562005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
157
158        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
159
1602005-01-04      Joel Sherrill <joel@OARcorp.com>
161
162        * startup/linkcmds: Remove warnings.
163
1642005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
165
166        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
167
1682004-09-27      Joel Sherrill <joel@OARcorp.com>
169
170        PR 680/bsps
171        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
172
1732004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
174
175        * configure.ac: Require automake > 1.9.
176
1772004-07-25      Joel Sherrill <joel@OARcorp.com>
178
179        * network/network.c: Add include of <sys/errno.h>.
180
1812004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
182
183        PR 610/bsps
184        * Makefile.am: Add include/tm27.h, Cosmetics.
185        * include/tm27.h: Final cosmetics.
186
1872004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
188
189        * include/bsp.h: Split out tmtest27 support.
190        * include/tm27.h: New.
191
1922004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
193
194        PR 613/bsps
195        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
196
1972004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
198
199        PR 614/bsps
200        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
201
2022004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
203
204        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
205
2062004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
207
208        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
209        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
210        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
211        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
212
2132004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
214
215        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
216        startup/bspstart.c: Convert to using c99 fixed size types.
217
2182004-03-03      Joel Sherrill <joel@OARcorp.com>
219
220        * irq/irq.h: Correct typo.
221
2222004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
223
224        * Makefile.am: Reflect changes to bsp.am.
225        Preinstall dist_project_lib*.
226
2272004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
228
229        * Makefile.am: Reflect changes to bsp.am.
230
2312004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
232
233        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
234
2352004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
236
237        * wrapup/Makefile.am: Convert to automake-building rules.
238
2392004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
240
241        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
242        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
243        vectors/Makefile.am. Use automake compilation rules.
244        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
245        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
246        * configure.ac: Reflect changes above.
247        * wrapup/Makefile: Reflect changes above.
248
2492004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
250
251        * Makefile.am: Merge-in start/Makefile.am.
252        * start/Makefile.am: Remove.
253        * configure.ac: Reflect changes above.
254
2552004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
256
257        * wrapup/Makefile.am: Reflect changes to
258        ../support/*exception_processing/*.
259
2602004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
261
262        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
263        Add RTEMS_PROG_CCAS.
264
2652004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
266
267        * Makefile.am: Add PREINSTALL_DIRS.
268        * irq/Makefile.am: Add PREINSTALL_DIRS.
269        * vectors/Makefile.am: Add PREINSTALL_DIRS.
270        * wrapup/Makefile.am: Reflect changes to libcpu.
271
2722004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
273
274        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
275        Add PRE/TMPINSTALL_FILES to CLEANFILES.
276        * irq/Makefile.am: Ditto.
277        * start/Makefile.am: Ditto.
278        * startup/Makefile.am: Ditto.
279        * vectors/Makefile.am: Ditto.
280
2812004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
282
283        * wrapup/Makefile.am: Eliminate $(LIB).
284        Use noinst_DATA to trigger building libbsp.a.
285
2862003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
287
288        * clock/Makefile.am: Eliminate VPATH.
289        * console/Makefile.am: Eliminate VPATH.
290        * irq/Makefile.am: Eliminate VPATH.
291        * network/Makefile.am: Eliminate VPATH.
292        * startup/Makefile.am: Eliminate VPATH.
293
2942003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
295
296        PR 545/bsps
297        * startup/setvec.c: Removed.
298
2992003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
300
301        * startup/linkcmds: Remove SEARCH_DIR.
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        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
311        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
312        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
313        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
314
3152003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
318
3192003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * start/Makefile.am: Misc cleanups and fixes.
322        * startup/Makefile.am: Misc cleanups and fixes.
323        * startup/linkcmds: Preparations for gcc-3.3.x.
324        * wrapup/Makefile.am: Misc cleanups and fixes.
325
3262003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
327
328        * startup/Makefile.am: Remove S_FILES (Unused).
329        * vectors/Makefile.am: Cosmetics.
330        * wrapup/Makefile.am: Cosmetics.
331
3322003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
333
334        * Makefile.am: Add preinstallation dirstamp support.
335        * clock/Makefile.am: Cosmetics.
336        * console/Makefile.am: Cosmetics.
337        * irq/Makefile.am: Add preinstallation dirstamp support.
338        * network/Makefile.am: Cosmetics.
339        * startup/Makefile.am: Cosmetics.
340        * vectors/Makefile.am: Add preinstallation dirstamp support.
341        * wrapup/Makefile.am: Cosmetics.
342
3432003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * clock/Makefile.am: Remove all-local: $(ARCH).
346        * console/Makefile.am: Remove all-local: $(ARCH).
347        * irq/Makefile.am: Remove all-local: $(ARCH).
348        * network/Makefile.am: Remove all-local: $(ARCH).
349        * start/Makefile.am: Remove all-local: $(ARCH).
350        * startup/Makefile.am: Remove all-local: $(ARCH).
351        * vectors/Makefile.am: Remove all-local: $(ARCH).
352        * wrapup/Makefile.am: Remove all-local: $(ARCH).
353
3542003-10-22      Joel Sherrill <joel@OARcorp.com>
355
356        PR 510/bsps
357        * irq/irq.h: Add extern C wrapper.
358
3592003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
360
361        * Makefile.am: Merge-in include/Makefile.am.
362        Reflect changes to bsp.am.
363        * include/Makefile.am: Remove.
364        * configure.ac: Reflect changes above.
365
3662003-09-04      Joel Sherrill <joel@OARcorp.com>
367
368        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
369        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
370        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
371        vectors/vectors_init.c: URL for license changed.
372
3732003-08-20      Joel Sherrill <joel@OARcorp.com>
374
375        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
376
3772003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
378
379        * Makefile.am: Reflect having moved aclocal/.
380
3812003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
382
383        * Makefile.am: Reflect having moved automake/.
384        * clock/Makefile.am: Reflect having moved automake/.
385        * console/Makefile.am: Reflect having moved automake/.
386        * include/Makefile.am: Reflect having moved automake/.
387        * irq/Makefile.am: Reflect having moved automake/.
388        * network/Makefile.am: Reflect having moved automake/.
389        * start/Makefile.am: Reflect having moved automake/.
390        * startup/Makefile.am: Reflect having moved automake/.
391        * vectors/Makefile.am: Reflect having moved automake/.
392        * wrapup/Makefile.am: Reflect having moved automake/.
393
3942003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
395
396        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
397
3982003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
399
400        PR 445/bsps
401        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
402        Remove cpp, old_cpp (now unused).
403
4042003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
405
406        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
407        Use memcmp instead of bcmp.
408
4092003-07-18      Till Straumann <strauman@slac.stanford.edu>
410
411        PR 288/rtems
412        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
413
4142003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * configure.ac: Remove AC_CONFIG_AUX_DIR.
417
4182003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
419
420        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
421
4222003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * configure.ac: AC_PREREQ(2.57).
425
4262003-01-20      Joel Sherrill <joel@OARcorp.com>
427
428        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
429
4302002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
433        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
434        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
435        Remove SORDID_HACK. Eliminate *_O_FILES.
436        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
437        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
438        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
439        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
440
4412002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
442
443        * start/Makefile.am: Use install-data-local to install startfile.
444
4452002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
446
447        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
448
4492002-11-04      Joel Sherrill <joel@OARcorp.com>
450
451        * irq/irq.c: Removed warnings.
452
4532002-11-04      Joel Sherrill <joel@OARcorp.com>
454
455        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
456        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
457        Removed warnings.
458
4592002-11-01      Joel Sherrill <joel@OARcorp.com>
460
461        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
462        removed warnings.
463
4642002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
465
466        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
467        for _ISR_Nest_level.
468
4692002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * .cvsignore: Reformat.
472        Add autom4te*cache.
473        Remove autom4te.cache.
474
4752002-08-21      Joel Sherrill <joel@OARcorp.com>
476
477        * bsp_specs: Added support for -nostdlibs.
478
4792002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
480
481        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
482        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
483        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
484        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
485        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
486        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
487        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
488        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
489
4902002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
491
492        * start/Makefile.am: Eliminate PGM.
493        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
494
4952002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
498
4992002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
502        Remove $(OBJS) from all-local.
503
5042002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
507
5082001-05-09      Joel Sherrill <joel@OARcorp.com>
509
510        * startup/linkcmds: In support of gcc 3.1, added one of more
511        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
512        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
513        and direction of segments to memory regions may also have been
514        addressed.  This was a sweep across all BSPs.
515 
5162002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
517
518        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
519        * irq/irq_asm.S: Ditto.
520        * network/network.c: Include <rtems/bspIo.h>.
521        * start/start.S: Include <asm.h> instead of "asm.h".
522        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
523
5242002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
525
526        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
527
5282002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
529
530        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
531
5322002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * configure.ac:
535        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
536        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
537        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
538        * Makefile.am: Remove AUTOMAKE_OPTIONS.
539        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
540        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
541        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
542        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
543        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
544        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
545        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
546        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
547
5482002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
549
550        * configure.ac: Add RTEMS_CHECK_NETWORKING.
551
5522002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
553
554        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
555        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
556        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
557
5582001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
559
560        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
561
5622001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
563
564        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
565        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
566
5672001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * Makefile.am: Add @exceptions@ to SUBDIRS.
570        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
571        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
572        * include/Makefile.am: Convert PREINSTALL_FILES to
573        TMPINSTALL_FILES, include force-preinstall.am.
574        * wrapup/Makefile.am: Apply @exceptions@.
575
5762001-10-29      Joel Sherrill <joel@OARcorp.com>
577
578        * .cvsignore: Add more entries.
579
5802001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
581
582        * aclocal.m4: Removed.  Should not have been in CVS.
583
5842001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
585
586        * aclocal.m4: Regenerated.
587        * configure.ac, include/Makefile.am, irq/Makefile.am,
588        vectors/Makefile.am: Updated to autoconf 2.52.
589        * include/.cvsignore: Added newly generated files.
590        * include/bsp.h: Added include of bspopts.h.
591
5922001-10-22      Joel Sherrill <joel@OARcorp.com>
593
594        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
595        include/.cvsignore, network/.cvsignore, start/.cvsignore,
596        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
597        files and other files missed in previous commit.
598
59901-10-22        Andy Dachs <a.dachs@sstl.co.uk>
600
601        * mpc8260ads added as new BSP.  tm27 reported not to run
602        at this time.
603        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
604        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
605        console/Makefile.am, console/console.c, include/Makefile.am,
606        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
607        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
608        network/Makefile.am, network/README, network/if_hdlcsubr.c,
609        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
610        start/start.S, startup/Makefile.am, startup/bspstart.c,
611        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
612        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
613        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
614        New files.
615
Note: See TracBrowser for help on using the repository browser.