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

4.9
Last change on this file since 92ce6ac was 92ce6ac, checked in by Joel Sherrill <joel.sherrill@…>, on 03/12/09 at 14:17:29

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: 22.8 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-03-09      Joel Sherrill <joel.sherrill@OARcorp.com>
11
12        * include/tm27.h: Add include rtems/powerpc/powerpc.h
13
142008-12-08      Ralf Corsépius <ralf.corsepius@rtems.org>
15
16        * bsp_specs: Backport from CVS-HEAD.
17
182008-09-06      Ralf Corsépius <ralf.corsepius@rtems.org>
19
20        * irq/irq.c, startup/bspstart.c: Convert to bool.
21
222008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * clock/p_clock.c, irq/irq.c, irq/irq_init.c, vectors/vectors_init.c:
25        Add missing prototypes.
26
272008-08-01      Sebastian Huber <sebastian.huber@embedded-brains.de>
28
29        * start/start.S: Clear environment pointer for bootcard.
30
312008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
32
33        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
34        Framework to ask the BSP where it has memory for the RTEMS Workspace
35        and C Program Heap. These collectively are referred to as work area.
36        If the BSP supports this, then it does not have to include code to
37        split the available memory between the two areas. This reduces the
38        amount of code in the BSP specific bspstart.c file. Additionally, the
39        shared framework can initialize the C Library, call
40        rtems_debug_enable(), and dirty the work area memory. Until most/all
41        BSPs support this new capability, if the BSP supports this, it should
42        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
43        When the transition is complete, this autoconf macro can be removed.
44
452008-05-15      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
46
47        * irq/irq.c:
48        make sure, that the masking operations in
49        ICTL and MSR are executed in order
50
512008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * Makefile.am: Rework to avoid .rel files.
54
552008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
56
57        * startup/bspstart.c: Refactored and renamed initialization routines to
58        rtems_initialize_data_structures, rtems_initialize_before_drivers,
59        rtems_initialize_device_drivers, and
60        rtems_initialize_start_multitasking. This opened the sequence up so
61        that bootcard() could provide a more robust and flexible framework
62        which is easier to explain and understand. This also lays the
63        groundwork for sharing the division of available memory between the
64        RTEMS workspace and heap and the C library initialization across all
65        BSPs.
66
672008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
68
69        * startup/bspstart.c: Remove all references to
70        console_reserve_resources and termios_reserve_resources.
71
722008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
73
74        * startup/linkcmds: Add wildcard to gcc_except_table section so
75        programs compiled with gcc 4.3.x can link.
76
772007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
78
79        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
80        Configuration Table. Use the RTEMS provided accessor macros to obtain
81        configuration fields.
82
832007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
84
85        * startup/bspstart.c: Move interrupt_stack_size field from CPU Table to
86        Configuration Table. Eliminate CPU Table from all ports. Delete
87        references to CPU Table in all forms.
88
892007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
90
91        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
92        Table fields to the Configuration Table. This included
93        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
94        do_zero_of_workspace, extra_mpci_receive_server_stack,
95        stack_allocate_hook, and stack_free_hook. As a side-effect of this
96        effort some multiprocessing code was made conditional and some style
97        clean up occurred.
98
992007-11-30      Till Straumann <strauman@slac.stanford.edu>
100
101        * irq/irq.h, irq/irq_init.c: Removed the definition
102        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
103        initialize the irqBase member of the rtems_irq_global_settings
104        struct. However, irqBase is an rtems_irq_symbolic_name,
105        so using BSP_LOWEST_OFFSET is more appropriate.
106
1072007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
108
109        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
110        Table. They have been replaced with variables named bsp_XXX as
111        needed.
112
1132007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
114
115        PR 1257/bsps
116        * irq/irq.c: Code outside of cpukit should use the public API for
117        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
118        public API and directly accessing _CPU_ISR_Disable and
119        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
120        directive which could lead to problems. This patch also changes the
121        type of the variable passed into these routines and addresses minor
122        style issues.
123
1242007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
125
126        * vectors/vectors_init.c, irq/irq_init.c:
127        adapted to shared exception code
128
1292007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
130
131        * Makefile.am: adapted to shared exception code
132
1332007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
134
135        * bsp_specs: Remove qrtems_debug.
136
1372007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
138
139        * bsp_specs: Remove lib (Now expected to exist in GCC).
140
1412006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
142
143        * network/if_hdlcsubr.h: Remove K'n'R macros.
144        * network/network.c: Use ioctl_command_t as arg to ioctl functions.
145
1462006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
147
148        * configure.ac: New BUG-REPORT address.
149
1502006-11-15      Joel Sherrill <joel@OARcorp.com>
151
152        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
153        file and simplified initialization.
154
1552006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
156
157        * Makefile.am: Remove superfluous -DASM.
158
1592006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
160
161        * configure.ac: Require autoconf-2.60. Require automake-1.10.
162
1632006-08-09      Joel Sherrill <joel@OARcorp.com>
164
165        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
166
1672006-03-08      Joel Sherrill <joel@OARcorp.com>
168
169        * startup/linkcmds: Add .gnu.linkonce.b.* section.
170
1712006-02-08      Joel Sherrill <joel@OARcorp.com>
172
173        * startup/linkcmds: Add sections required by newer gcc versions.
174
1752006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * configure.ac: Remove explicit ampolish3 support (now in
178        RTEMS_BSP_CONFIGURE).
179
1802006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * configure.ac: Add ampolish3 support.
183        * Makefile.am: Add preinstall.am.
184
1852006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
186
187        * Makefile.am: Don't include subdirs.am.
188
1892005-10-06      Till Straumann <strauman@slac.stanford.edu>
190
191        PR 833/bsps
192        * irq/irq_asm.S: Currently, all (new exception) BSPs explicitely enable
193        the FPU across the user ISR but DONT save/restore the FPU context.
194        Any use of the FPU fron the user handler (e.g., due to GCC
195        optimizations) result in corruption. The fix results in an exception
196        in such cases (user ISR must explicitely save/enable/restore FPU).
197
1982005-09-19      Ralf Corsepius <ralf.corsepius@rtems.org>
199
200        * network/if_hdlcsubr.c, network/network.c: Include <errno.h>
201        instead of <sys/errno.h>.
202
2032005-05-26      Joel Sherrill <joel@OARcorp.com>
204
205        PR 799/bsps
206        * include/bsp.h: Add include of bsp/vectors.h so rdbg.h can be
207        compiled.
208
2092005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
210
211        * include/bsp.h: New header guard.
212
2132005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
214
215        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
216
2172005-05-10      Ralf Corsepius <ralf.corsepius@rtems.org>
218
219        * Makefile.am: Add -D__BSD_VISIBLE to network_CPPFLAGS.
220
2212005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
222
223        PR 779/bsp
224        * clock/p_clock.c, irq/irq.c, irq/irq.h, irq/irq_init.c,
225        network/network.c: add parameter to new exception interrupt handlers
226        in powerpc bsps
227
2282005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
229
230        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
231        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
232        CPU_MINIMUM_STACK_FRAME_SIZE.
233
2342005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
235
236        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
237
2382005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
239
240        * Makefile.am: Merge-in wrapup/Makefile.am.
241        * wrapup/Makefile.am: Remove.
242        * configure.ac: Reflect changes above.
243
2442005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
245
246        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
247
2482005-01-04      Joel Sherrill <joel@OARcorp.com>
249
250        * startup/linkcmds: Remove warnings.
251
2522005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
253
254        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
255
2562004-09-27      Joel Sherrill <joel@OARcorp.com>
257
258        PR 680/bsps
259        * network/if_hdlcsubr.c: Add missing #include <rtems/rtems_bsdnet.h>.
260
2612004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
262
263        * configure.ac: Require automake > 1.9.
264
2652004-07-25      Joel Sherrill <joel@OARcorp.com>
266
267        * network/network.c: Add include of <sys/errno.h>.
268
2692004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
270
271        PR 610/bsps
272        * Makefile.am: Add include/tm27.h, Cosmetics.
273        * include/tm27.h: Final cosmetics.
274
2752004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
276
277        * include/bsp.h: Split out tmtest27 support.
278        * include/tm27.h: New.
279
2802004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
281
282        PR 613/bsps
283        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
284
2852004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
286
287        PR 614/bsps
288        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
289
2902004-04-02      Ralf Corsepius <ralf_corsepius@rtems.org>
291
292        * irq/irq_asm.S: Include <rtems/asm.h> instead of <asm.h>.
293
2942004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
295
296        * start/start.S: Include <rtems/asm.h> instead of <asm.h>.
297        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
298        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
299        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
300
3012004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
302
303        * console/console.c, include/bsp.h, irq/irq.c, network/network.c,
304        startup/bspstart.c: Convert to using c99 fixed size types.
305
3062004-03-03      Joel Sherrill <joel@OARcorp.com>
307
308        * irq/irq.h: Correct typo.
309
3102004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
311
312        * Makefile.am: Reflect changes to bsp.am.
313        Preinstall dist_project_lib*.
314
3152004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
316
317        * Makefile.am: Reflect changes to bsp.am.
318
3192004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
320
321        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
322
3232004-02-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
324
325        * wrapup/Makefile.am: Convert to automake-building rules.
326
3272004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
328
329        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
330        irq/Makefile.am, network/Makefile.am, startup/Makefile.am,
331        vectors/Makefile.am. Use automake compilation rules.
332        * clock/Makefile.am, console/Makefile.am, irq/Makefile.am,
333        network/Makefile.am, startup/Makefile.am, vectors/Makefile.am: Remove.
334        * configure.ac: Reflect changes above.
335        * wrapup/Makefile: Reflect changes above.
336
3372004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
338
339        * Makefile.am: Merge-in start/Makefile.am.
340        * start/Makefile.am: Remove.
341        * configure.ac: Reflect changes above.
342
3432004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
344
345        * wrapup/Makefile.am: Reflect changes to
346        ../support/*exception_processing/*.
347
3482004-01-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
349
350        * configure.ac: Add nostdinc to AUTOMAKE_OPTIONS.
351        Add RTEMS_PROG_CCAS.
352
3532004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * Makefile.am: Add PREINSTALL_DIRS.
356        * irq/Makefile.am: Add PREINSTALL_DIRS.
357        * vectors/Makefile.am: Add PREINSTALL_DIRS.
358        * wrapup/Makefile.am: Reflect changes to libcpu.
359
3602004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
361
362        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
363        Add PRE/TMPINSTALL_FILES to CLEANFILES.
364        * irq/Makefile.am: Ditto.
365        * start/Makefile.am: Ditto.
366        * startup/Makefile.am: Ditto.
367        * vectors/Makefile.am: Ditto.
368
3692004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
370
371        * wrapup/Makefile.am: Eliminate $(LIB).
372        Use noinst_DATA to trigger building libbsp.a.
373
3742003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
375
376        * clock/Makefile.am: Eliminate VPATH.
377        * console/Makefile.am: Eliminate VPATH.
378        * irq/Makefile.am: Eliminate VPATH.
379        * network/Makefile.am: Eliminate VPATH.
380        * startup/Makefile.am: Eliminate VPATH.
381
3822003-12-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
383
384        PR 545/bsps
385        * startup/setvec.c: Removed.
386
3872003-12-15      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
388
389        * startup/linkcmds: Remove SEARCH_DIR.
390
3912003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
394        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
395
3962003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
399        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
400        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
401        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
402
4032003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
404
405        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
406
4072003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
408
409        * start/Makefile.am: Misc cleanups and fixes.
410        * startup/Makefile.am: Misc cleanups and fixes.
411        * startup/linkcmds: Preparations for gcc-3.3.x.
412        * wrapup/Makefile.am: Misc cleanups and fixes.
413
4142003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
415
416        * startup/Makefile.am: Remove S_FILES (Unused).
417        * vectors/Makefile.am: Cosmetics.
418        * wrapup/Makefile.am: Cosmetics.
419
4202003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * Makefile.am: Add preinstallation dirstamp support.
423        * clock/Makefile.am: Cosmetics.
424        * console/Makefile.am: Cosmetics.
425        * irq/Makefile.am: Add preinstallation dirstamp support.
426        * network/Makefile.am: Cosmetics.
427        * startup/Makefile.am: Cosmetics.
428        * vectors/Makefile.am: Add preinstallation dirstamp support.
429        * wrapup/Makefile.am: Cosmetics.
430
4312003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
432
433        * clock/Makefile.am: Remove all-local: $(ARCH).
434        * console/Makefile.am: Remove all-local: $(ARCH).
435        * irq/Makefile.am: Remove all-local: $(ARCH).
436        * network/Makefile.am: Remove all-local: $(ARCH).
437        * start/Makefile.am: Remove all-local: $(ARCH).
438        * startup/Makefile.am: Remove all-local: $(ARCH).
439        * vectors/Makefile.am: Remove all-local: $(ARCH).
440        * wrapup/Makefile.am: Remove all-local: $(ARCH).
441
4422003-10-22      Joel Sherrill <joel@OARcorp.com>
443
444        PR 510/bsps
445        * irq/irq.h: Add extern C wrapper.
446
4472003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
448
449        * Makefile.am: Merge-in include/Makefile.am.
450        Reflect changes to bsp.am.
451        * include/Makefile.am: Remove.
452        * configure.ac: Reflect changes above.
453
4542003-09-04      Joel Sherrill <joel@OARcorp.com>
455
456        * clock/p_clock.c, include/bsp.h, include/coverhd.h, irq/irq.c,
457        irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/if_hdlcsubr.h,
458        startup/bspstart.c, startup/setvec.c, vectors/vectors.h,
459        vectors/vectors_init.c: URL for license changed.
460
4612003-08-20      Joel Sherrill <joel@OARcorp.com>
462
463        * clock/p_clock.c, network/if_hdlcsubr.h: Correct copyright statements.
464
4652003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
466
467        * Makefile.am: Reflect having moved aclocal/.
468
4692003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
470
471        * Makefile.am: Reflect having moved automake/.
472        * clock/Makefile.am: Reflect having moved automake/.
473        * console/Makefile.am: Reflect having moved automake/.
474        * include/Makefile.am: Reflect having moved automake/.
475        * irq/Makefile.am: Reflect having moved automake/.
476        * network/Makefile.am: Reflect having moved automake/.
477        * start/Makefile.am: Reflect having moved automake/.
478        * startup/Makefile.am: Reflect having moved automake/.
479        * vectors/Makefile.am: Reflect having moved automake/.
480        * wrapup/Makefile.am: Reflect having moved automake/.
481
4822003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
483
484        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
485
4862003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
487
488        PR 445/bsps
489        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
490        Remove cpp, old_cpp (now unused).
491
4922003-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
493
494        * network/if_hdlcsubr.c: Use memcopy instead of bcmp,
495        Use memcmp instead of bcmp.
496
4972003-07-18      Till Straumann <strauman@slac.stanford.edu>
498
499        PR 288/rtems
500        * startup/bspstart.c: _ISR_Nest_level is now properly maintained.
501
5022003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
503
504        * configure.ac: Remove AC_CONFIG_AUX_DIR.
505
5062003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
507
508        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
509
5102003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
511
512        * configure.ac: AC_PREREQ(2.57).
513
5142003-01-20      Joel Sherrill <joel@OARcorp.com>
515
516        * startup/linkcmds: Add FreeBSD SYSCTL() sections for networking.
517
5182002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
519
520        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
521        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
522        * irq/Makefile.am: Don't include @RTEMS_BSP@.cfg.
523        Remove SORDID_HACK. Eliminate *_O_FILES.
524        * network/Makefile.am: Don't include @RTEMS_BSP@.cfg.
525        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
526        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
527        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
528
5292002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
530
531        * start/Makefile.am: Use install-data-local to install startfile.
532
5332002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
534
535        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
536
5372002-11-04      Joel Sherrill <joel@OARcorp.com>
538
539        * irq/irq.c: Removed warnings.
540
5412002-11-04      Joel Sherrill <joel@OARcorp.com>
542
543        * console/console.c, irq/irq.c, network/if_hdlcsubr.c,
544        network/if_hdlcsubr.h, network/network.c, vectors/vectors_init.c:
545        Removed warnings.
546
5472002-11-01      Joel Sherrill <joel@OARcorp.com>
548
549        * irq/irq.c, irq/irq_asm.S, startup/bspstart.c: Fixed typos and
550        removed warnings.
551
5522002-11-01      Andy Dachs <a.dachs@sstl.co.uk>
553
554        * irq/irq.c, irq/irq_asm.S, irq/irq_init.c: Per PR288, add support
555        for _ISR_Nest_level.
556
5572002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
558
559        * .cvsignore: Reformat.
560        Add autom4te*cache.
561        Remove autom4te.cache.
562
5632002-08-21      Joel Sherrill <joel@OARcorp.com>
564
565        * bsp_specs: Added support for -nostdlibs.
566
5672002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
568
569        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
570        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
571        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
572        * network/Makefile.am: Use .$(OBJEXT) instead of .o.
573        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
574        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
575        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
576        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
577
5782002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
579
580        * start/Makefile.am: Eliminate PGM.
581        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
582
5832002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
584
585        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
586
5872002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
590        Remove $(OBJS) from all-local.
591
5922002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
593
594        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
595
5962001-05-09      Joel Sherrill <joel@OARcorp.com>
597
598        * startup/linkcmds: In support of gcc 3.1, added one of more
599        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
600        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
601        and direction of segments to memory regions may also have been
602        addressed.  This was a sweep across all BSPs.
603 
6042002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
605
606        * irq/irq.c: Reflect changes to <rtems/score/cpu.h>.
607        * irq/irq_asm.S: Ditto.
608        * network/network.c: Include <rtems/bspIo.h>.
609        * start/start.S: Include <asm.h> instead of "asm.h".
610        * vectors/vectors.S: Reflect changes to <rtems/score/cpu.h>.
611
6122002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
613
614        * startup/bspstart.c: Include <libcpu/cpuIdent.h>, <rtems/bspIo.h>.
615
6162002-04-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
617
618        * configure.ac: Add BSPOPTS_*(DISPATCH_HANDLER_STAT).
619
6202002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
621
622        * configure.ac:
623        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
624        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
625        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
626        * Makefile.am: Remove AUTOMAKE_OPTIONS.
627        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
628        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
629        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
630        * network/Makefile.am: Remove AUTOMAKE_OPTIONS.
631        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
632        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
633        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
634        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
635
6362002-01-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
637
638        * configure.ac: Add RTEMS_CHECK_NETWORKING.
639
6402002-01-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
641
642        * clock/p_clock.c: Include rtems/bspIo.h instead of bspIo.h.
643        * console/console.c: Include rtems/bspIo.h instead of bspIo.h.
644        * irq/irq_init.c: Include rtems/bspIo.h instead of bspIo.h.
645
6462001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
647
648        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
649
6502001-11-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
651
652        * configure.ac: Add RTEMS_BSPOPTS_*(DATA_CACHE_ENABLE),
653        RTEMS_BSPOPTS_*(INSTRUCTION_CACHE_ENABLE).
654
6552001-11-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
656
657        * Makefile.am: Add @exceptions@ to SUBDIRS.
658        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
659        make/custom/mpc8260ads.cfg, add RTEMS_PPC_EXCEPTIONS([new]).
660        * include/Makefile.am: Convert PREINSTALL_FILES to
661        TMPINSTALL_FILES, include force-preinstall.am.
662        * wrapup/Makefile.am: Apply @exceptions@.
663
6642001-10-29      Joel Sherrill <joel@OARcorp.com>
665
666        * .cvsignore: Add more entries.
667
6682001-10-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
669
670        * aclocal.m4: Removed.  Should not have been in CVS.
671
6722001-10-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
673
674        * aclocal.m4: Regenerated.
675        * configure.ac, include/Makefile.am, irq/Makefile.am,
676        vectors/Makefile.am: Updated to autoconf 2.52.
677        * include/.cvsignore: Added newly generated files.
678        * include/bsp.h: Added include of bspopts.h.
679
6802001-10-22      Joel Sherrill <joel@OARcorp.com>
681
682        * .cvsignore, configure.ac, configure.in, console/.cvsignore,
683        include/.cvsignore, network/.cvsignore, start/.cvsignore,
684        startup/.cvsignore, wrapup/.cvsignore: Added .cvsignore
685        files and other files missed in previous commit.
686
68701-10-22        Andy Dachs <a.dachs@sstl.co.uk>
688
689        * mpc8260ads added as new BSP.  tm27 reported not to run
690        at this time.
691        * ChangeLog, Makefile.am, README, aclocal.m4, bsp_specs,
692        clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in,
693        console/Makefile.am, console/console.c, include/Makefile.am,
694        include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am,
695        irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c,
696        network/Makefile.am, network/README, network/if_hdlcsubr.c,
697        network/if_hdlcsubr.h, network/network.c, start/Makefile.am,
698        start/start.S, startup/Makefile.am, startup/bspstart.c,
699        startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times,
700        vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S,
701        vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am:
702        New files.
703
Note: See TracBrowser for help on using the repository browser.