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

4.104.115
Last change on this file since 1ba9d1bb was 1ba9d1bb, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/09 at 14:18:28

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

PR 1385/cpukit

  • irq/irq_asm.S: When the type rtems_boolean was switched to the C99 bool, the size changed from 4 bytes to 1 byte. The interrupt dispatching code accesses two boolean variables for scheduling purposes and the assembly implementations of this code did not get updated.
  • Property mode set to 100644
File size: 24.9 KB
Line 
12009-03-12      Joel Sherrill <joel.sherrill@OARcorp.com>
2
3        PR 1385/cpukit
4        * irq/irq_asm.S: When the type rtems_boolean was switched to the C99
5        bool, the size changed from 4 bytes to 1 byte. The interrupt
6        dispatching code accesses two boolean variables for scheduling
7        purposes and the assembly implementations of this code did not get
8        updated.
9
102009-02-12      Joel Sherrill <joel.sherrill@oarcorp.com>
11
12        * startup/bspstart.c: Change prototype of IDLE thread to consistently
13        return void * and take a uintptr_t argument.
14
152008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
16
17        * bsp_specs: Move -e start from *link to *startfile to avoid warning
18        for undefined entry symbol when linking relocatables with binutils
19        2.19.
20
212008-10-02      Joel Sherrill <joel.sherrill@OARcorp.com>
22
23        * Makefile.am, preinstall.am: Use shared stub coverhd.h
24        * include/coverhd.h: Removed.
25
262008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
27
28        * include/tm27.h: Now links all tests.
29
302008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
31
32        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
33        of building libbspstart.a, using automake-rules.
34
352008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
36
37        * Makefile.am: Eliminate *_SOURCES.
38
392008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
40
41        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
42        components.
43
442008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
45
46        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
47
482008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
49
50        * configure.ac: Make letting boot_card() handle work area allocation
51        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
52        BSP_BOOTCARD_OPTIONS.
53
542008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
55
56        * include/bsp.h: Remove unnecessary boilerplate comments.
57
582008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
59
60        * include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this
61        is NOT used anywhere.
62
632008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
64
65        * Makefile.am, startup/linkcmds: Use top level shared
66        bsp_get_work_area() implementation.
67        * startup/bspgetworkarea.c: Removed.
68
692008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
70
71        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
72        use of bsp_get_work_area() in its own file and rely on BSP Framework
73        to perform more initialization.
74        * startup/bspgetworkarea.c: New file.
75
762008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
77
78        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
79        phase, all prototypes were removed from bsp.h and empty
80        implementations were removed and made to use the shared stub.
81
822008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
83
84        * irq/irq.c, startup/bspstart.c: Convert to bool.
85
862008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
87
88        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
89        Add missing prototypes.
90
912008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
92
93        * start/start.S: Clear environment pointer for bootcard.
94
952008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
96
97        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
98        Framework to ask the BSP where it has memory for the RTEMS Workspace
99        and C Program Heap. These collectively are referred to as work area.
100        If the BSP supports this, then it does not have to include code to
101        split the available memory between the two areas. This reduces the
102        amount of code in the BSP specific bspstart.c file. Additionally, the
103        shared framework can initialize the C Library, call
104        rtems_debug_enable(), and dirty the work area memory. Until most/all
105        BSPs support this new capability, if the BSP supports this, it should
106        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
107        When the transition is complete, this autoconf macro can be removed.
108
1092008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
110
111        * irq/irq.c:
112        make sure, that the masking operations in
113        ICTL and MSR are executed in order
114
1152008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
116
117        * Makefile.am: Rework to avoid .rel files.
118
1192008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
120
121        * startup/bspstart.c: Refactored and renamed initialization routines to
122        rtems_initialize_data_structures, rtems_initialize_before_drivers,
123        rtems_initialize_device_drivers, and
124        rtems_initialize_start_multitasking. This opened the sequence up so
125        that bootcard() could provide a more robust and flexible framework
126        which is easier to explain and understand. This also lays the
127        groundwork for sharing the division of available memory between the
128        RTEMS workspace and heap and the C library initialization across all
129        BSPs.
130
1312008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
132
133        * startup/bspstart.c: Remove all references to
134        console_reserve_resources and termios_reserve_resources.
135
1362008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
137
138        * startup/linkcmds: Add wildcard to gcc_except_table section so
139        programs compiled with gcc 4.3.x can link.
140
1412007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
142
143        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
144        Configuration Table. Use the RTEMS provided accessor macros to obtain
145        configuration fields.
146
1472007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
148
149        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
150        Configuration Table. Eliminate CPU Table from all ports. Delete
151        references to CPU Table in all forms.
152
1532007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
154
155        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
156        Table fields to the Configuration Table. This included
157        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
158        do_zero_of_workspace, extra_mpci_receive_server_stack,
159        stack_allocate_hook, and stack_free_hook. As a side-effect of this
160        effort some multiprocessing code was made conditional and some style
161        clean up occurred.
162
1632007-11-30      Till Straumann <strauman@slac.stanford.edu>
164
165        * irq/irq.h, irq/irq_init.c: Removed the definition
166        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
167        initialize the irqBase member of the rtems_irq_global_settings
168        struct. However, irqBase is an rtems_irq_symbolic_name,
169        so using BSP_LOWEST_OFFSET is more appropriate.
170
1712007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
172
173        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
174        Table. They have been replaced with variables named bsp_XXX as
175        needed.
176
1772007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
178
179        PR 1257/bsps
180        * irq/irq.c: Code outside of cpukit should use the public API for
181        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
182        public API and directly accessing _CPU_ISR_Disable and
183        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
184        directive which could lead to problems. This patch also changes the
185        type of the variable passed into these routines and addresses minor
186        style issues.
187
1882007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
189
190        * vectors/vectors_init.c, irq/irq_init.c:
191        adapted to shared exception code
192
1932007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
194
195        * Makefile.am: adapted to shared exception code
196
1972007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
198
199        * bsp_specs: Remove qrtems_debug.
200
2012007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
202
203        * bsp_specs: Remove lib (Now expected to exist in GCC).
204
2052006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
206
207        * network/if_hdlcsubr.h: Remove K'n'R macros.
208        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
209
2102006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
211
212        * configure.ac: New BUG-REPORT address.
213
2142006-11-15      Joel Sherrill <joel@OARcorp.com>
215
216        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
217        file and simplified initialization.
218
2192006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
220
221        * Makefile.am: Remove superfluous -DASM.
222
2232006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
224
225        * configure.ac: Require autoconf-2.60. Require automake-1.10.
226
2272006-08-09      Joel Sherrill <joel@OARcorp.com>
228
229        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
230
2312006-03-08      Joel Sherrill <joel@OARcorp.com>
232
233        * startup/linkcmds: Add .gnu.linkonce.b.* section.
234
2352006-02-08      Joel Sherrill <joel@OARcorp.com>
236
237        * startup/linkcmds: Add sections required by newer gcc versions.
238
2392006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
240
241        * configure.ac: Remove explicit ampolish3 support (now in
242        RTEMS_BSP_CONFIGURE).
243
2442006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
245
246        * configure.ac: Add ampolish3 support.
247        * Makefile.am: Add preinstall.am.
248
2492006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
250
251        * Makefile.am: Don't include subdirs.am.
252
2532005-10-06      Till Straumann <strauman@slac.stanford.edu>
254
255        PR 833/bsps
256        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
257        the FPU across the user ISR but DONT save/restore the FPU context.
258        Any use of the FPU fron the user handler (e.g., due to GCC
259        optimizations) result in corruption. The fix results in an exception
260        in such cases (user ISR must explicitely save/enable/restore FPU).
261
2622005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
263
264        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
265        instead of <sys/errno.h>.
266
2672005-05-26      Joel Sherrill <joel@OARcorp.com>
268
269        PR 799/bsps
270        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
271        compiled.
272
2732005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
274
275        * include/bsp.h: New header guard.
276
2772005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
278
279        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
280
2812005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
282
283        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
284
2852005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
286
287        PR 779/bsp
288        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
289        network/network.c: add parameter to new exception interrupt handlers
290        in powerpc bsps
291
2922005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
293
294        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
295        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
296        CPU_MINIMUM_STACK_FRAME_SIZE.
297
2982005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
299
300        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
301
3022005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
303
304        * Makefile.am: Merge-in wrapup/Makefile.am.
305        * wrapup/Makefile.am: Remove.
306        * configure.ac: Reflect changes above.
307
3082005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
309
310        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
311
3122005-01-04      Joel Sherrill <joel@OARcorp.com>
313
314        * startup/linkcmds: Remove warnings.
315
3162005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
317
318        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
319
3202004-09-27      Joel Sherrill <joel@OARcorp.com>
321
322        PR 680/bsps
323        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
324
3252004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
326
327        * configure.ac: Require automake > 1.9.
328
3292004-07-25      Joel Sherrill <joel@OARcorp.com>
330
331        * network/network.c: Add include of <sys/errno.h>.
332
3332004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
334
335        PR 610/bsps
336        * Makefile.am: Add include/tm27.h, Cosmetics.
337        * include/tm27.h: Final cosmetics.
338
3392004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
340
341        * include/bsp.h: Split out tmtest27 support.
342        * include/tm27.h: New.
343
3442004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
345
346        PR 613/bsps
347        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
348
3492004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
350
351        PR 614/bsps
352        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
353
3542004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
355
356        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
357
3582004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
359
360        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
361        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
362        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
363        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
364
3652004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
366
367        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
368        startup/bspstart.c: Convert to using c99 fixed size types.
369
3702004-03-03      Joel Sherrill <joel@OARcorp.com>
371
372        * irq/irq.h: Correct typo.
373
3742004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * Makefile.am: Reflect changes to bsp.am.
377        Preinstall dist_project_lib*.
378
3792004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
380
381        * Makefile.am: Reflect changes to bsp.am.
382
3832004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
384
385        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
386
3872004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * wrapup/Makefile.am: Convert to automake-building rules.
390
3912004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
394        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
395        vectors/Makefile.am. Use automake compilation rules.
396        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
397        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
398        * configure.ac: Reflect changes above.
399        * wrapup/Makefile: Reflect changes above.
400
4012004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
402
403        * Makefile.am: Merge-in start/Makefile.am.
404        * start/Makefile.am: Remove.
405        * configure.ac: Reflect changes above.
406
4072004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * wrapup/Makefile.am: Reflect changes to
410        ../support/*exception_processing/*.
411
4122004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
413
414        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
415        Add RTEMS_PROG_CCAS.
416
4172004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
418
419        * Makefile.am: Add PREINSTALL_DIRS.
420        * irq/Makefile.am: Add PREINSTALL_DIRS.
421        * vectors/Makefile.am: Add PREINSTALL_DIRS.
422        * wrapup/Makefile.am: Reflect changes to libcpu.
423
4242004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
427        Add PRE/TMPINSTALL_FILES to CLEANFILES.
428        * irq/Makefile.am: Ditto.
429        * start/Makefile.am: Ditto.
430        * startup/Makefile.am: Ditto.
431        * vectors/Makefile.am: Ditto.
432
4332004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
434
435        * wrapup/Makefile.am: Eliminate $(LIB).
436        Use noinst_DATA to trigger building libbsp.a.
437
4382003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * clock/Makefile.am: Eliminate VPATH.
441        * console/Makefile.am: Eliminate VPATH.
442        * irq/Makefile.am: Eliminate VPATH.
443        * network/Makefile.am: Eliminate VPATH.
444        * startup/Makefile.am: Eliminate VPATH.
445
4462003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        PR 545/bsps
449        * startup/setvec.c: Removed.
450
4512003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
452
453        * startup/linkcmds: Remove SEARCH_DIR.
454
4552003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
458        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
459
4602003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
461
462        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
463        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
464        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
465        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
466
4672003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
468
469        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
470
4712003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
472
473        * start/Makefile.am: Misc cleanups and fixes.
474        * startup/Makefile.am: Misc cleanups and fixes.
475        * startup/linkcmds: Preparations for gcc-3.3.x.
476        * wrapup/Makefile.am: Misc cleanups and fixes.
477
4782003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
479
480        * startup/Makefile.am: Remove S_FILES (Unused).
481        * vectors/Makefile.am: Cosmetics.
482        * wrapup/Makefile.am: Cosmetics.
483
4842003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
485
486        * Makefile.am: Add preinstallation dirstamp support.
487        * clock/Makefile.am: Cosmetics.
488        * console/Makefile.am: Cosmetics.
489        * irq/Makefile.am: Add preinstallation dirstamp support.
490        * network/Makefile.am: Cosmetics.
491        * startup/Makefile.am: Cosmetics.
492        * vectors/Makefile.am: Add preinstallation dirstamp support.
493        * wrapup/Makefile.am: Cosmetics.
494
4952003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
496
497        * clock/Makefile.am: Remove all-local: $(ARCH).
498        * console/Makefile.am: Remove all-local: $(ARCH).
499        * irq/Makefile.am: Remove all-local: $(ARCH).
500        * network/Makefile.am: Remove all-local: $(ARCH).
501        * start/Makefile.am: Remove all-local: $(ARCH).
502        * startup/Makefile.am: Remove all-local: $(ARCH).
503        * vectors/Makefile.am: Remove all-local: $(ARCH).
504        * wrapup/Makefile.am: Remove all-local: $(ARCH).
505
5062003-10-22      Joel Sherrill <joel@OARcorp.com>
507
508        PR 510/bsps
509        * irq/irq.h: Add extern C wrapper.
510
5112003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
512
513        * Makefile.am: Merge-in include/Makefile.am.
514        Reflect changes to bsp.am.
515        * include/Makefile.am: Remove.
516        * configure.ac: Reflect changes above.
517
5182003-09-04      Joel Sherrill <joel@OARcorp.com>
519
520        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
521        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
522        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
523        vectors/vectors_init.c: URL for license changed.
524
5252003-08-20      Joel Sherrill <joel@OARcorp.com>
526
527        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
528
5292003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * Makefile.am: Reflect having moved aclocal/.
532
5332003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * Makefile.am: Reflect having moved automake/.
536        * clock/Makefile.am: Reflect having moved automake/.
537        * console/Makefile.am: Reflect having moved automake/.
538        * include/Makefile.am: Reflect having moved automake/.
539        * irq/Makefile.am: Reflect having moved automake/.
540        * network/Makefile.am: Reflect having moved automake/.
541        * start/Makefile.am: Reflect having moved automake/.
542        * startup/Makefile.am: Reflect having moved automake/.
543        * vectors/Makefile.am: Reflect having moved automake/.
544        * wrapup/Makefile.am: Reflect having moved automake/.
545
5462003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
547
548        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
549
5502003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
551
552        PR 445/bsps
553        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
554        Remove cpp, old_cpp (now unused).
555
5562003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
557
558        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
559        Use memcmp instead of bcmp.
560
5612003-07-18      Till Straumann <strauman@slac.stanford.edu>
562
563        PR 288/rtems
564        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
565
5662003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
567
568        * configure.ac: Remove AC_CONFIG_AUX_DIR.
569
5702003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
571
572        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
573
5742003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
575
576        * configure.ac: AC_PREREQ(2.57).
577
5782003-01-20      Joel Sherrill <joel@OARcorp.com>
579
580        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
581
5822002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
583
584        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
585        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
586        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
587        Remove SORDID_HACK. Eliminate *_O_FILES.
588        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
589        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
590        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
591        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
592
5932002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
594
595        * start/Makefile.am: Use install-data-local to install startfile.
596
5972002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
598
599        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
600
6012002-11-04      Joel Sherrill <joel@OARcorp.com>
602
603        * irq/irq.c: Removed warnings.
604
6052002-11-04      Joel Sherrill <joel@OARcorp.com>
606
607        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
608        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
609        Removed warnings.
610
6112002-11-01      Joel Sherrill <joel@OARcorp.com>
612
613        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
614        removed warnings.
615
6162002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
617
618        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
619        for _ISR_Nest_level.
620
6212002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
622
623        * .cvsignore: Reformat.
624        Add autom4te*cache.
625        Remove autom4te.cache.
626
6272002-08-21      Joel Sherrill <joel@OARcorp.com>
628
629        * bsp_specs: Added support for -nostdlibs.
630
6312002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
632
633        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
634        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
635        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
636        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
637        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
638        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
639        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
640        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
641
6422002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
643
644        * start/Makefile.am: Eliminate PGM.
645        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
646
6472002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
648
649        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
650
6512002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
652
653        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
654        Remove $(OBJS) from all-local.
655
6562002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
657
658        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
659
6602001-05-09      Joel Sherrill <joel@OARcorp.com>
661
662        * startup/linkcmds: In support of gcc 3.1, added one of more
663        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
664        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
665        and direction of segments to memory regions may also have been
666        addressed.  This was a sweep across all BSPs.
667 
6682002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
669
670        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
671        * irq/irq_asm.S: Ditto.
672        * network/network.c: Include <rtems/bspIo.h>.
673        * start/start.S: Include <asm.h> instead of "asm.h".
674        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
675
6762002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
677
678        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
679
6802002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
681
682        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
683
6842002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
685
686        * configure.ac:
687        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
688        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
689        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
690        * Makefile.am: Remove AUTOMAKE_OPTIONS.
691        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
692        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
693        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
694        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
695        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
696        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
697        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
698        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
699
7002002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
701
702        * configure.ac: Add RTEMS_CHECK_NETWORKING.
703
7042002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
705
706        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
707        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
708        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
709
7102001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
711
712        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
713
7142001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
715
716        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
717        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
718
7192001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
720
721        * Makefile.am: Add @exceptions@ to SUBDIRS.
722        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
723        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
724        * include/Makefile.am: Convert PREINSTALL_FILES to
725        TMPINSTALL_FILES, include force-preinstall.am.
726        * wrapup/Makefile.am: Apply @exceptions@.
727
7282001-10-29      Joel Sherrill <joel@OARcorp.com>
729
730        * .cvsignore: Add more entries.
731
7322001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
733
734        * aclocal.m4: Removed.  Should not have been in CVS.
735
7362001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
737
738        * aclocal.m4: Regenerated.
739        * configure.ac, include/Makefile.am, irq/Makefile.am,
740        vectors/Makefile.am: Updated to autoconf 2.52.
741        * include/.cvsignore: Added newly generated files.
742        * include/bsp.h: Added include of bspopts.h.
743
7442001-10-22      Joel Sherrill <joel@OARcorp.com>
745
746        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
747        include/.cvsignore, network/.cvsignore, start/.cvsignore,
748        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
749        files and other files missed in previous commit.
750
75101-10-22        Andy Dachs <a.dachs@sstl.co.uk>
752
753        * mpc8260ads added as new BSP.  tm27 reported not to run
754        at this time.
755        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
756        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
757        console/Makefile.am, console/console.c, include/Makefile.am,
758        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
759        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
760        network/Makefile.am, network/README, network/if_hdlcsubr.c,
761        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
762        start/start.S, startup/Makefile.am, startup/bspstart.c,
763        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
764        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
765        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
766        New files.
767
Note: See TracBrowser for help on using the repository browser.