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

4.104.115
Last change on this file since 76428fd was 77db4a3, checked in by Joel Sherrill <joel.sherrill@…>, on 09/30/08 at 15:47:34

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

  • include/tm27.h: Now links all tests.
  • Property mode set to 100644
File size: 24.0 KB
Line 
12008-09-30      Joel Sherrill <joel.sherrill@oarcorp.com>
2
3        * include/tm27.h: Now links all tests.
4
52008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * Makefile.am: Eliminate bsp.am. Build startup files as side-effect
8        of building libbspstart.a, using automake-rules.
9
102008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
11
12        * Makefile.am: Eliminate *_SOURCES.
13
142008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
17        components.
18
192008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
20
21        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
22
232008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
24
25        * configure.ac: Make letting boot_card() handle work area allocation
26        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
27        BSP_BOOTCARD_OPTIONS.
28
292008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
30
31        * include/bsp.h: Remove unnecessary boilerplate comments.
32
332008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
34
35        * include/bsp.h: Eliminate definitions of BSP_LIBIO_MAX_FDS since this
36        is NOT used anywhere.
37
382008-09-16      Joel Sherrill <joel.sherrill@oarcorp.com>
39
40        * Makefile.am, startup/linkcmds: Use top level shared
41        bsp_get_work_area() implementation.
42        * startup/bspgetworkarea.c: Removed.
43
442008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
45
46        * Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add
47        use of bsp_get_work_area() in its own file and rely on BSP Framework
48        to perform more initialization.
49        * startup/bspgetworkarea.c: New file.
50
512008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
52
53        * include/bsp.h: Review of all bsp_cleanup() implementations. In this
54        phase, all prototypes were removed from bsp.h and empty
55        implementations were removed and made to use the shared stub.
56
572008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
58
59        * irq/irq.c, startup/bspstart.c: Convert to bool.
60
612008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
62
63        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
64        Add missing prototypes.
65
662008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
67
68        * start/start.S: Clear environment pointer for bootcard.
69
702008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
71
72        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
73        Framework to ask the BSP where it has memory for the RTEMS Workspace
74        and C Program Heap. These collectively are referred to as work area.
75        If the BSP supports this, then it does not have to include code to
76        split the available memory between the two areas. This reduces the
77        amount of code in the BSP specific bspstart.c file. Additionally, the
78        shared framework can initialize the C Library, call
79        rtems_debug_enable(), and dirty the work area memory. Until most/all
80        BSPs support this new capability, if the BSP supports this, it should
81        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
82        When the transition is complete, this autoconf macro can be removed.
83
842008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
85
86        * irq/irq.c:
87        make sure, that the masking operations in
88        ICTL and MSR are executed in order
89
902008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
91
92        * Makefile.am: Rework to avoid .rel files.
93
942008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
95
96        * startup/bspstart.c: Refactored and renamed initialization routines to
97        rtems_initialize_data_structures, rtems_initialize_before_drivers,
98        rtems_initialize_device_drivers, and
99        rtems_initialize_start_multitasking. This opened the sequence up so
100        that bootcard() could provide a more robust and flexible framework
101        which is easier to explain and understand. This also lays the
102        groundwork for sharing the division of available memory between the
103        RTEMS workspace and heap and the C library initialization across all
104        BSPs.
105
1062008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
107
108        * startup/bspstart.c: Remove all references to
109        console_reserve_resources and termios_reserve_resources.
110
1112008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
112
113        * startup/linkcmds: Add wildcard to gcc_except_table section so
114        programs compiled with gcc 4.3.x can link.
115
1162007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
117
118        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
119        Configuration Table. Use the RTEMS provided accessor macros to obtain
120        configuration fields.
121
1222007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
123
124        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
125        Configuration Table. Eliminate CPU Table from all ports. Delete
126        references to CPU Table in all forms.
127
1282007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
129
130        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
131        Table fields to the Configuration Table. This included
132        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
133        do_zero_of_workspace, extra_mpci_receive_server_stack,
134        stack_allocate_hook, and stack_free_hook. As a side-effect of this
135        effort some multiprocessing code was made conditional and some style
136        clean up occurred.
137
1382007-11-30      Till Straumann <strauman@slac.stanford.edu>
139
140        * irq/irq.h, irq/irq_init.c: Removed the definition
141        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
142        initialize the irqBase member of the rtems_irq_global_settings
143        struct. However, irqBase is an rtems_irq_symbolic_name,
144        so using BSP_LOWEST_OFFSET is more appropriate.
145
1462007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
147
148        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
149        Table. They have been replaced with variables named bsp_XXX as
150        needed.
151
1522007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
153
154        PR 1257/bsps
155        * irq/irq.c: Code outside of cpukit should use the public API for
156        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
157        public API and directly accessing _CPU_ISR_Disable and
158        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
159        directive which could lead to problems. This patch also changes the
160        type of the variable passed into these routines and addresses minor
161        style issues.
162
1632007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
164
165        * vectors/vectors_init.c, irq/irq_init.c:
166        adapted to shared exception code
167
1682007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
169
170        * Makefile.am: adapted to shared exception code
171
1722007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
173
174        * bsp_specs: Remove qrtems_debug.
175
1762007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
177
178        * bsp_specs: Remove lib (Now expected to exist in GCC).
179
1802006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
181
182        * network/if_hdlcsubr.h: Remove K'n'R macros.
183        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
184
1852006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
186
187        * configure.ac: New BUG-REPORT address.
188
1892006-11-15      Joel Sherrill <joel@OARcorp.com>
190
191        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
192        file and simplified initialization.
193
1942006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
195
196        * Makefile.am: Remove superfluous -DASM.
197
1982006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
199
200        * configure.ac: Require autoconf-2.60. Require automake-1.10.
201
2022006-08-09      Joel Sherrill <joel@OARcorp.com>
203
204        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
205
2062006-03-08      Joel Sherrill <joel@OARcorp.com>
207
208        * startup/linkcmds: Add .gnu.linkonce.b.* section.
209
2102006-02-08      Joel Sherrill <joel@OARcorp.com>
211
212        * startup/linkcmds: Add sections required by newer gcc versions.
213
2142006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
215
216        * configure.ac: Remove explicit ampolish3 support (now in
217        RTEMS_BSP_CONFIGURE).
218
2192006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
220
221        * configure.ac: Add ampolish3 support.
222        * Makefile.am: Add preinstall.am.
223
2242006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
225
226        * Makefile.am: Don't include subdirs.am.
227
2282005-10-06      Till Straumann <strauman@slac.stanford.edu>
229
230        PR 833/bsps
231        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
232        the FPU across the user ISR but DONT save/restore the FPU context.
233        Any use of the FPU fron the user handler (e.g., due to GCC
234        optimizations) result in corruption. The fix results in an exception
235        in such cases (user ISR must explicitely save/enable/restore FPU).
236
2372005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
238
239        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
240        instead of <sys/errno.h>.
241
2422005-05-26      Joel Sherrill <joel@OARcorp.com>
243
244        PR 799/bsps
245        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
246        compiled.
247
2482005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
249
250        * include/bsp.h: New header guard.
251
2522005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
253
254        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
255
2562005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
257
258        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
259
2602005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
261
262        PR 779/bsp
263        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
264        network/network.c: add parameter to new exception interrupt handlers
265        in powerpc bsps
266
2672005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
268
269        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
270        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
271        CPU_MINIMUM_STACK_FRAME_SIZE.
272
2732005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
274
275        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
276
2772005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
278
279        * Makefile.am: Merge-in wrapup/Makefile.am.
280        * wrapup/Makefile.am: Remove.
281        * configure.ac: Reflect changes above.
282
2832005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
284
285        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
286
2872005-01-04      Joel Sherrill <joel@OARcorp.com>
288
289        * startup/linkcmds: Remove warnings.
290
2912005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
292
293        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
294
2952004-09-27      Joel Sherrill <joel@OARcorp.com>
296
297        PR 680/bsps
298        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
299
3002004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
301
302        * configure.ac: Require automake > 1.9.
303
3042004-07-25      Joel Sherrill <joel@OARcorp.com>
305
306        * network/network.c: Add include of <sys/errno.h>.
307
3082004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
309
310        PR 610/bsps
311        * Makefile.am: Add include/tm27.h, Cosmetics.
312        * include/tm27.h: Final cosmetics.
313
3142004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
315
316        * include/bsp.h: Split out tmtest27 support.
317        * include/tm27.h: New.
318
3192004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
320
321        PR 613/bsps
322        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
323
3242004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
325
326        PR 614/bsps
327        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
328
3292004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
330
331        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
332
3332004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
334
335        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
336        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
337        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
338        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
339
3402004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
341
342        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
343        startup/bspstart.c: Convert to using c99 fixed size types.
344
3452004-03-03      Joel Sherrill <joel@OARcorp.com>
346
347        * irq/irq.h: Correct typo.
348
3492004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * Makefile.am: Reflect changes to bsp.am.
352        Preinstall dist_project_lib*.
353
3542004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
355
356        * Makefile.am: Reflect changes to bsp.am.
357
3582004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
359
360        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
361
3622004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
363
364        * wrapup/Makefile.am: Convert to automake-building rules.
365
3662004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
367
368        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
369        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
370        vectors/Makefile.am. Use automake compilation rules.
371        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
372        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
373        * configure.ac: Reflect changes above.
374        * wrapup/Makefile: Reflect changes above.
375
3762004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * Makefile.am: Merge-in start/Makefile.am.
379        * start/Makefile.am: Remove.
380        * configure.ac: Reflect changes above.
381
3822004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        * wrapup/Makefile.am: Reflect changes to
385        ../support/*exception_processing/*.
386
3872004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
390        Add RTEMS_PROG_CCAS.
391
3922004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
393
394        * Makefile.am: Add PREINSTALL_DIRS.
395        * irq/Makefile.am: Add PREINSTALL_DIRS.
396        * vectors/Makefile.am: Add PREINSTALL_DIRS.
397        * wrapup/Makefile.am: Reflect changes to libcpu.
398
3992004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
400
401        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
402        Add PRE/TMPINSTALL_FILES to CLEANFILES.
403        * irq/Makefile.am: Ditto.
404        * start/Makefile.am: Ditto.
405        * startup/Makefile.am: Ditto.
406        * vectors/Makefile.am: Ditto.
407
4082004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * wrapup/Makefile.am: Eliminate $(LIB).
411        Use noinst_DATA to trigger building libbsp.a.
412
4132003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
414
415        * clock/Makefile.am: Eliminate VPATH.
416        * console/Makefile.am: Eliminate VPATH.
417        * irq/Makefile.am: Eliminate VPATH.
418        * network/Makefile.am: Eliminate VPATH.
419        * startup/Makefile.am: Eliminate VPATH.
420
4212003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        PR 545/bsps
424        * startup/setvec.c: Removed.
425
4262003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
427
428        * startup/linkcmds: Remove SEARCH_DIR.
429
4302003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
431
432        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
433        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
434
4352003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
436
437        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
438        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
439        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
440        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
441
4422003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
445
4462003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
447
448        * start/Makefile.am: Misc cleanups and fixes.
449        * startup/Makefile.am: Misc cleanups and fixes.
450        * startup/linkcmds: Preparations for gcc-3.3.x.
451        * wrapup/Makefile.am: Misc cleanups and fixes.
452
4532003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * startup/Makefile.am: Remove S_FILES (Unused).
456        * vectors/Makefile.am: Cosmetics.
457        * wrapup/Makefile.am: Cosmetics.
458
4592003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
460
461        * Makefile.am: Add preinstallation dirstamp support.
462        * clock/Makefile.am: Cosmetics.
463        * console/Makefile.am: Cosmetics.
464        * irq/Makefile.am: Add preinstallation dirstamp support.
465        * network/Makefile.am: Cosmetics.
466        * startup/Makefile.am: Cosmetics.
467        * vectors/Makefile.am: Add preinstallation dirstamp support.
468        * wrapup/Makefile.am: Cosmetics.
469
4702003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
471
472        * clock/Makefile.am: Remove all-local: $(ARCH).
473        * console/Makefile.am: Remove all-local: $(ARCH).
474        * irq/Makefile.am: Remove all-local: $(ARCH).
475        * network/Makefile.am: Remove all-local: $(ARCH).
476        * start/Makefile.am: Remove all-local: $(ARCH).
477        * startup/Makefile.am: Remove all-local: $(ARCH).
478        * vectors/Makefile.am: Remove all-local: $(ARCH).
479        * wrapup/Makefile.am: Remove all-local: $(ARCH).
480
4812003-10-22      Joel Sherrill <joel@OARcorp.com>
482
483        PR 510/bsps
484        * irq/irq.h: Add extern C wrapper.
485
4862003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
487
488        * Makefile.am: Merge-in include/Makefile.am.
489        Reflect changes to bsp.am.
490        * include/Makefile.am: Remove.
491        * configure.ac: Reflect changes above.
492
4932003-09-04      Joel Sherrill <joel@OARcorp.com>
494
495        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
496        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
497        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
498        vectors/vectors_init.c: URL for license changed.
499
5002003-08-20      Joel Sherrill <joel@OARcorp.com>
501
502        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
503
5042003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
505
506        * Makefile.am: Reflect having moved aclocal/.
507
5082003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
509
510        * Makefile.am: Reflect having moved automake/.
511        * clock/Makefile.am: Reflect having moved automake/.
512        * console/Makefile.am: Reflect having moved automake/.
513        * include/Makefile.am: Reflect having moved automake/.
514        * irq/Makefile.am: Reflect having moved automake/.
515        * network/Makefile.am: Reflect having moved automake/.
516        * start/Makefile.am: Reflect having moved automake/.
517        * startup/Makefile.am: Reflect having moved automake/.
518        * vectors/Makefile.am: Reflect having moved automake/.
519        * wrapup/Makefile.am: Reflect having moved automake/.
520
5212003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
522
523        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
524
5252003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        PR 445/bsps
528        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
529        Remove cpp, old_cpp (now unused).
530
5312003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
532
533        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
534        Use memcmp instead of bcmp.
535
5362003-07-18      Till Straumann <strauman@slac.stanford.edu>
537
538        PR 288/rtems
539        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
540
5412003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * configure.ac: Remove AC_CONFIG_AUX_DIR.
544
5452003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
548
5492003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
550
551        * configure.ac: AC_PREREQ(2.57).
552
5532003-01-20      Joel Sherrill <joel@OARcorp.com>
554
555        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
556
5572002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
560        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
561        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
562        Remove SORDID_HACK. Eliminate *_O_FILES.
563        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
564        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
565        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
566        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
567
5682002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
569
570        * start/Makefile.am: Use install-data-local to install startfile.
571
5722002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
573
574        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
575
5762002-11-04      Joel Sherrill <joel@OARcorp.com>
577
578        * irq/irq.c: Removed warnings.
579
5802002-11-04      Joel Sherrill <joel@OARcorp.com>
581
582        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
583        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
584        Removed warnings.
585
5862002-11-01      Joel Sherrill <joel@OARcorp.com>
587
588        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
589        removed warnings.
590
5912002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
592
593        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
594        for _ISR_Nest_level.
595
5962002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * .cvsignore: Reformat.
599        Add autom4te*cache.
600        Remove autom4te.cache.
601
6022002-08-21      Joel Sherrill <joel@OARcorp.com>
603
604        * bsp_specs: Added support for -nostdlibs.
605
6062002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
607
608        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
609        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
610        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
611        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
612        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
613        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
614        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
615        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
616
6172002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
618
619        * start/Makefile.am: Eliminate PGM.
620        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
621
6222002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
623
624        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
625
6262002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
627
628        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
629        Remove $(OBJS) from all-local.
630
6312002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
632
633        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
634
6352001-05-09      Joel Sherrill <joel@OARcorp.com>
636
637        * startup/linkcmds: In support of gcc 3.1, added one of more
638        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
639        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
640        and direction of segments to memory regions may also have been
641        addressed.  This was a sweep across all BSPs.
642 
6432002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
644
645        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
646        * irq/irq_asm.S: Ditto.
647        * network/network.c: Include <rtems/bspIo.h>.
648        * start/start.S: Include <asm.h> instead of "asm.h".
649        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
650
6512002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
652
653        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
654
6552002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
656
657        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
658
6592002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
660
661        * configure.ac:
662        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
663        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
664        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
665        * Makefile.am: Remove AUTOMAKE_OPTIONS.
666        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
667        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
668        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
669        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
670        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
671        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
672        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
673        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
674
6752002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
676
677        * configure.ac: Add RTEMS_CHECK_NETWORKING.
678
6792002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
680
681        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
682        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
683        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
684
6852001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
686
687        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
688
6892001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
690
691        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
692        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
693
6942001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
695
696        * Makefile.am: Add @exceptions@ to SUBDIRS.
697        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
698        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
699        * include/Makefile.am: Convert PREINSTALL_FILES to
700        TMPINSTALL_FILES, include force-preinstall.am.
701        * wrapup/Makefile.am: Apply @exceptions@.
702
7032001-10-29      Joel Sherrill <joel@OARcorp.com>
704
705        * .cvsignore: Add more entries.
706
7072001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
708
709        * aclocal.m4: Removed.  Should not have been in CVS.
710
7112001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
712
713        * aclocal.m4: Regenerated.
714        * configure.ac, include/Makefile.am, irq/Makefile.am,
715        vectors/Makefile.am: Updated to autoconf 2.52.
716        * include/.cvsignore: Added newly generated files.
717        * include/bsp.h: Added include of bspopts.h.
718
7192001-10-22      Joel Sherrill <joel@OARcorp.com>
720
721        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
722        include/.cvsignore, network/.cvsignore, start/.cvsignore,
723        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
724        files and other files missed in previous commit.
725
72601-10-22        Andy Dachs <a.dachs@sstl.co.uk>
727
728        * mpc8260ads added as new BSP.  tm27 reported not to run
729        at this time.
730        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
731        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
732        console/Makefile.am, console/console.c, include/Makefile.am,
733        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
734        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
735        network/Makefile.am, network/README, network/if_hdlcsubr.c,
736        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
737        start/start.S, startup/Makefile.am, startup/bspstart.c,
738        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
739        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
740        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
741        New files.
742
Note: See TracBrowser for help on using the repository browser.