source: rtems/c/src/lib/libbsp/powerpc/mvme5500/ChangeLog @ 218a2bb

4.104.115
Last change on this file since 218a2bb was 218a2bb, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/20/09 at 05:13:14

2009-10-20 Ralf Corsépius <ralf.corsepius@…>

  • configure.ac: Don't add -ansi -fasm to CFLAGS.
  • Property mode set to 100644
File size: 19.1 KB
Line 
12009-10-20      Ralf Corsépius <ralf.corsepius@rtems.org>
2
3        * configure.ac: Don't add -ansi -fasm to CFLAGS.
4
52009-10-16      Ralf Corsépius <ralf.corsepius@rtems.org>
6
7        * startup/bspstart.c: Remove nested externs.
8
92009-10-16      Ralf Corsépius <ralf.corsepius@rtems.org>
10
11        * startup/bspstart.c: Remove __RTEMS_APPLICATION__
12
132009-10-15      Ralf Corsépius <ralf.corsepius@rtems.org>
14
15        * make/custom/mvme5500.cfg: New (relocated from /make/custom).
16
172009-09-28      Joel Sherrill <joel.sherrill@OARcorp.com>
18
19        * network/if_100MHz/GT64260eth.c, network/if_1GHz/if_wm.c: Do not
20        include <sys/queue.h>. It conflicts with one from network stack.
21
222009-09-15      Ralf Corsépius <ralf.corsepius@rtems.org>
23
24        * configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
25
26 2009-08-21     Joel Sherrill <joel.sherrill@OARcorp.com>
27
28        * include/bsp.h: Eliminate BSPs defining NUMBER_OF_TERMIOS_PORTS.
29        Should be automatically handled by confdefs.h or the application.
30
312009-07-16      Joel Sherrill <joel.sherrill@oarcorp.com>
32
33        * configure.ac: Rename BSP_BOOTCARD_OPTIONS to
34        RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs
35        have the same options.
36
372009-05-08      Joel Sherrill <joel.sherrill@oarcorp.com>
38
39        * irq/BSP_irq.c: New file.
40
412009-05-08      Joel Sherrill <joel.sherrill@oarcorp.com>
42
43        * irq/irq.c, network/if_1GHz/POSSIBLEBUG: Removed.
44
452009-05-08      Kate Feng <feng1@bnl.gov>
46        * include/bsp.h, start/start.S, startup/bspstart.c:
47        added CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK in bsp.h.
48        removed BSP_INIT_STACK_SIZE in bsp.h -- it uses __stack defined
49        by the linker script (shared/startup/linkcmds) for the initial
50        stack.
51        replaced __rtems_end+4096 with __stack in start.S
52        Removed legacy code in bspstart.c (inherited from old mvme2307 BSP
53        but not relevant to this one) that tested trapping
54        into PPCBug.
55        Changed ConfVPD_buff[] to be static and added ReadConfVPD_buf() in
56        bspstart.c
57
582009-04-28      Chris Johns <chrisj@rtems.org>
59
60        * start/start.S: Update for boot_card command line change.
61
622009-02-06      Ralf Corsépius <ralf.corsepius@rtems.org>
63
64        * Makefile.am: Add network_CPPFLAGS += -D__BSD_VISIBLE.
65
662009-02-03      Ralf Corsépius <ralf.corsepius@rtems.org>
67
68        * GT64260/GT64260TWSI.h: Add missing prototypes.
69
702008-12-17      Ralf Corsépius <ralf.corsepius@rtems.org>
71
72        * GT64260/MVME5500I2C.c: Include <stdint.h> instead of
73        <rtems/stdint.h>.
74
752008-12-07      Ralf Corsépius <ralf.corsepius@rtems.org>
76
77        * bsp_specs: Remove -Qy from *link.
78
792008-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
80
81        * bsp_specs: Move -e start from *link to *startfile to avoid warning
82        for undefined entry symbol when linking relocatables with binutils
83        2.19.
84
852008-11-20      Joel Sherrill <joel.sherrill@OARcorp.com>
86
87        * README: Fix typo.
88
892008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
90
91        * Makefile.am: Eliminate *_SOURCES.
92
932008-09-29      Ralf Corsépius <ralf.corsepius@rtems.org>
94
95        * Makefile.am: Move noinst_LIBRARIES = libbsp.a before its
96        components.
97
982008-09-26      Ralf Corsépius <ralf.corsepius@rtems.org>
99
100        * Makefile.am: Cleanup ../../shared/include/bootcard.h handling.
101
1022008-08-24      Ralf Corsépius <ralf.corsepius@rtems.org>
103
104        PR 1323/bsps
105        * Makefile.am: Remove AM_CFLAGS += -msoft-float.
106
1072008-09-23      Joel Sherrill <joel.sherrill@oarcorp.com>
108
109        * configure.ac: Make letting boot_card() handle work area allocation
110        mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to
111        BSP_BOOTCARD_OPTIONS.
112
1132008-09-22      Joel Sherrill <joel.sherrill@oarcorp.com>
114
115        * Makefile.am, README.booting, include/bsp.h, startup/bspclean.c,
116        vectors/exceptionhandler.c: Use standardized bsp_cleanup() which can
117        optionally print a message, poll for user to press key, and call
118        bsp_reset(). Using this eliminates the various bsp_cleanup()
119        implementations which had their own implementation and variety of
120        string constants.
121        * startup/bspreset.c: New file.
122        * startup/reboot.c: Removed.
123
1242008-09-21      Joel Sherrill <joel.sherrill@OARcorp.com>
125
126        * include/bsp.h: Remove define of BSP_ZERO_WORKSPACE_AUTOMATICALLY.
127
1282008-09-18      Joel Sherrill <joel.sherrill@oarcorp.com>
129
130        * Makefile.am, configure.ac, include/bsp.h, startup/bspstart.c: Use
131        PowerPC level shared bsp_get_work_area() implementation.
132
1332008-09-15      Joel Sherrill <joel.sherrill@oarcorp.com>
134
135        * startup/bspstart.c: Add use of bsp_get_work_area() in its own file
136        and rely on BSP Framework to perform more initialization.
137
1382008-09-10      Joel Sherrill <joel.sherrill@oarcorp.com>
139
140        * startup/bspstart.c: Review of all bsp_cleanup() implementations. In
141        this phase, all prototypes were removed from bsp.h and empty
142        implementations were removed and made to use the shared stub.
143
1442008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
145
146        * GT64260/GT64260TWSI.c, network/if_100MHz/GT64260eth.c,
147        network/if_1GHz/if_wm.c: Add missing prototypes.
148
1492008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
150
151        * GT64260/GT64260TWSI.c, irq/irq_init.c,
152        network/if_100MHz/GT64260eth.c, network/if_1GHz/if_wm.c,
153        pci/pci.c, pci/pci_interface.c, startup/bspstart.c,
154        vectors/exceptionhandler.c: Add missing prototypes.
155
1562008-08-20      Ralf Corsépius <ralf.corsepius@rtems.org>
157
158        * pci/pci.c: Add CVS Id.
159        * GT64260/MVME5500I2C.c: Once again eliminate u32, unchar.
160        Add CVS Id, fix typo.
161
1622008-05-14      Joel Sherrill <joel.sherrill@OARcorp.com>
163
164        * Makefile.am: Rework to avoid .rel files.
165
1662008-05-12      Joel Sherrill <joel.sherrill@OARcorp.com>
167
168        * startup/bspstart.c: Refactored and renamed initialization routines to
169        rtems_initialize_data_structures, rtems_initialize_before_drivers,
170        rtems_initialize_device_drivers, and
171        rtems_initialize_start_multitasking. This opened the sequence up so
172        that bootcard() could provide a more robust and flexible framework
173        which is easier to explain and understand. This also lays the
174        groundwork for sharing the division of available memory between the
175        RTEMS workspace and heap and the C library initialization across all
176        BSPs.
177
1782007-12-11      Till Straumann <strauman@slac.stanford.edu>
179
180        * Makefile.am, irq/irq.c, irq/irq.h, irq/irq_init.c:
181        use new exception/irq support from
182        libcpu/powerpc/new-exceptions/bspsupport
183        rather than borrowing from ../shared/vectors ../shared/irq
184
1852007-12-11      Joel Sherrill <joel.sherrill@OARcorp.com>
186
187        * include/bsp.h, startup/bspstart.c: Eliminate copies of the
188        Configuration Table. Use the RTEMS provided accessor macros to obtain
189        configuration fields.
190
1912007-12-10      Till Straumann <strauman@slac.stanford.edu>
192
193        * Makefile.am, start/preload.S: moved preload.S
194        to ../shared/start.
195
1962007-12-08      Till Straumann <strauman@slac.stanford.edu>
197
198        * Makefile.am: merged shared/vme/vme_universe.c and
199        shared/vme/vme_universe_dma.c into one file.
200
2012007-12-08      Till Straumann <strauman@slac.stanford.edu>
202
203        * vme/VMEConfig.h: added error status to
204        BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
205
2062007-12-04      Joel Sherrill <joel.sherrill@OARcorp.com>
207
208        * include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field
209        from CPU Table to Configuration Table. Eliminate CPU Table from all
210        ports. Delete references to CPU Table in all forms.
211
2122007-12-03      Joel Sherrill <joel.sherrill@OARcorp.com>
213
214        * Makefile.am, include/bsp.h, startup/bspstart.c: Moved most of the
215        remaining CPU Table fields to the Configuration Table. This included
216        pretasking_hook, predriver_hook, postdriver_hook, idle_task,
217        do_zero_of_workspace, extra_mpci_receive_server_stack,
218        stack_allocate_hook, and stack_free_hook. As a side-effect of this
219        effort some multiprocessing code was made conditional and some style
220        clean up occurred.
221
2222007-11-30      Till Straumann <strauman@slac.stanford.edu>
223
224        * startup/bspstart: removed _Cpu_table.exceptions_in_RAM.
225
2262007-11-30      Joel Sherrill <joel.sherrill@OARcorp.com>
227
228        * irq/GT64260Int.c, network/if_100MHz/Makefile.am,
229        network/if_1GHz/Makefile.am: Removed.
230
2312007-11-30      Till Straumann <strauman@slac.stanford.edu>
232
233        * irq/irq.h, irq/irq_init.c: Removed the definition
234        of ASM_IRQ_VECTOR_BASE; this symbol was only use to
235        initialize the irqBase member of the rtems_irq_global_settings
236        struct. However, irqBase is an rtems_irq_symbolic_name,
237        so using BSP_LOWEST_OFFSET is more appropriate.
238
2392007-11-28      Joel Sherrill <joel.sherrill@OARcorp.com>
240
241        * startup/bspstart.c: Eliminate PowerPC specific elements from the CPU
242        Table. They have been replaced with variables named bsp_XXX as
243        needed.
244
2452007-09-20      Kate Feng <feng1@bnl.gov>
246
247        * network/if_100MHz/GT64260eth.c: Add else.
248
2492007-09-19      Kate Feng <feng1@bnl.gov>
250
251        * README: Update.
252
2532007-09-14      Joel Sherrill <joel.sherrill@OARcorp.com>
254
255        * network/GT64260eth.c, network/GT64260eth.h, network/GT64260ethreg.h: Removed.
256
2572007-09-14      Joel Sherrill <joel.sherrill@OARcorp.com>
258
259        * network/if_1GHz/if_wm.c, network/if_1GHz/pci_map.c: Remove a few
260        warnings.
261
2622007-09-07      Kate Feng <feng1@bnl.gov>
263
264        * ChangeLog, Makefile.am, README, README.booting, README.irq,
265        preinstall.am, GT64260/MVME5500I2C.c, include/bsp.h, irq/irq.c,
266        irq/irq.h, irq/irq_init.c, pci/detect_host_bridge.c, pci/pci.c,
267        pci/pci_interface.c, pci/pcifinddevice.c, start/preload.S,
268        startup/bspclean.c, startup/bspstart.c, startup/pgtbl_activate.c,
269        startup/reboot.c, vectors/bspException.h, vectors/exceptionhandler.c:
270        Merge my improvements in this BSP including a new network
271        driver for the 1GHz NIC.
272        * network/if_100MHz/GT64260eth.c, network/if_100MHz/GT64260eth.h,
273        network/if_100MHz/GT64260ethreg.h, network/if_100MHz/Makefile.am,
274        network/if_1GHz/Makefile.am, network/if_1GHz/POSSIBLEBUG,
275        network/if_1GHz/if_wm.c, network/if_1GHz/if_wmreg.h,
276        network/if_1GHz/pci_map.c, network/if_1GHz/pcireg.h: New files.
277
2782007-07-23      Joel Sherrill <joel.sherrill@OARcorp.com>
279
280        * start/preload.S: Fix symbolic reference. Did earlier modifications
281        change the conditionals specificed when this BSP is built?
282
2832007-07-23      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
284
285        * Makefile.am: added shared/vectors/vectors_entry.S
286
2872007-07-10      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
288
289        * irq/irq_init.c: adapted to shared exception code
290
2912007-07-06      Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
292
293        * Makefile.am: adapted to shared exception code
294
2952007-04-12      Ralf Corsépius <ralf.corsepius@rtems.org>
296
297        * bsp_specs: Remove qrtems_debug.
298
2992007-04-06      Ralf Corsépius <ralf.corsepius@rtems.org>
300
301        * bsp_specs: Remove lib (Now expected to exist in GCC).
302
3032007-04-01      Joel Sherrill <joel@OARcorp.com>
304
305        PR 1235/bsps
306        * pci/pci.c: Add conditional declaration of variables used in debug
307        printk's.
308
3092007-03-31      Ralf Corsépius <ralf.corsepius@rtems.org>
310
311        * pci/detect_host_bridge.c, pci/pci.c, pci/pcifinddevice.c:
312        Reflect changes to pci-API.
313
3142007-03-12      Joel Sherrill <joel@OARcorp.com>
315
316        * irq/irq_init.c: Correct license URL and/or fix mistake in copyright
317        notice. Both of these mistakes appear to be from code submitted after
318        these changes were made previously.
319
3202007-03-11      Joel Sherrill <joel@OARcorp.com>
321
322        * startup/bspstart.c: Remove assignments of
323        Cpu_table.do_zero_of_workspace to TRUE since TRUE is the default
324        value in boot_card.c
325
3262007-01-30      Till Straumann <strauman@slac.stanford.edu>
327
328        * Makefile.am, preinstall.am, include/bsp.h,
329        * vme/vmeconfig.c (removed), vme/VME.h (removed):
330        cleaned up vme support - use files from libbsp/powerpc/shared/vme
331        and define BSP specifica in VMEConfig.h.
332        Use VME DMA support implemented by vmeUniverse and
333        libbsp/powerpc/shared/vme/vme_universe_dma.c
334
3352007-01-29      Ralf Corsépius <ralf.corsepius@rtems.org>
336
337        * GT64260/MVME5500I2C.c: Eliminate u32.
338        * GT64260/MVME5500I2C.c, pci/pci.c: Eliminate unchar.
339
3402007-01-19      Till Straumann <strauman@slac.stanford.edu>
341
342        * mvme5500/Makefile.am, mvme5500/preinstall.am,
343        mvme5500/vme/VMEConfig.h, mvme5500/vme/VME.h, mvme5500/vme/vmeconfig.c:
344        removed copies of vmeconfig.c, VME.h - use generic
345        versions instead.
346
3472006-12-15      Ralf Corsépius <ralf.corsepius@rtems.org>
348
349        * network/GT64260eth.c: Use ioctl_command_t as arg to ioctl functions.
350
3512006-12-13      Till Straumann <strauman@slac.stanford.edu>
352
353        * mvme5500/Makefile.am, mvme5500/preinstall.am:
354        need to install bsp/vme_am_defs.h
355
3562006-11-15      Joel Sherrill <joel@OARcorp.com>
357
358        * Makefile.am: Merge c_rtems_main() into boot_card(). This eliminated a
359        file and simplified initialization.
360
3612006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
362
363        * LICENSE: Convert to utf-8.
364
3652006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
366
367        * Makefile.am: Remove superfluous -DASM.
368
3692006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
370
371        * configure.ac: Require autoconf-2.60. Require automake-1.10.
372
3732006-01-11      Ralf Corsepius <ralf.corsepius@rtems.org>
374
375        * configure.ac: Remove explicit ampolish3 support (now in
376        RTEMS_BSP_CONFIGURE).
377
3782006-01-10      Ralf Corsepius <ralf.corsepius@rtems.org>
379
380        * configure.ac: Add ampolish3 support.
381        * Makefile.am: Add preinstall.am.
382
3832006-01-09      Ralf Corsepius <ralf.corsepius@rtems.org>
384
385        * Makefile.am: Don't include subdirs.am.
386
3872005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
388
389        * bsp_specs: Remove %cpp.
390
3912005-11-03      Till Straumann <strauman@slac.stanford.edu>
392
393        * include/bsp.h, vme/vmeconfig.c: Reverted redefinition of _IO_BASE;
394        this normally points to ISA space but is misused by this BSP
395        (inb/outb & friends are all over the place).
396
3972005-11-03      Till Straumann <strauman@slac.stanford.edu>
398
399        * irq/irq.c, irq/irq.h: removed BSP_SHARED_HANDLER_SUPPORT definition;
400        this BSP does not implement sharing interrupts.
401
4022005-11-03      Till Straumann <strauman@slac.stanford.edu>
403
404        * include/bsp.h: fixed misuse of _IO_BASE
405
4062005-11-03      Till Straumann <strauman@slac.stanford.edu>
407
408        * startup/linkcmds: Removed.
409        * Makefile.am, start/preload.S, startup/bspstart.c: use linkcmds
410        from shared area - this version seemed broken anyways. Let the
411        preloader use the generic 'entry_point_section' rather than its own
412        'mvme5500_preloader_section'. Also, let zero_bss use (implicit?)
413        __SBSSxxx__ symbols.
414
4152005-11-03      Ralf Corsepius <ralf.corsepius@rtems.org>
416
417        PR 844/bsps
418        * startup/bspstart.c: Include <rtems/bspIo.h>.
419
4202005-07-28      Eric Norum <norume@aps.anl.gov>
421
422        * startup/bspstart.c: Changes provided by Phillip Sorensen
423        <pas37@cornell.edu> to get MVME550 BSP running.  Corresponding
424        change made to ../shared/clock/p_clock.c.
425
4262005-07-25      Eric Norum <norume@aps.anl.gov>
427
428        * startup/linkcmds: Add .gnu.linkonce.b. and .gnu.linkonce.sb. regions.
429
4302005-05-26      Ralf Corsepius <ralf.corsepius@rtems.org>
431
432        * include/bsp.h: New header guard.
433
4342005-05-20      Jennifer Averett <jennifer@OARcorp.com>
435
436        PR 702/bsps
437        * include/tm27.h: Add better tm27.h support. Uses decrementer register
438        interrupt -- copied from psim.
439
4402005-05-17      Jennifer Averett <jennifer.averett@oarcorp.com>
441
442        * irq/GT64260Int.c, irq/irq.c, irq/irq.h: Modified to use rtems/irq.h.
443
4442005-05-12      Jennifer Averett <jennifer.averett@oarcorp.com>
445
446        * README.VME, include/bsp.h, irq/irq.h, network/GT64260eth.c,
447        pci/detect_host_bridge.c, pci/gtpcireg.h, pci/pci.c, pci/pci.h,
448        pci/pci_interface.c, pci/pcifinddevice.c:
449        Submitted by Kate Feng <feng1@bnl.gov> as RTEMS-MVME5500 BSP v1.1 release.
450        Modifications made to merge this release with the current tree.
451
4522005-05-10      Jennifer Averett <jennifer.averett@oarcorp.com>
453
454        * network/GT64260eth.c: Fixed warning.
455        *  pci/pci.c, pci/pci.h: Modified to depend upon rtems/pci.h
456
4572005-05-04      Jennifer Averett <jennifer.averett@oarcorp.com>
458
459        * pci/pci.c, pci/pci.h, startup/bspstart.c: Name change to support
460        common PCI interface
461
4622005-04-15      Joel Sherrill <joel@OARcorp.com>
463
464        * GT64260/GT64260TWSI.c, GT64260/GT64260TWSI.h, irq/GT64260Int.c,
465        network/GT64260eth.c, pci/pci.c, startup/bspclean.c,
466        startup/reboot.c: Fix warnings.
467
4682005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
469
470        PR 779/bsp
471        * irq/irq.c, irq/irq.h, irq/irq_init.c, network/GT64260eth.c: add
472        parameter to new exception interrupt handlers in powerpc bsps
473
4742005-04-15      Jennifer Averett <jennifer.averett@oarcorp.com>
475
476        * startup/linkcmds: add missing section to link cmds
477
4782005-03-14      Joel Sherrill <joel@OARcorp.com>
479
480        * pci/pci.h, pci/pcifinddevice.c: Continue PCI API unification. All use
481        pci_find_device().
482
4832005-03-04      Joel Sherrill <joel@OARcorp.com>
484
485        * pci/pci.c, pci/pci.h, startup/bspstart.c: Make PCI initialize
486        function part of the unified PCI API as pci_initialize().
487
4882005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
489
490        * startup/bspstart.c: include <rtems/powerpc/powerpc.h>.
491        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
492        CPU_MINIMUM_STACK_FRAME_SIZE.
493
4942005-02-17      Ralf Corsepius <ralf.corsepius@rtems.org>
495
496        * start/start.S: include <rtems/powerpc/powerpc.h>.
497        Use PPC_MINIMUM_STACK_FRAME_SIZE instead of
498        CPU_MINIMUM_STACK_FRAME_SIZE.
499
5002005-02-16      Ralf Corsepius <ralf.corsepius@rtems.org>
501
502        * configure.ac: Remove argument from RTEMS_PPC_EXCEPTIONS.
503
5042005-02-11      Ralf Corsepius <ralf.corsepius@rtems.org>
505
506        * Makefile.am: Merge-in wrapup/Makefile.am.
507        * wrapup/Makefile.am: Remove.
508        * configure.ac: Reflect changes above.
509
5102005-01-26      Joel Sherrill <joel@OARcorp.com>
511
512        * irq/irq.c, startup/bspstart.c: Now compiles with gcc 4.x.
513
5142005-01-22      Ralf Corsepius <ralf.corsepius@rtems.org>
515
516        * tod/todcfg.c: size_t RTC_Count.
517
5182005-01-07      Ralf Corsepius <ralf.corsepius@rtems.org>
519
520        * Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
521
5222005-01-02      Ralf Corsepius <ralf.corsepius@rtems.org>
523
524        * Makefile.am, wrapup/Makefile.am: Remove build-variant support.
525
5262004-10-26      Ralf Corsepius <ralf_corsepius@rtems.org>
527
528        * Makefile.am: Fix network_CPPFLAGS. Reformat.
529        * network/GT64260eth.c: Properly prototype GT64260eth_err().
530
5312004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
532
533        * network/GT64260eth.c: Remove ether_sprintf.
534
5352004-10-21      Joel Sherrill <joel@OARcorp.com>
536
537        * startup/bspstart.c: Remove warnings for variables only used when
538        certain conditionals are enabled..
539
5402004-10-21      Joel Sherrill <joel@OARcorp.com>
541
542        * Makefile.am: Add missing network_CPPFLAGS.
543
5442004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
545
546        * Makefile.am: Build networking.rel conditionally.
547        Reformat. Cosmetics.
548        * wrapup/Makefile.am: Build networking.rel conditionally.
549        Add libcpu and exception handling rels.
550        * startup/bspstart.c: Eliminate RTEMS fixed size types.
551
5522004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
553
554        * startup/bspstart.c: Remove BSP_build_date.
555
5562004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
557
558        * GT64260/Makefile.am, clock/Makefile.am, console/Makefile.am,
559        include/Makefile.am, irq/Makefile.am, network/Makefile.am,
560        pci/Makefile.am, start/Makefile.am, startup/Makefile.am,
561        tod/Makefile.am, vectors/Makefile.am, vme/Makefile.am:
562        Remove (obsolete).
563
5642004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
565
566        * configure.ac: Adaptations to rtems-4.7.
567        * Makefile.am, wrapup/Makefile.am: Reworked.
568
5692004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
570
571        * start/preload.S, start/start.S, include/bsp.h,
572        vectors/exceptionhandler.c, startup/bspstart.c: Misc.
573        adaptations to rtems-4.7.
574
5752004-10-21      Ralf Corsepius <ralf_corsepius@rtems.org>
576
577        * configure: Remove (Bogus).
578        * include/tm27.h: New (Stub).
579
5802004-10-20      Joel Sherrill <joel@OARcorp.com>
581
582        * README, configure.ac, GT64260/Makefile.am, include/bsp.h,
583        irq/Makefile.am, irq/irq.c, irq/irq.h, irq/irq_init.c,
584        network/GT64260ethreg.h, pci/pci.c, startup/bspstart.c: CVS Id string
585        and license corrected.
586        * GT64260/Makefile.in, clock/Makefile.in, console/Makefile.in,
587        include/Makefile.am, include/Makefile.in, irq/Makefile.in,
588        network/Makefile.in, pci/Makefile.in, start/Makefile.in,
589        startup/Makefile.in, vectors/Makefile.in, vme/Makefile.in,
590        wrapup/Makefile.in: Removed.
591
5922004-10-20  Kate Feng <feng1@bnl.gov>
593
594        * New BSP.
Note: See TracBrowser for help on using the repository browser.