source: rtems/c/src/lib/libbsp/powerpc/score603e/ChangeLog @ e806f13e

4.104.114.95
Last change on this file since e806f13e was e806f13e, checked in by Chris Johns <chrisj@…>, on 07/03/08 at 01:30:18

2008-07-03 Chris Johns <chrisj@…>

  • c/src/lib/libbsp/powerpc/score603e/startup/genpvec.c: Change to the Chains API.
  • Property mode set to 100644
File size: 24.1 KB
Line 
12008-07-03      Chris Johns <chrisj@rtems.org>
2
3        * c/src/lib/libbsp/powerpc/score603e/startup/genpvec.c: Change to
4        the Chains API.
5
62008-05-15      Joel Sherrill <joel.sherrill@OARcorp.com>
7
8        * startup/bspstart.c: Add capability for bootcard.c BSP Initialization
9        Framework to ask the BSP where it has memory for the RTEMS Workspace
10        and C Program Heap. These collectively are referred to as work area.
11        If the BSP supports this, then it does not have to include code to
12        split the available memory between the two areas. This reduces the
13        amount of code in the BSP specific bspstart.c file. Additionally, the
14        shared framework can initialize the C Library, call
15        rtems_debug_enable(), and dirty the work area memory. Until most/all
16        BSPs support this new capability, if the BSP supports this, it should
17        call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac.
18        When the transition is complete, this autoconf macro can be removed.
19
202008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
21
22        * Makefile.am: Rework to avoid .rel files.
23
242008-04-23      Joel Sherrill <joel.sherrill@OARcorp.com>
25
26        * Makefile.am: Remove all references to console_reserve_resources and
27        termios_reserve_resources.
28        * console/consolereserveresources.c: Removed.
29
302008-03-03      Joel Sherrill <joel.sherrill@OARcorp.com>
31
32        * startup/linkcmds: Add wildcard to gcc_except_table section so
33        programs compiled with gcc 4.3.x can link.
34
352007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
36
37        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
38        Configuration Table. Use the RTEMS provided accessor macros to obtain
39        configuration fields.
40
412007-12-08      Till Straumann <strauman@slac.stanford.edu>
42
43        * Makefile.am: merged shared/vme/vme_universe.c and
44        shared/vme/vme_universe_dma.c into one file.
45
462007-12-08      Till Straumann <strauman@slac.stanford.edu>
47
48        * vme/VMEConfig.h: added error status to
49        BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
50
512007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
54        from CPU Table to Configuration Table. Eliminate CPU Table from all
55        ports. Delete references to CPU Table in all forms.
56
572007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
58
59        * Makefile.am, startup/bspstart.c: Moved most of the remaining CPU
60        Table fields to the Configuration Table. This included
61        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
62        do_zero_of_workspace, extra_mpci_receive_server_stack,
63        stack_allocate_hook, and stack_free_hook. As a side-effect of this
64        effort some multiprocessing code was made conditional and some style
65        clean up occurred.
66
672007-11-30      Till Straumann <strauman@slac.stanford.edu>
68
69        * startup/bspstart: removed _Cpu_table.exceptions_in_RAM.
70
712007-11-30      Till Straumann <strauman@slac.stanford.edu>
72       
73        * vectors/vectors.S: Removed; this BSP now uses the shared
74        version.
75
762007-11-30      Till Straumann <strauman@slac.stanford.edu>
77
78        * irq/irq.h, irq/irq_init.c: Removed the definition
79        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
80        initialize the irqBase member of the rtems_irq_global_settings
81        struct. However, irqBase is an rtems_irq_symbolic_name,
82        so using BSP_LOWEST_OFFSET is more appropriate.
83
842007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
85
86        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
87        Table. They have been replaced with variables named bsp_XXX as
88        needed.
89
902007-09-17      Joel Sherrill <joel.sherrill@OARcorp.com>
91
92        * PCI_bus/universe.c, console/console.c, include/bsp.h, irq/FPGA.c,
93        startup/bspstart.c, startup/genpvec.c, startup/spurious.c: Eliminate
94        DEBUG_puts.
95
962007-09-12      Joel Sherrill <joel.sherrill@OARcorp.com>
97
98        PR 1257/bsps
99        * irq/irq.c: Code outside of cpukit should use the public API for
100        rtems_interrupt_disable/rtems_interrupt_enable. By bypassing the
101        public API and directly accessing _CPU_ISR_Disable and
102        _CPU_ISR_Enable, they were bypassing the compiler memory barrier
103        directive which could lead to problems. This patch also changes the
104        type of the variable passed into these routines and addresses minor
105        style issues.
106
1072007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
108
109        * irq/irq_init.c: adapted to shared exception code
110
1112007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
112
113        * Makefile.am: adapted to shared exception code
114
1152007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
116
117        * bsp_specs: Remove qrtems_debug.
118
1192007-03-11      Joel Sherrill <joel@OARcorp.com>
120
121        * startup/bspstart.c: Remove assignments of
122        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
123        value in boot_card.c
124
1252007-01-30      Till Straumann <strauman@slac.stanford.edu>
126
127        * Makefile.am, preinstall.am,
128        * vme/vmeconfig.c (removed), vme/VMEConfig.h (added):
129        cleaned up vme support - use files from libbsp/powerpc/shared/vme
130        and define BSP specifica in VMEConfig.h.
131        Use VME DMA support implemented by vmeUniverse and
132        libbsp/powerpc/shared/vme/vme_universe_dma.c
133
134        * irq/irq.c, include/gen2.h:
135        removed _BSP_vme_bridge_irq variable and BSP_PIC_DO_EOI definition.
136        Support for VME IRQ software priorities was incomplete/incorrect
137        on this BSP.
138
1392006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
140
141        * configure.ac: New BUG-REPORT address.
142
1432006-11-15      Joel Sherrill <joel@OARcorp.com>
144
145        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
146        file and simplified initialization.
147
1482006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
149
150        * Makefile.am: Remove superfluous -DASM.
151
1522006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
153
154        * configure.ac: Require autoconf-2.60. Require automake-1.10.
155
1562006-08-09      Joel Sherrill <joel@OARcorp.com>
157
158        * startup/linkcmds: Clean up a bit after adding missing .rela sections.
159
1602006-03-08      Joel Sherrill <joel@OARcorp.com>
161
162        * startup/linkcmds: Add .gnu.linkonce.b.* section.
163
1642006-02-08      Joel Sherrill <joel@OARcorp.com>
165
166        * startup/linkcmds: Add sections required by newer gcc versions.
167
1682006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
169
170        * configure.ac: Remove explicit ampolish3 support (now in
171        RTEMS_BSP_CONFIGURE).
172
1732006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
174
175        * configure.ac: Add ampolish3 support.
176        * Makefile.am: Add preinstall.am.
177
1782006-01-08      Joel Sherrill <joel@OARcorp.com>
179
180        * Makefile.am, vme/vmeconfig.c: VME code now compiles but is untested.
181        Jennifer will have to test this.
182
1832006-01-08      Joel Sherrill <joel@OARcorp.com>
184
185        * Makefile.am, vme/vmeconfig.c: VME code now compiles but is untested.
186        Jennifer will have to test this.
187
1882005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
189
190        * include/bsp.h: New header guard.
191
1922005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
193
194        * irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
195
1962005-05-11      Joel Sherrill <joel@OARcorp.com>
197
198        * startup/linkcmds: Add .data.* sections.
199
2002005-05-11      Ralf Corsepius <ralf.corsepius@rtems.org>
201
202        * vme/vmeconfig.c: Eliminate unsigned32.
203
2042005-05-06      Jennifer Averett <jennifer.averett@oarcorp.com>
205
206        * include/gen2.h: Changed rtems_unsigned types to uint types
207
2082005-05-04      Jennifer Averett <jennifer.averett@oarcorp.com>
209
210        * irq/irq_init.c: Name change to support common PCI interface
211
2122005-05-04      Jennifer Averett <jennifer.averett@oarcorp.com>
213
214        * include/tm27.h: Correct error in tm27 test
215
2162005-04-28      Jennifer Averett <jennifer.averett@oarcorp.com>
217
218        * Add/remove files for the Update to new exception model.
219        * pci/no_host_bridge.c, vme/vmeconfig.c: New files.
220        * clock/clock.c: Removed.
221
2222005-04-28      Jennifer Averett <jennifer.averett@oarcorp.com>
223       
224        * Add/move files for the Update to new exception model.
225          NOTE: These modifications have not been tested on hardware.
226        * irq/FPGA.c, irq/irq.c, irq/irq.h, irq/irq_init.c: New files.
227        * startup/FPGA.c: Removed.
228
2292005-04-28      Jennifer Averett <jennifer.averett@oarcorp.com>
230
231        * score603e/Makefile.am, score603e/configure.ac,
232        score603e/console/console.c, score603e/include/bsp.h,
233        score603e/include/gen2.h, score603e/include/tm27.h,
234        score603e/startup/bspstart.c: Update score603e to new exception model
235        NOTE: These modifications have not been tested on hardware.
236
2372005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
238
239        * clock/clock.c: Fix multiple defined warning
240
2412005-04-11      Jennifer Averett<jennifer.averett@oarcorp.com>
242
243        PR 778/bsps
244        * include/bsp.h, include/gen2.h, startup/FPGA.c, startup/Hwr_init.c,
245        startup/bspstart.c, tod/tod.c:
246        modify SCORE_.. to BSP_.. for externally used define's.
247
2482005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
249
250        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
251
2522005-02-14      Ralf Corsepius <ralf.corsepius@rtems.org>
253
254        * startup/spurious.c: Merge ppc603 and ppc603e.
255        Remove digits (Unused).
256
2572005-02-12      Ralf Corsepius <ralf.corsepius@rtems.org>
258
259        * Makefile.am: Fix typo in previous patch.
260
2612005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
262
263        * Makefile.am: Merge-in wrapup/Makefile.am.
264        * wrapup/Makefile.am: Remove.
265        * configure.ac: Reflect changes above.
266
2672005-02-09      Ralf Corsepius <ralf.corsepius@rtems.org>
268
269        * vectors/vectors.S: Remove XCOFF support.
270
2712005-01-28      Joel Sherrill <joel@OARcorp.com>
272
273        * startup/linkcmds: Add .gnu.linkonce.b.* section.
274
2752005-01-26      Joel Sherrill <joel@OARcorp.com>
276
277        * startup/linkcmds: Now links.
278
2792005-01-18      Ralf Corsepius <ralf.corsepius@rtems.org>
280
281        * Makefile.am: Use ../../shared/tod.h instead of include/tod.h.
282        * include/tod.h: Remove.
283
2842005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
285
286        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
287
2882005-01-04      Joel Sherrill <joel@OARcorp.com>
289
290        * startup/linkcmds: Remove warnings.
291
2922005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
293
294        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
295
2962004-09-24      Ralf Corsepius <ralf_corsepius@rtems.org>
297
298        * configure.ac: Require automake > 1.9.
299
3002004-04-23      Ralf Corsepius <ralf_corsepius@rtems.org>
301
302        PR 610/bsps
303        * Makefile.am: Add include/tm27.h, Cosmetics.
304        * include/tm27.h: Final cosmetics.
305
3062004-04-22      Ralf Corsepius <ralf_corsepius@rtems.org>
307
308        * include/bsp.h: Split out tmtest27 support.
309        * include/tm27.h: New.
310
3112004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
312
313        PR 613/bsps
314        * include/bsp.h: Remove MAX_LONG_TEST_DURATION.
315
3162004-04-21      Ralf Corsepius <ralf_corsepius@rtems.org>
317
318        PR 614/bsps
319        * include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
320
3212004-04-01      Ralf Corsepius <ralf_corsepius@rtems.org>
322
323        * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>.
324        * startup/genpvec.c: Include <rtems/chain.h> instead of <chain.h>.
325        * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>.
326        * include/bsp.h: Include <rtems/console.h> instead of <console.h>.
327        * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>.
328        * console/consolebsp.h: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
329        * startup/vmeintr.c: Include <rtems/vmeintr.h> instead of <vmeintr.h>.
330
3312004-03-31      Ralf Corsepius <ralf_corsepius@rtems.org>
332
333        * PCI_bus/PCI.c, PCI_bus/PCI.h, PCI_bus/flash.c, PCI_bus/universe.c,
334        clock/clock.c, console/85c30.c, console/console.c,
335        console/consolebsp.h, include/bsp.h, include/gen2.h, startup/FPGA.c,
336        startup/Hwr_init.c, startup/bspstart.c, startup/genpvec.c,
337        startup/spurious.c, startup/vmeintr.c, timer/timer.c, tod/tod.c:
338        Convert to using c99 fixed size types.
339
3402004-02-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
341
342        * Makefile.am: Reflect changes to bsp.am.
343        Preinstall dist_project_lib*.
344
3452004-02-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
346
347        * Makefile.am: Reflect changes to bsp.am.
348
3492004-02-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
350
351        * Makefile.am: Use CPPASCOMPILE instead of CCASCOMPILE.
352
3532004-02-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
354
355        * wrapup/Makefile.am: Convert to automake-building rules.
356
3572004-01-31      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
358
359        * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am,
360        PCI_bus/Makefile.am, startup/Makefile.am, timer/Makefile.am,
361        tod/Makefile.am, vectors/Makefile.am. Use automake compilation rules.
362        * clock/Makefile.am, console/Makefile.am, PCI_bus/Makefile.am,
363        startup/Makefile.am, timer/Makefile.am, tod/Makefile.am,
364        vectors/Makefile.am: Remove.
365        * configure.ac: Reflect changes above.
366        * wrapup/Makefile.am: Reflect changes above.
367
3682004-01-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
369
370        * Makefile.am: Merge-in start/Makefile.am.
371        * start/Makefile.am: Remove.
372        * configure.ac: Reflect changes above.
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        * wrapup/Makefile.am: Reflect changes to libcpu.
383
3842004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
387        Add PRE/TMPINSTALL_FILES to CLEANFILES.
388        * start/Makefile.am: Ditto.
389        * startup/Makefile.am: Ditto.
390
3912004-01-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
392
393        * wrapup/Makefile.am: Eliminate $(LIB).
394        Use noinst_DATA to trigger building libbsp.a.
395
3962003-12-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
397
398        * startup/Makefile.am: Cosmetics.
399
4002003-12-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
401
402        * PCI_bus/Makefile.am: Eliminate VPATH.
403        * clock/Makefile.am: Eliminate VPATH.
404        * console/Makefile.am: Eliminate VPATH.
405        * start/Makefile.am: Eliminate VPATH.
406        * startup/Makefile.am: Eliminate VPATH.
407        * timer/Makefile.am: Eliminate VPATH.
408        * tod/Makefile.am: Eliminate VPATH.
409        * vectors/Makefile.am: Eliminate VPATH.
410
4112003-12-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
412
413        * start/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
414        * startup/Makefile.am: s,${PROJECT_RELEASE}/lib,$(PROJECT_LIB),g.
415
4162003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
417
418        * start/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
419        * startup/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
420
4212003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
422
423        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
424
4252003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
426
427        * start/Makefile.am: Misc cleanups and fixes.
428        * startup/Makefile.am: Misc cleanups and fixes.
429        * wrapup/Makefile.am: Misc cleanups and fixes.
430
4312003-12-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
432
433        * Makefile.am: Add preinstallation dirstamp support.
434        * PCI_bus/Makefile.am: Cosmetics.
435        * clock/Makefile.am: Cosmetics.
436        * console/Makefile.am: Cosmetics.
437        * startup/Makefile.am: Cosmetics.
438        * timer/Makefile.am: Cosmetics.
439        * tod/Makefile.am: Cosmetics.
440        * vectors/Makefile.am: Cosmetics.
441        * wrapup/Makefile.am: Cosmetics.
442
4432003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
444
445        * PCI_bus/Makefile.am: Remove all-local: $(ARCH).
446        * clock/Makefile.am: Remove all-local: $(ARCH).
447        * console/Makefile.am: Remove all-local: $(ARCH).
448        * start/Makefile.am: Remove all-local: $(ARCH).
449        * startup/Makefile.am: Remove all-local: $(ARCH).
450        * timer/Makefile.am: Remove all-local: $(ARCH).
451        * tod/Makefile.am: Remove all-local: $(ARCH).
452        * vectors/Makefile.am: Remove all-local: $(ARCH).
453        * wrapup/Makefile.am: Remove all-local: $(ARCH).
454
4552003-09-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
456
457        * Makefile.am: Merge-in include/Makefile.am.
458        Reflect changes to bsp.am.
459        * include/Makefile.am: Remove.
460        * configure.ac: Reflect changes above.
461
4622003-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
463
464        * bsp_specs: Remove *lib:.
465
4662003-09-04      Joel Sherrill <joel@OARcorp.com>
467
468        * PCI_bus/PCI.h, clock/clock.c, console/85c30.c, console/85c30.h,
469        console/console.c, console/consolebsp.h,
470        console/consolereserveresources.c, console/tbl85c30.c, include/bsp.h,
471        include/coverhd.h, include/gen2.h, include/tod.h, startup/FPGA.c,
472        startup/bspclean.c, startup/bspstart.c, startup/genpvec.c,
473        startup/setvec.c, startup/vmeintr.c, timer/timer.c, tod/tod.c: URL
474        for license changed.
475
4762003-09-04      Joel Sherrill <joel@OARcorp.com>
477
478        * PCI_bus/PCI.c, PCI_bus/flash.c, PCI_bus/universe.c: Removed incorrect
479        statement about copyright assignment.
480
4812003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * Makefile.am: Reflect having moved aclocal/.
484
4852003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * Makefile.am: Reflect having moved automake/.
488        * PCI_bus/Makefile.am: Reflect having moved automake/.
489        * clock/Makefile.am: Reflect having moved automake/.
490        * console/Makefile.am: Reflect having moved automake/.
491        * include/Makefile.am: Reflect having moved automake/.
492        * start/Makefile.am: Reflect having moved automake/.
493        * startup/Makefile.am: Reflect having moved automake/.
494        * timer/Makefile.am: Reflect having moved automake/.
495        * tod/Makefile.am: Reflect having moved automake/.
496        * vectors/Makefile.am: Reflect having moved automake/.
497        * wrapup/Makefile.am: Reflect having moved automake/.
498
4992003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
500
501        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
502
5032003-08-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
504
505        PR 445/bsps
506        * bsp_specs: Remove -D__embedded__ -Asystem(embedded) from cpp.
507        Remove cpp, old_cpp (now unused).
508
5092003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
510
511        * configure.ac: Remove AC_CONFIG_AUX_DIR.
512
5132003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
514
515        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
516
5172003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
518
519        * configure.ac: AC_PREREQ(2.57).
520
5212003-01-20      Joel Sherrill <joel@OARcorp.com>
522
523        * startup/linkcmds*: Add FreeBSD sysctl() sections.
524
5252002-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
526
527        * clock/Makefile.am: Don't include @RTEMS_BSP@.cfg.
528        * console/Makefile.am: Don't include @RTEMS_BSP@.cfg.
529        * PCI_bus/Makefile.am: Don't include @RTEMS_BSP@.cfg.
530        * start/Makefile.am: Don't include @RTEMS_BSP@.cfg.
531        * startup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
532        * timer/Makefile.am: Don't include @RTEMS_BSP@.cfg.
533        * tod/Makefile.am: Don't include @RTEMS_BSP@.cfg.
534        * vectors/Makefile.am: Don't include @RTEMS_BSP@.cfg.
535
5362002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
537
538        * start/Makefile.am: Use install-data-local to install startfile.
539
5402002-12-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
541
542        * wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
543
5442002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
545
546        * .cvsignore: Reformat.
547        Add autom4te*cache.
548        Remove autom4te.cache.
549
5502002-08-21      Joel Sherrill <joel@OARcorp.com>
551
552        * bsp_specs: Added support for -nostdlibs.
553
5542002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
555
556        * PCI_bus/Makefile.am: Use .$(OBJEXT) instead of .o.
557        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
558        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
559        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
560        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
561        * timer/Makefile.am: Use .$(OBJEXT) instead of .o.
562        * tod/Makefile.am: Use .$(OBJEXT) instead of .o.
563        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
564        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
565
5662002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
567
568        * start/Makefile.am: Eliminate PGMS.
569        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
570
5712002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
572
573        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
574
5752002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
576
577        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
578        Remove $(OBJS) from all-local.
579
5802002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
581
582        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
583
5842001-05-09      Joel Sherrill <joel@OARcorp.com>
585
586        * startup/linkcmds: In support of gcc 3.1, added one of more
587        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
588        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
589        and direction of segments to memory regions may also have been
590        addressed.  This was a sweep across all BSPs.
591 
5922002-04-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
593
594        * startup/spurious.c: Use defined(mpc604) instead of defined(ppc604).
595
5962002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
597
598        * vectors/vectors.S: Include <asm.h>.
599
6002001-04-08      Joel Sherrill <joel@OARcorp.com>
601
602        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
603 
6042002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
605
606        * configure.ac:
607        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
608        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
609        * PCI_bus/Makefile.am: Remove AUTOMAKE_OPTIONS.
610        * Makefile.am: Remove AUTOMAKE_OPTIONS.
611        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
612        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
613        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
614        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
615        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
616        * timer/Makefile.am: Remove AUTOMAKE_OPTIONS.
617        * tod/Makefile.am: Remove AUTOMAKE_OPTIONS.
618        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
619        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
620
6212001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
622
623        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
624
6252001-11-28      Joel Sherrill <joel@OARcorp.com>,
626
627        This was tracked as PR87.
628        * README, configure.ac, include/Makefile.am, include/bsp.h,
629        start/start.S, startup/FPGA.c, startup/Makefile.am, tod/Makefile.am:
630        Eliminated conditional code for generation 1 boards as these are
631        no longer available.
632        * include/gen1.h, startup/82378zb.c, tod/tod_g1.c: Deleted.
633
6342001-11-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
635
636        * Makefile.am: Add @exceptions@ to SUBDIRS.
637        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
638        make/custom/score603e.cfg;
639        Add automake conditional for SCORE_GENERATION_1;
640        Add RTEMS_PPC_EXCEPTIONS([old]).
641        * include/Makefile.am: include force-preinstall.am.
642        * start/start.S: include <bspopts.h> instead of targopts.h.
643        * tod/Makefile.am: Apply SCORE_GENERATION_1 conditional.
644        * vectors/vector.S: include <bsp.h>.
645        * wrapup/Makefile.am: Apply @exceptions@.
646
6472001-10-25      Joel Sherrill <joel@OARcorp.com>
648
649        * startup/linkcmds: Added _init and _fini.
650
6512001-10-12      Joel Sherrill <joel@OARcorp.com>
652
653        * PCI_bus/PCI.h, clock/clock.c, console/85c30.c, console/console.c,
654        console/consolebsp.h, console/consolereserveresources.c,
655        console/tbl85c30.c, include/bsp.h, include/coverhd.h, include/gen1.h,
656        include/gen2.h, startup/82378zb.c, startup/FPGA.c,
657        startup/bspstart.c, startup/genpvec.c, startup/setvec.c,
658        startup/vmeintr.c, timer/timer.c: Fixed typo.
659
6602001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
661
662        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
663        * configure.in: Remove.
664        * configure.ac: New file, generated from configure.in by autoupdate.
665
6662001-10-11      Joel Sherrill <joel@OARcorp.com>
667
668        * console/85c30.c, startup/bspstart.c: Fix references to delay() and
669        delay_in_bus_cycles() to add rtems_bsp_ prefix.
670
6712001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
672
673        * include/Makefile.am: Use 'TMPINSTALL_FILES ='.
674
6752001-08-30      Joel Sherrill <joel@OARcorp.com>
676
677        * startup/linkcmds: Modified to work better with gcc 2.8.1 and
678        gnat 3.13p.
679
6802001-06-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
681
682        * configure.in: Add bspopts.h.
683        * include/.cvsignore: Add bspopts.h*, stamp-h*.
684        * include/Makefile.am: Use *_HEADERS instead of *H_FILES.
685        * include/bsp.h: Include bspopts.h.
686
6872001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
688
689        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
690
6912001-01-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
692
693        * startup/genpvec.c: #include <chain.h> instead of "chain.h", fix
694        CVS-Id.
695        * include/chain.h: Remove.
696        * include/Makefile.am: Remove chain.h.
697
6982000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
699
700        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
701
7022000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
703
704        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
705
7062000-11-01      Joel Sherrill <joel@OARcorp.com>
707
708        * startup/82378zb.c, startup/FPGA.c: assoc.h, error.h, libio_.h,
709        libio.h, and libcsupport.h moved from libc to lib/include/rtems and
710        now must be referenced as <rtems/XXX.h>.   Header file order
711        was cleaned up while doing this.
712
7132000-11-01      Joel Sherrill <joel@OARcorp.com>
714
715        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
716        and libcsupport.h moved from libc to lib/include/rtems and
717        now must be referenced as <rtems/XXX.h>.   Header file order
718        was cleaned up while doing this.
719
7202000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
721
722        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
723        Switch to GNU canonicalization.
724
7252000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
726
727        * PCI_bus/Makefile.am, clock/Makefile.am, console/Makefile.am,
728        start/Makefile.am, startup/Makefile.am, timer/Makefile.am,
729        tod/Makefile.am, vectors/Makefile.am, wrapup/Makefile.am: Include
730        compile.am
731
7322000-08-10      Joel Sherrill <joel@OARcorp.com>
733
734        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.