source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/ChangeLog @ 91b8fcfb

4.104.115
Last change on this file since 91b8fcfb was 0f707111, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 22:05:14

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

  • Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization.
  • startup/bspgetworkarea.c: New file.
  • Property mode set to 100644
File size: 22.8 KB
Line 
12008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
4        use of bsp_get_work_area() in its own file and rely on BSP Framework
5        to perform more initialization.
6        * startup/bspgetworkarea.c: New file.
7
82008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
9
10        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
11        phase, all prototypes were removed from bsp.h and empty
12        implementations were removed and made to use the shared stub.
13
142008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * irq/irq.c, startup/bspstart.c: Convert to bool.
17
182008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
21        Add missing prototypes.
22
232008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
24
25        * start/start.S: Clear environment pointer for bootcard.
26
272008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
28
29        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
30        Framework to ask the BSP where it has memory for the RTEMS Workspace
31        and C Program Heap. These collectively are referred to as work area.
32        If the BSP supports this, then it does not have to include code to
33        split the available memory between the two areas. This reduces the
34        amount of code in the BSP specific bspstart.c file. Additionally, the
35        shared framework can initialize the C Library, call
36        rtems_debug_enable(), and dirty the work area memory. Until most/all
37        BSPs support this new capability, if the BSP supports this, it should
38        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
39        When the transition is complete, this autoconf macro can be removed.
40
412008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
42
43        * irq/irq.c:
44        make sure, that the masking operations in
45        ICTL and MSR are executed in order
46
472008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
48
49        * Makefile.am: Rework to avoid .rel files.
50
512008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * startup/bspstart.c: Refactored and renamed initialization routines to
54        rtems_initialize_data_structures, rtems_initialize_before_drivers,
55        rtems_initialize_device_drivers, and
56        rtems_initialize_start_multitasking. This opened the sequence up so
57        that bootcard() could provide a more robust and flexible framework
58        which is easier to explain and understand. This also lays the
59        groundwork for sharing the division of available memory between the
60        RTEMS workspace and heap and the C library initialization across all
61        BSPs.
62
632008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
64
65        * startup/bspstart.c: Remove all references to
66        console_reserve_resources and termios_reserve_resources.
67
682008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
69
70        * startup/linkcmds: Add wildcard to gcc_except_table section so
71        programs compiled with gcc 4.3.x can link.
72
732007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
74
75        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
76        Configuration Table. Use the RTEMS provided accessor macros to obtain
77        configuration fields.
78
792007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
80
81        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
82        Configuration Table. Eliminate CPU Table from all ports. Delete
83        references to CPU Table in all forms.
84
852007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
88        Table fields to the Configuration Table. This included
89        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
90        do_zero_of_workspace, extra_mpci_receive_server_stack,
91        stack_allocate_hook, and stack_free_hook. As a side-effect of this
92        effort some multiprocessing code was made conditional and some style
93        clean up occurred.
94
952007-11-30      Till Straumann <strauman@slac.stanford.edu>
96
97        * irq/irq.h, irq/irq_init.c: Removed the definition
98        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
99        initialize the irqBase member of the rtems_irq_global_settings
100        struct. However, irqBase is an rtems_irq_symbolic_name,
101        so using BSP_LOWEST_OFFSET is more appropriate.
102
1032007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
106        Table. They have been replaced with variables named bsp_XXX as
107        needed.
108
1092007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        PR 1257/bsps
112        * irq/irq.c: Code outside of cpukit should use the public API for
113        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
114        public API and directly accessing _CPU_ISR_Disable and
115        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
116        directive which could lead to problems. This patch also changes the
117        type of the variable passed into these routines and addresses minor
118        style issues.
119
1202007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
121
122        * vectors/vectors_init.c, irq/irq_init.c:
123        adapted to shared exception code
124
1252007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
126
127        * Makefile.am: adapted to shared exception code
128
1292007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
130
131        * bsp_specs: Remove qrtems_debug.
132
1332007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
134
135        * bsp_specs: Remove lib (Now expected to exist in GCC).
136
1372006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
138
139        * network/if_hdlcsubr.h: Remove K'n'R macros.
140        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
141
1422006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
143
144        * configure.ac: New BUG-REPORT address.
145
1462006-11-15      Joel Sherrill <joel@OARcorp.com>
147
148        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
149        file and simplified initialization.
150
1512006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * Makefile.am: Remove superfluous -DASM.
154
1552006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
156
157        * configure.ac: Require autoconf-2.60. Require automake-1.10.
158
1592006-08-09      Joel Sherrill <joel@OARcorp.com>
160
161        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
162
1632006-03-08      Joel Sherrill <joel@OARcorp.com>
164
165        * startup/linkcmds: Add .gnu.linkonce.b.* section.
166
1672006-02-08      Joel Sherrill <joel@OARcorp.com>
168
169        * startup/linkcmds: Add sections required by newer gcc versions.
170
1712006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
172
173        * configure.ac: Remove explicit ampolish3 support (now in
174        RTEMS_BSP_CONFIGURE).
175
1762006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
177
178        * configure.ac: Add ampolish3 support.
179        * Makefile.am: Add preinstall.am.
180
1812006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
182
183        * Makefile.am: Don't include subdirs.am.
184
1852005-10-06      Till Straumann <strauman@slac.stanford.edu>
186
187        PR 833/bsps
188        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
189        the FPU across the user ISR but DONT save/restore the FPU context.
190        Any use of the FPU fron the user handler (e.g., due to GCC
191        optimizations) result in corruption. The fix results in an exception
192        in such cases (user ISR must explicitely save/enable/restore FPU).
193
1942005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
195
196        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
197        instead of <sys/errno.h>.
198
1992005-05-26      Joel Sherrill <joel@OARcorp.com>
200
201        PR 799/bsps
202        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
203        compiled.
204
2052005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
206
207        * include/bsp.h: New header guard.
208
2092005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
210
211        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
212
2132005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
214
215        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
216
2172005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
218
219        PR 779/bsp
220        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
221        network/network.c: add parameter to new exception interrupt handlers
222        in powerpc bsps
223
2242005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
225
226        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
227        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
228        CPU_MINIMUM_STACK_FRAME_SIZE.
229
2302005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
231
232        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
233
2342005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
235
236        * Makefile.am: Merge-in wrapup/Makefile.am.
237        * wrapup/Makefile.am: Remove.
238        * configure.ac: Reflect changes above.
239
2402005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
241
242        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
243
2442005-01-04      Joel Sherrill <joel@OARcorp.com>
245
246        * startup/linkcmds: Remove warnings.
247
2482005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
249
250        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
251
2522004-09-27      Joel Sherrill <joel@OARcorp.com>
253
254        PR 680/bsps
255        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
256
2572004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
258
259        * configure.ac: Require automake > 1.9.
260
2612004-07-25      Joel Sherrill <joel@OARcorp.com>
262
263        * network/network.c: Add include of <sys/errno.h>.
264
2652004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
266
267        PR 610/bsps
268        * Makefile.am: Add include/tm27.h, Cosmetics.
269        * include/tm27.h: Final cosmetics.
270
2712004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
272
273        * include/bsp.h: Split out tmtest27 support.
274        * include/tm27.h: New.
275
2762004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
277
278        PR 613/bsps
279        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
280
2812004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
282
283        PR 614/bsps
284        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
285
2862004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
287
288        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
289
2902004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
291
292        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
293        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
294        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
295        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
296
2972004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
298
299        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
300        startup/bspstart.c: Convert to using c99 fixed size types.
301
3022004-03-03      Joel Sherrill <joel@OARcorp.com>
303
304        * irq/irq.h: Correct typo.
305
3062004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
307
308        * Makefile.am: Reflect changes to bsp.am.
309        Preinstall dist_project_lib*.
310
3112004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
312
313        * Makefile.am: Reflect changes to bsp.am.
314
3152004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
318
3192004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * wrapup/Makefile.am: Convert to automake-building rules.
322
3232004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
326        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
327        vectors/Makefile.am. Use automake compilation rules.
328        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
329        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
330        * configure.ac: Reflect changes above.
331        * wrapup/Makefile: Reflect changes above.
332
3332004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
334
335        * Makefile.am: Merge-in start/Makefile.am.
336        * start/Makefile.am: Remove.
337        * configure.ac: Reflect changes above.
338
3392004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
340
341        * wrapup/Makefile.am: Reflect changes to
342        ../support/*exception_processing/*.
343
3442004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
345
346        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
347        Add RTEMS_PROG_CCAS.
348
3492004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * Makefile.am: Add PREINSTALL_DIRS.
352        * irq/Makefile.am: Add PREINSTALL_DIRS.
353        * vectors/Makefile.am: Add PREINSTALL_DIRS.
354        * wrapup/Makefile.am: Reflect changes to libcpu.
355
3562004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
357
358        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
359        Add PRE/TMPINSTALL_FILES to CLEANFILES.
360        * irq/Makefile.am: Ditto.
361        * start/Makefile.am: Ditto.
362        * startup/Makefile.am: Ditto.
363        * vectors/Makefile.am: Ditto.
364
3652004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
366
367        * wrapup/Makefile.am: Eliminate $(LIB).
368        Use noinst_DATA to trigger building libbsp.a.
369
3702003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
371
372        * clock/Makefile.am: Eliminate VPATH.
373        * console/Makefile.am: Eliminate VPATH.
374        * irq/Makefile.am: Eliminate VPATH.
375        * network/Makefile.am: Eliminate VPATH.
376        * startup/Makefile.am: Eliminate VPATH.
377
3782003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
379
380        PR 545/bsps
381        * startup/setvec.c: Removed.
382
3832003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * startup/linkcmds: Remove SEARCH_DIR.
386
3872003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
390        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
391
3922003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
395        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
396        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
397        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
398
3992003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
402
4032003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * start/Makefile.am: Misc cleanups and fixes.
406        * startup/Makefile.am: Misc cleanups and fixes.
407        * startup/linkcmds: Preparations for gcc-3.3.x.
408        * wrapup/Makefile.am: Misc cleanups and fixes.
409
4102003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
411
412        * startup/Makefile.am: Remove S_FILES (Unused).
413        * vectors/Makefile.am: Cosmetics.
414        * wrapup/Makefile.am: Cosmetics.
415
4162003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * Makefile.am: Add preinstallation dirstamp support.
419        * clock/Makefile.am: Cosmetics.
420        * console/Makefile.am: Cosmetics.
421        * irq/Makefile.am: Add preinstallation dirstamp support.
422        * network/Makefile.am: Cosmetics.
423        * startup/Makefile.am: Cosmetics.
424        * vectors/Makefile.am: Add preinstallation dirstamp support.
425        * wrapup/Makefile.am: Cosmetics.
426
4272003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
428
429        * clock/Makefile.am: Remove all-local: $(ARCH).
430        * console/Makefile.am: Remove all-local: $(ARCH).
431        * irq/Makefile.am: Remove all-local: $(ARCH).
432        * network/Makefile.am: Remove all-local: $(ARCH).
433        * start/Makefile.am: Remove all-local: $(ARCH).
434        * startup/Makefile.am: Remove all-local: $(ARCH).
435        * vectors/Makefile.am: Remove all-local: $(ARCH).
436        * wrapup/Makefile.am: Remove all-local: $(ARCH).
437
4382003-10-22      Joel Sherrill <joel@OARcorp.com>
439
440        PR 510/bsps
441        * irq/irq.h: Add extern C wrapper.
442
4432003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * Makefile.am: Merge-in include/Makefile.am.
446        Reflect changes to bsp.am.
447        * include/Makefile.am: Remove.
448        * configure.ac: Reflect changes above.
449
4502003-09-04      Joel Sherrill <joel@OARcorp.com>
451
452        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
453        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
454        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
455        vectors/vectors_init.c: URL for license changed.
456
4572003-08-20      Joel Sherrill <joel@OARcorp.com>
458
459        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
460
4612003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
462
463        * Makefile.am: Reflect having moved aclocal/.
464
4652003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * Makefile.am: Reflect having moved automake/.
468        * clock/Makefile.am: Reflect having moved automake/.
469        * console/Makefile.am: Reflect having moved automake/.
470        * include/Makefile.am: Reflect having moved automake/.
471        * irq/Makefile.am: Reflect having moved automake/.
472        * network/Makefile.am: Reflect having moved automake/.
473        * start/Makefile.am: Reflect having moved automake/.
474        * startup/Makefile.am: Reflect having moved automake/.
475        * vectors/Makefile.am: Reflect having moved automake/.
476        * wrapup/Makefile.am: Reflect having moved automake/.
477
4782003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
481
4822003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        PR 445/bsps
485        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
486        Remove cpp, old_cpp (now unused).
487
4882003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
489
490        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
491        Use memcmp instead of bcmp.
492
4932003-07-18      Till Straumann <strauman@slac.stanford.edu>
494
495        PR 288/rtems
496        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
497
4982003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
499
500        * configure.ac: Remove AC_CONFIG_AUX_DIR.
501
5022003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
505
5062003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * configure.ac: AC_PREREQ(2.57).
509
5102003-01-20      Joel Sherrill <joel@OARcorp.com>
511
512        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
513
5142002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
515
516        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
517        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
518        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
519        Remove SORDID_HACK. Eliminate *_O_FILES.
520        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
521        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
522        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
523        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
524
5252002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * start/Makefile.am: Use install-data-local to install startfile.
528
5292002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
532
5332002-11-04      Joel Sherrill <joel@OARcorp.com>
534
535        * irq/irq.c: Removed warnings.
536
5372002-11-04      Joel Sherrill <joel@OARcorp.com>
538
539        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
540        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
541        Removed warnings.
542
5432002-11-01      Joel Sherrill <joel@OARcorp.com>
544
545        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
546        removed warnings.
547
5482002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
549
550        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
551        for _ISR_Nest_level.
552
5532002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
554
555        * .cvsignore: Reformat.
556        Add autom4te*cache.
557        Remove autom4te.cache.
558
5592002-08-21      Joel Sherrill <joel@OARcorp.com>
560
561        * bsp_specs: Added support for -nostdlibs.
562
5632002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
564
565        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
566        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
567        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
568        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
569        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
570        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
571        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
572        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
573
5742002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
575
576        * start/Makefile.am: Eliminate PGM.
577        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
578
5792002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
580
581        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
582
5832002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
586        Remove $(OBJS) from all-local.
587
5882002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
589
590        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
591
5922001-05-09      Joel Sherrill <joel@OARcorp.com>
593
594        * startup/linkcmds: In support of gcc 3.1, added one of more
595        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
596        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
597        and direction of segments to memory regions may also have been
598        addressed.  This was a sweep across all BSPs.
599 
6002002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
603        * irq/irq_asm.S: Ditto.
604        * network/network.c: Include <rtems/bspIo.h>.
605        * start/start.S: Include <asm.h> instead of "asm.h".
606        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
607
6082002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
609
610        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
611
6122002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
613
614        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
615
6162002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
617
618        * configure.ac:
619        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
620        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
621        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
622        * Makefile.am: Remove AUTOMAKE_OPTIONS.
623        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
624        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
625        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
626        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
627        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
628        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
629        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
630        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
631
6322002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
633
634        * configure.ac: Add RTEMS_CHECK_NETWORKING.
635
6362002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
637
638        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
639        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
640        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
641
6422001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
645
6462001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
649        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
650
6512001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
652
653        * Makefile.am: Add @exceptions@ to SUBDIRS.
654        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
655        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
656        * include/Makefile.am: Convert PREINSTALL_FILES to
657        TMPINSTALL_FILES, include force-preinstall.am.
658        * wrapup/Makefile.am: Apply @exceptions@.
659
6602001-10-29      Joel Sherrill <joel@OARcorp.com>
661
662        * .cvsignore: Add more entries.
663
6642001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
665
666        * aclocal.m4: Removed.  Should not have been in CVS.
667
6682001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
669
670        * aclocal.m4: Regenerated.
671        * configure.ac, include/Makefile.am, irq/Makefile.am,
672        vectors/Makefile.am: Updated to autoconf 2.52.
673        * include/.cvsignore: Added newly generated files.
674        * include/bsp.h: Added include of bspopts.h.
675
6762001-10-22      Joel Sherrill <joel@OARcorp.com>
677
678        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
679        include/.cvsignore, network/.cvsignore, start/.cvsignore,
680        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
681        files and other files missed in previous commit.
682
68301-10-22        Andy Dachs <a.dachs@sstl.co.uk>
684
685        * mpc8260ads added as new BSP.  tm27 reported not to run
686        at this time.
687        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
688        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
689        console/Makefile.am, console/console.c, include/Makefile.am,
690        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
691        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
692        network/Makefile.am, network/README, network/if_hdlcsubr.c,
693        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
694        start/start.S, startup/Makefile.am, startup/bspstart.c,
695        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
696        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
697        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
698        New files.
699
Note: See TracBrowser for help on using the repository browser.