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

4.104.115
Last change on this file since e94666d was e94666d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/29/08 at 03:43:47

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

  • Makefile.am: Move noinst_LIBRARIES = libbsp.a before its components.
  • Property mode set to 100644
File size: 23.7 KB
Line 
12008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
4        components.
5
62008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
7
8        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
9
102008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * configure.ac: Make letting boot_card() handle work area allocation
13        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
14        BSP_BOOTCARD_OPTIONS.
15
162008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
17
18        * include/bsp.h: Remove unnecessary boilerplate comments.
19
202008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
21
22        * include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this
23        is NOT used anywhere.
24
252008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
26
27        * Makefile.am, startup/linkcmds: Use top level shared
28        bsp_get_work_area() implementation.
29        * startup/bspgetworkarea.c: Removed.
30
312008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
34        use of bsp_get_work_area() in its own file and rely on BSP Framework
35        to perform more initialization.
36        * startup/bspgetworkarea.c: New file.
37
382008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
41        phase, all prototypes were removed from bsp.h and empty
42        implementations were removed and made to use the shared stub.
43
442008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * irq/irq.c, startup/bspstart.c: Convert to bool.
47
482008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
49
50        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
51        Add missing prototypes.
52
532008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
54
55        * start/start.S: Clear environment pointer for bootcard.
56
572008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
60        Framework to ask the BSP where it has memory for the RTEMS Workspace
61        and C Program Heap. These collectively are referred to as work area.
62        If the BSP supports this, then it does not have to include code to
63        split the available memory between the two areas. This reduces the
64        amount of code in the BSP specific bspstart.c file. Additionally, the
65        shared framework can initialize the C Library, call
66        rtems_debug_enable(), and dirty the work area memory. Until most/all
67        BSPs support this new capability, if the BSP supports this, it should
68        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
69        When the transition is complete, this autoconf macro can be removed.
70
712008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
72
73        * irq/irq.c:
74        make sure, that the masking operations in
75        ICTL and MSR are executed in order
76
772008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * Makefile.am: Rework to avoid .rel files.
80
812008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
82
83        * startup/bspstart.c: Refactored and renamed initialization routines to
84        rtems_initialize_data_structures, rtems_initialize_before_drivers,
85        rtems_initialize_device_drivers, and
86        rtems_initialize_start_multitasking. This opened the sequence up so
87        that bootcard() could provide a more robust and flexible framework
88        which is easier to explain and understand. This also lays the
89        groundwork for sharing the division of available memory between the
90        RTEMS workspace and heap and the C library initialization across all
91        BSPs.
92
932008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
94
95        * startup/bspstart.c: Remove all references to
96        console_reserve_resources and termios_reserve_resources.
97
982008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
99
100        * startup/linkcmds: Add wildcard to gcc_except_table section so
101        programs compiled with gcc 4.3.x can link.
102
1032007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
104
105        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
106        Configuration Table. Use the RTEMS provided accessor macros to obtain
107        configuration fields.
108
1092007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
110
111        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
112        Configuration Table. Eliminate CPU Table from all ports. Delete
113        references to CPU Table in all forms.
114
1152007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
118        Table fields to the Configuration Table. This included
119        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
120        do_zero_of_workspace, extra_mpci_receive_server_stack,
121        stack_allocate_hook, and stack_free_hook. As a side-effect of this
122        effort some multiprocessing code was made conditional and some style
123        clean up occurred.
124
1252007-11-30      Till Straumann <strauman@slac.stanford.edu>
126
127        * irq/irq.h, irq/irq_init.c: Removed the definition
128        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
129        initialize the irqBase member of the rtems_irq_global_settings
130        struct. However, irqBase is an rtems_irq_symbolic_name,
131        so using BSP_LOWEST_OFFSET is more appropriate.
132
1332007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
134
135        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
136        Table. They have been replaced with variables named bsp_XXX as
137        needed.
138
1392007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
140
141        PR 1257/bsps
142        * irq/irq.c: Code outside of cpukit should use the public API for
143        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
144        public API and directly accessing _CPU_ISR_Disable and
145        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
146        directive which could lead to problems. This patch also changes the
147        type of the variable passed into these routines and addresses minor
148        style issues.
149
1502007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
151
152        * vectors/vectors_init.c, irq/irq_init.c:
153        adapted to shared exception code
154
1552007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
156
157        * Makefile.am: adapted to shared exception code
158
1592007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * bsp_specs: Remove qrtems_debug.
162
1632007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
164
165        * bsp_specs: Remove lib (Now expected to exist in GCC).
166
1672006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
168
169        * network/if_hdlcsubr.h: Remove K'n'R macros.
170        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
171
1722006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * configure.ac: New BUG-REPORT address.
175
1762006-11-15      Joel Sherrill <joel@OARcorp.com>
177
178        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
179        file and simplified initialization.
180
1812006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
182
183        * Makefile.am: Remove superfluous -DASM.
184
1852006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
186
187        * configure.ac: Require autoconf-2.60. Require automake-1.10.
188
1892006-08-09      Joel Sherrill <joel@OARcorp.com>
190
191        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
192
1932006-03-08      Joel Sherrill <joel@OARcorp.com>
194
195        * startup/linkcmds: Add .gnu.linkonce.b.* section.
196
1972006-02-08      Joel Sherrill <joel@OARcorp.com>
198
199        * startup/linkcmds: Add sections required by newer gcc versions.
200
2012006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
202
203        * configure.ac: Remove explicit ampolish3 support (now in
204        RTEMS_BSP_CONFIGURE).
205
2062006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
207
208        * configure.ac: Add ampolish3 support.
209        * Makefile.am: Add preinstall.am.
210
2112006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
212
213        * Makefile.am: Don't include subdirs.am.
214
2152005-10-06      Till Straumann <strauman@slac.stanford.edu>
216
217        PR 833/bsps
218        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
219        the FPU across the user ISR but DONT save/restore the FPU context.
220        Any use of the FPU fron the user handler (e.g., due to GCC
221        optimizations) result in corruption. The fix results in an exception
222        in such cases (user ISR must explicitely save/enable/restore FPU).
223
2242005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
225
226        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
227        instead of <sys/errno.h>.
228
2292005-05-26      Joel Sherrill <joel@OARcorp.com>
230
231        PR 799/bsps
232        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
233        compiled.
234
2352005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
236
237        * include/bsp.h: New header guard.
238
2392005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
240
241        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
242
2432005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
244
245        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
246
2472005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
248
249        PR 779/bsp
250        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
251        network/network.c: add parameter to new exception interrupt handlers
252        in powerpc bsps
253
2542005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
255
256        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
257        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
258        CPU_MINIMUM_STACK_FRAME_SIZE.
259
2602005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
261
262        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
263
2642005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
265
266        * Makefile.am: Merge-in wrapup/Makefile.am.
267        * wrapup/Makefile.am: Remove.
268        * configure.ac: Reflect changes above.
269
2702005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
271
272        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
273
2742005-01-04      Joel Sherrill <joel@OARcorp.com>
275
276        * startup/linkcmds: Remove warnings.
277
2782005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
279
280        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
281
2822004-09-27      Joel Sherrill <joel@OARcorp.com>
283
284        PR 680/bsps
285        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
286
2872004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
288
289        * configure.ac: Require automake > 1.9.
290
2912004-07-25      Joel Sherrill <joel@OARcorp.com>
292
293        * network/network.c: Add include of <sys/errno.h>.
294
2952004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
296
297        PR 610/bsps
298        * Makefile.am: Add include/tm27.h, Cosmetics.
299        * include/tm27.h: Final cosmetics.
300
3012004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
302
303        * include/bsp.h: Split out tmtest27 support.
304        * include/tm27.h: New.
305
3062004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
307
308        PR 613/bsps
309        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
310
3112004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
312
313        PR 614/bsps
314        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
315
3162004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
317
318        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
319
3202004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
321
322        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
323        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
324        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
325        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
326
3272004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
328
329        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
330        startup/bspstart.c: Convert to using c99 fixed size types.
331
3322004-03-03      Joel Sherrill <joel@OARcorp.com>
333
334        * irq/irq.h: Correct typo.
335
3362004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
337
338        * Makefile.am: Reflect changes to bsp.am.
339        Preinstall dist_project_lib*.
340
3412004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
342
343        * Makefile.am: Reflect changes to bsp.am.
344
3452004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
348
3492004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * wrapup/Makefile.am: Convert to automake-building rules.
352
3532004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
356        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
357        vectors/Makefile.am. Use automake compilation rules.
358        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
359        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
360        * configure.ac: Reflect changes above.
361        * wrapup/Makefile: Reflect changes above.
362
3632004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * Makefile.am: Merge-in start/Makefile.am.
366        * start/Makefile.am: Remove.
367        * configure.ac: Reflect changes above.
368
3692004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * wrapup/Makefile.am: Reflect changes to
372        ../support/*exception_processing/*.
373
3742004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
377        Add RTEMS_PROG_CCAS.
378
3792004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * Makefile.am: Add PREINSTALL_DIRS.
382        * irq/Makefile.am: Add PREINSTALL_DIRS.
383        * vectors/Makefile.am: Add PREINSTALL_DIRS.
384        * wrapup/Makefile.am: Reflect changes to libcpu.
385
3862004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
387
388        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
389        Add PRE/TMPINSTALL_FILES to CLEANFILES.
390        * irq/Makefile.am: Ditto.
391        * start/Makefile.am: Ditto.
392        * startup/Makefile.am: Ditto.
393        * vectors/Makefile.am: Ditto.
394
3952004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
396
397        * wrapup/Makefile.am: Eliminate $(LIB).
398        Use noinst_DATA to trigger building libbsp.a.
399
4002003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * clock/Makefile.am: Eliminate VPATH.
403        * console/Makefile.am: Eliminate VPATH.
404        * irq/Makefile.am: Eliminate VPATH.
405        * network/Makefile.am: Eliminate VPATH.
406        * startup/Makefile.am: Eliminate VPATH.
407
4082003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        PR 545/bsps
411        * startup/setvec.c: Removed.
412
4132003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * startup/linkcmds: Remove SEARCH_DIR.
416
4172003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
420        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
421
4222003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
423
424        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
425        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
426        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
427        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
428
4292003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
430
431        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
432
4332003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * start/Makefile.am: Misc cleanups and fixes.
436        * startup/Makefile.am: Misc cleanups and fixes.
437        * startup/linkcmds: Preparations for gcc-3.3.x.
438        * wrapup/Makefile.am: Misc cleanups and fixes.
439
4402003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
441
442        * startup/Makefile.am: Remove S_FILES (Unused).
443        * vectors/Makefile.am: Cosmetics.
444        * wrapup/Makefile.am: Cosmetics.
445
4462003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * Makefile.am: Add preinstallation dirstamp support.
449        * clock/Makefile.am: Cosmetics.
450        * console/Makefile.am: Cosmetics.
451        * irq/Makefile.am: Add preinstallation dirstamp support.
452        * network/Makefile.am: Cosmetics.
453        * startup/Makefile.am: Cosmetics.
454        * vectors/Makefile.am: Add preinstallation dirstamp support.
455        * wrapup/Makefile.am: Cosmetics.
456
4572003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
458
459        * clock/Makefile.am: Remove all-local: $(ARCH).
460        * console/Makefile.am: Remove all-local: $(ARCH).
461        * irq/Makefile.am: Remove all-local: $(ARCH).
462        * network/Makefile.am: Remove all-local: $(ARCH).
463        * start/Makefile.am: Remove all-local: $(ARCH).
464        * startup/Makefile.am: Remove all-local: $(ARCH).
465        * vectors/Makefile.am: Remove all-local: $(ARCH).
466        * wrapup/Makefile.am: Remove all-local: $(ARCH).
467
4682003-10-22      Joel Sherrill <joel@OARcorp.com>
469
470        PR 510/bsps
471        * irq/irq.h: Add extern C wrapper.
472
4732003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
474
475        * Makefile.am: Merge-in include/Makefile.am.
476        Reflect changes to bsp.am.
477        * include/Makefile.am: Remove.
478        * configure.ac: Reflect changes above.
479
4802003-09-04      Joel Sherrill <joel@OARcorp.com>
481
482        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
483        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
484        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
485        vectors/vectors_init.c: URL for license changed.
486
4872003-08-20      Joel Sherrill <joel@OARcorp.com>
488
489        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
490
4912003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
492
493        * Makefile.am: Reflect having moved aclocal/.
494
4952003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * Makefile.am: Reflect having moved automake/.
498        * clock/Makefile.am: Reflect having moved automake/.
499        * console/Makefile.am: Reflect having moved automake/.
500        * include/Makefile.am: Reflect having moved automake/.
501        * irq/Makefile.am: Reflect having moved automake/.
502        * network/Makefile.am: Reflect having moved automake/.
503        * start/Makefile.am: Reflect having moved automake/.
504        * startup/Makefile.am: Reflect having moved automake/.
505        * vectors/Makefile.am: Reflect having moved automake/.
506        * wrapup/Makefile.am: Reflect having moved automake/.
507
5082003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
511
5122003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
513
514        PR 445/bsps
515        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
516        Remove cpp, old_cpp (now unused).
517
5182003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
521        Use memcmp instead of bcmp.
522
5232003-07-18      Till Straumann <strauman@slac.stanford.edu>
524
525        PR 288/rtems
526        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
527
5282003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
529
530        * configure.ac: Remove AC_CONFIG_AUX_DIR.
531
5322003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
533
534        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
535
5362003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * configure.ac: AC_PREREQ(2.57).
539
5402003-01-20      Joel Sherrill <joel@OARcorp.com>
541
542        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
543
5442002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
545
546        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
547        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
548        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
549        Remove SORDID_HACK. Eliminate *_O_FILES.
550        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
551        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
552        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
553        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
554
5552002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
556
557        * start/Makefile.am: Use install-data-local to install startfile.
558
5592002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
560
561        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
562
5632002-11-04      Joel Sherrill <joel@OARcorp.com>
564
565        * irq/irq.c: Removed warnings.
566
5672002-11-04      Joel Sherrill <joel@OARcorp.com>
568
569        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
570        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
571        Removed warnings.
572
5732002-11-01      Joel Sherrill <joel@OARcorp.com>
574
575        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
576        removed warnings.
577
5782002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
579
580        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
581        for _ISR_Nest_level.
582
5832002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * .cvsignore: Reformat.
586        Add autom4te*cache.
587        Remove autom4te.cache.
588
5892002-08-21      Joel Sherrill <joel@OARcorp.com>
590
591        * bsp_specs: Added support for -nostdlibs.
592
5932002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
594
595        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
596        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
597        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
598        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
599        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
600        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
601        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
602        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
603
6042002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
605
606        * start/Makefile.am: Eliminate PGM.
607        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
608
6092002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
610
611        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
612
6132002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
614
615        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
616        Remove $(OBJS) from all-local.
617
6182002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
619
620        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
621
6222001-05-09      Joel Sherrill <joel@OARcorp.com>
623
624        * startup/linkcmds: In support of gcc 3.1, added one of more
625        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
626        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
627        and direction of segments to memory regions may also have been
628        addressed.  This was a sweep across all BSPs.
629 
6302002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
631
632        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
633        * irq/irq_asm.S: Ditto.
634        * network/network.c: Include <rtems/bspIo.h>.
635        * start/start.S: Include <asm.h> instead of "asm.h".
636        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
637
6382002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
639
640        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
641
6422002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
645
6462002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * configure.ac:
649        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
650        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
651        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
652        * Makefile.am: Remove AUTOMAKE_OPTIONS.
653        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
654        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
655        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
656        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
657        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
658        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
659        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
660        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
661
6622002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
663
664        * configure.ac: Add RTEMS_CHECK_NETWORKING.
665
6662002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
667
668        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
669        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
670        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
671
6722001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
673
674        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
675
6762001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
677
678        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
679        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
680
6812001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
682
683        * Makefile.am: Add @exceptions@ to SUBDIRS.
684        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
685        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
686        * include/Makefile.am: Convert PREINSTALL_FILES to
687        TMPINSTALL_FILES, include force-preinstall.am.
688        * wrapup/Makefile.am: Apply @exceptions@.
689
6902001-10-29      Joel Sherrill <joel@OARcorp.com>
691
692        * .cvsignore: Add more entries.
693
6942001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
695
696        * aclocal.m4: Removed.  Should not have been in CVS.
697
6982001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
699
700        * aclocal.m4: Regenerated.
701        * configure.ac, include/Makefile.am, irq/Makefile.am,
702        vectors/Makefile.am: Updated to autoconf 2.52.
703        * include/.cvsignore: Added newly generated files.
704        * include/bsp.h: Added include of bspopts.h.
705
7062001-10-22      Joel Sherrill <joel@OARcorp.com>
707
708        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
709        include/.cvsignore, network/.cvsignore, start/.cvsignore,
710        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
711        files and other files missed in previous commit.
712
71301-10-22        Andy Dachs <a.dachs@sstl.co.uk>
714
715        * mpc8260ads added as new BSP.  tm27 reported not to run
716        at this time.
717        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
718        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
719        console/Makefile.am, console/console.c, include/Makefile.am,
720        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
721        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
722        network/Makefile.am, network/README, network/if_hdlcsubr.c,
723        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
724        start/start.S, startup/Makefile.am, startup/bspstart.c,
725        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
726        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
727        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
728        New files.
729
Note: See TracBrowser for help on using the repository browser.