source: rtems/c/src/lib/libbsp/powerpc/shared/ChangeLog @ c25405f

4.104.114.84.95
Last change on this file since c25405f was c25405f, checked in by Joel Sherrill <joel.sherrill@…>, on 02/08/04 at 20:12:19

2004-02-08 Joel Sherrill <joel@…>

  • vectors/vectors.h: Force globalExceptHdl into bss section.
  • Property mode set to 100644
File size: 19.9 KB
Line 
12004-02-08      Joel Sherrill <joel@OARcorp.com>
2
3        * vectors/vectors.h: Force globalExceptHdl into bss section.
4
52004-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * Makefile.am: Don't install, just distribute the files.
8
92004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10
11        * Makefile.am: Remove SUBDIRS.
12
132004-02-03      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
14
15        * Makefile.am: Merge-in bootloader/Makefile.am, clock/Makefile.am,
16        console/Makefile.am, include/Makefile.am, irq/Makefile.am,
17        motorola/Makefile.am, openpic/Makefile.am, pci/Makefile.am,
18        residual/Makefile.am, start/Makefile.am, startup/Makefile.am,
19        vectors/Makefile.am, vme/Makefile.am. Use automake compilation rules.
20        * bootloader/Makefile.am, clock/Makefile.am, console/Makefile.am,
21        include/Makefile.am, irq/Makefile.am, motorola/Makefile.am,
22        openpic/Makefile.am, pci/Makefile.am, residual/Makefile.am,
23        start/Makefile.am, startup/Makefile.am, vectors/Makefile.am,
24        vme/Makefile.am: Remove.
25
262004-01-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
27
28        * console/Makefile.am: Add PREINSTALL_DIRS.
29        * irq/Makefile.am: Add PREINSTALL_DIRS.
30        * motorola/Makefile.am: Add PREINSTALL_DIRS.
31        * openpic/Makefile.am: Add PREINSTALL_DIRS.
32        * pci/Makefile.am: Add PREINSTALL_DIRS.
33        * residual/Makefile.am: Add PREINSTALL_DIRS.
34        * vectors/Makefile.am: Add PREINSTALL_DIRS.
35
362004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
37
38        * console/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
39        Add PRE/TMPINSTALL_FILES to CLEANFILES.
40        * irq/Makefile.am: Ditto.
41        * motorola/Makefile.am: Ditto.
42        * openpic/Makefile.am: Ditto.
43        * pci/Makefile.am: Ditto.
44        * residual/Makefile.am: Ditto.
45        * vectors/Makefile.am: Ditto.
46
472003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
48
49        * console/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
50        * irq/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
51        * motorola/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
52        * openpic/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
53        * pci/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
54        * residual/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
55        * vectors/Makefile.am: Use mkdir_p. Remove dirs from PRE/TMPINSTALL_FILES.
56
572003-12-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
58
59        * start/Makefile.am: Misc cleanups and fixes.
60        * startup/Makefile.am: Misc cleanups and fixes.
61
622003-12-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
63
64        * start/Makefile.am: Remove empty lines.
65        * bootloader/Makefile.am: Put all files into EXTRA_DIST.
66        * vme/Makefile.am: Ditto.
67        * console/Makefile.am: Move H_FILES to include_bsp_HEADERS.
68        Add preinstallation dirstamp support.
69        * irq/Makefile.am: Ditto.
70        * motorola/Makefile.am: Ditto.
71        * openpic/Makefile.am: Ditto.
72        * pci/Makefile.am: Ditto.
73        * residual/Makefile.am: Ditto.
74        * vectors/Makefile.am: Ditto.
75        * Makefile.am: Remove empty lines.
76        * clock/Makefile.am: Ditto.
77        * include/Makefile.am: Ditto.
78        * startup/Makefile.am: Ditto.
79
802003-10-22      Joel Sherrill <joel@OARcorp.com>
81
82        PR 510/bsps
83        * irq/irq.h: Add extern C wrapper.
84
852003-09-29      Till Strauman <strauman@slac.stanford.edu>
86
87        PR 497/bsps
88        * bootloader/head.S: Disable code that returned to the firmware when
89        the loader starts.
90
912003-09-26      Till Strauman <strauman@slac.stanford.edu>
92
93        PR 496/bsps
94        * startup/sbrk.c: New file.
95        * startup/bspstart.c: This patch implements 'sbrk'
96        for the powerpc-shared BSP to work around what's known as the
97        '32Mb problem' in combination with run-time loaded code.
98        GCC normally generates (PowerPC) code doing 'short jumps' which
99        requires all text segments being in the same 32Mb area of memory.
100        However, some run-time loaders use (e.g. heap-) memory violating the
101        stated limitation on hardware with more than 32Mb of memory.
102        (NOTE: portable loaders are probably not even aware of this
103        GCC/CPU specific problem.)
104
105        This patch implements a simple workaround: At boot time, the system is
106        only provided with 32Mb of memory. The user is supposed to load all
107        necessary modules prior to that limit being exhausted. Once that
108        happens, newlib/malloc end up trying to 'sbrk()' for more memory and
109        the implementation provided by this patch will then make the rest of
110        the physical memory available.
111
1122003-09-26  Till Straumann <strauman@slac.stanford.edu>
113
114        PR 497/bsps
115        * bootloader/head.S: Let the bootloader shut down the
116        network interface. NOTE: this involves a PPCBug system
117        call and will hence fail if other software is used
118        to boot. Need to #undef USE_PPCBUG in such cases!
119 
1202003-09-04      Joel Sherrill <joel@OARcorp.com>
121
122        * bootloader/bootldr.h, bootloader/em86.c, bootloader/em86real.S,
123        bootloader/exception.S, bootloader/head.S, bootloader/lib.c,
124        bootloader/misc.c, bootloader/mm.c, bootloader/pci.c,
125        clock/p_clock.c, console/console.c, console/consoleIo.h,
126        console/inch.c, console/keyboard.h, console/polled_io.c,
127        include/bsp.h, irq/i8259.c, irq/irq.c, irq/irq.h, irq/irq_asm.S,
128        irq/irq_init.c, motorola/motorola.c, motorola/motorola.h,
129        openpic/openpic.c, openpic/openpic.h, pci/pci.c, residual/residual.c,
130        start/start.S, startup/bspstart.c, vectors/vectors.h,
131        vectors/vectors_init.c: URL for license changed.
132
1332003-08-21      Till Strauman <strauman@slac.stanford.edu>
134
135        PR 456/bsps
136        * irq/irq.c: Fix race condition when installing an ISR.
137
1382003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
139
140        * Makefile.am: Reflect having moved automake/.
141        * bootloader/Makefile.am: Reflect having moved automake/.
142        * clock/Makefile.am: Reflect having moved automake/.
143        * console/Makefile.am: Reflect having moved automake/.
144        * include/Makefile.am: Reflect having moved automake/.
145        * irq/Makefile.am: Reflect having moved automake/.
146        * motorola/Makefile.am: Reflect having moved automake/.
147        * openpic/Makefile.am: Reflect having moved automake/.
148        * pci/Makefile.am: Reflect having moved automake/.
149        * residual/Makefile.am: Reflect having moved automake/.
150        * start/Makefile.am: Reflect having moved automake/.
151        * startup/Makefile.am: Reflect having moved automake/.
152        * vectors/Makefile.am: Reflect having moved automake/.
153        * vme/Makefile.am: Reflect having moved automake/.
154
1552003-08-05      Till Strauman <strauman@slac.stanford.edu>
156
157        PR 437/bsps
158        * irq/irc.c: calls to bspIo/printk must not use '%i' format which is
159        apparently not supported
160        * pci/pci.c: calls to bspIo/printk must not use '%i' format which is
161        apparently not supported
162
1632003-07-18      Till Straumann <strauman@slac.stanford.edu>
164
165        PR 288/rtems
166        * irq/irq_asm.S, startup/bspstart.c: _ISR_Nest_level is now properly
167        maintained and any BSP which does not do so will trip a panic in the
168        shared code.
169
1702003-07-18      Till Straumann <strauman@slac.stanford.edu>
171
172        PR 415/bsps
173        * pci/detect_raven_bridge.c, startup/bspstart.c:
174        This patch reverts enabling MCP interrupts for the motorola_powerpc
175        BSPs. REASON: pci config space scanning (as e.g. done by the DEC
176        Ethernet driver) would raise machine check exceptions.
177
1782003-07-16      Greg Menke <gregory.menke@gsfc.nasa.gov>
179
180        PR 428/bsps
181        PR 432/bsps
182        * bootloader/pci.c: Re-instated code that prevents remapping small
183        IO regions, which if remapped would cause i8259 registers to move
184        out from under the #define'd base addresses.
185        * startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
186        megs, I incorrectly had extended it which would cause problems with
187        PCI devices that defined prefetchable memory.
188
1892003-07-16      Greg Menke <gregory.menke@gsfc.nasa.gov>
190        PR 432/bsps
191        * bootloader/pci.c: Re-instated code that prevents remapping small
192        IO regions, which if remapped would cause i8259 registers to move
193        out from under the #define'd base addresses.
194        * startup/bspstart.c: Reduced BAT2 PCI memory allocation to 256
195        megs, I incorrectly had extended it which would cause problems with
196        PCI devices that defined prefetchable memory.
197       
1982003-06-13      Greg Menke <gregory.menke@gsfc.nasa.gov>
199
200        PR 405/bsps
201        * bootloader/pci.c: Added support for configuring devices for pci
202        busses > 0
203        * pci/pci.c, pci/pci.h: Added FixupPCI() to store vectors in the
204        INTERRUPT_LINE register of pci devices any # of hops away
205        from the host processor.
206        * motorola/motorola.c, motorola/motorola.h: Added interrupt
207        routing tables in support of FixupPCI.  This is board-specific,
208        each board will have to supply information for FixupPCI() to do
209        anything for it.
210        * startup/bspstart.c: Extended bat2 to cover entire PCI address space.
211        * irq/irq.c, irq/irq.h: Added support for shared interrupts.
212        Existing single hander vectors are undisturbed, a new function
213        added to allow adding/removing handlers from a vector.
214
2152003-06-13  Till Straumann <strauman@slac.stanford.edu>
216
217        PR 415/bsps
218        * include/bsp.h, pci/detect_raven_bridge.c, startup/bspstart.c:
219        Support enabling MCP exceptions on the host bridge. This can
220        be used for memory probing on the VME bus.
221
2222003-04-15      Joel Sherrill <joel@OARcorp.com>
223
224        PR 386/bsps
225        * vme/vmeconfig.c: Removed declaration of _BSP_vme_bridge_irq.
226
2272003-04-10  Till Straumann <strauman@slac.stanford.edu>
228
229        PR 379/bsps
230        * console/polled_io.c: libcpu provides 'printk' already.
231        Therefore, the implementation in this file was removed (still
232        used for the bootloader, though).  It now provides BSP_output_char()
233        for libcpu's printk().
234        * console/uart.c, console/uart.h: BSP_output_char_via_serial()
235        prototype changed to match the BSP_output_char_function_type.  Note
236        that the motorola BSPs use polled-io for the output_char routine, not
237        the uart.c version. The latter can be used be other BSPs however
238        (e.g. SVGM).
239        * console/console.c, console/consoleIo.h, console/polled_io.c,
240        irq/irq_init.c, openpic/openpic.c, pci/detect_raven_bridge.c:
241        Unfortunately, the supported 'printk' format string subset of the
242        polled-io and libcpu implementations are different - hence, a few
243        format strings in the ppc/shared BSP were changed.
244
2452003-04-10      Joel Sherrill <joel@OARcorp.com>
246
247        PR 383/bsps
248        * irq/irq.c: Fix bug introduced by conflicts in previous patches.
249
2502003-03-25  Till Straumann <strauman@slac.stanford.edu>
251
252        PR 360/bsps
253        * irq/irq.c, irq/irq_init.c, openpic/openpic.c, openpic/openpic.h:
254        BSP code had set the task priority register multiple times of
255        the OpenPIC instead of setting the individual source priorities.
256        This patch adds openpic_get_source_priority() and
257        openpic_set_source_priority() calls and lets IRQ management code
258        use them.
259
2602003-03-25  Till Straumann <strauman@slac.stanford.edu>
261
262        PR 349/bsps
263        * irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
264        on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
265        code on non-VME BSPs without triggering linkage of the vmeUniverse
266        driver.
267
2682003-03-25  Till Straumann <strauman@slac.stanford.edu>
269
270        PR 349/bsps
271        * irq/irq.c, vme/VME.h, vme/vmeconfig.c: Fixes library dependency
272        on the vmeUniverse driver. It is now possible to use the ppc/shared/irq
273        code on non-VME BSPs without triggering linkage of the vmeUniverse
274        driver.
275
2762003-03-18  Till Straumann <strauman@slac.stanford.edu>
277
278        PR 356/bsps
279        This patch makes RTEMS/powerpc/shared EABI compliant.
280        * irq/irq_init.c, start/Makefile.am, start/start.S, startup/bspstart.c,
281        startup/pgtbl_setup.c, vectors/vectors.h, vectors/vectors_init.c:
282        zero_bss() should clear not only bss but sbss and sbss2
283        also (this is probably a bugfix, as sbss/sbss2 are
284        probably used even if -msdata=eabi is not specified).
285        * start/rtems_crti.S: New file which must
286        be linked immediately after ecrti.o. rtems_crti.o contains
287        a code snippet who lets __init() return immediately. Also,
288        a new entry point '_init' to the C++ Ctors is generated
289        for use by the RTEMS Thread_Handler.
290
2912003-02-20      Till Straumann <strauman@slac.stanford.edu>
292
293        PR 349/bsps
294        * console/polled_io.c, console/reboot.c, irq/irq.c, irq/irq_asm.S,
295        irq/irq_init.c, openpic/Makefile.am, startup/linkcmds,
296        vectors/vectors.S, vectors/vectors_init.c:
297          - install the 'openpic.h' and 'pci.h' headers
298          - avoid a name clash by renaming 'vsprintf' & friends
299            to 'k_vsprintf' etc.
300          - let 'rtemsReboot' print a stack trace (in case an 'assert' failed)
301          - irq.c:
302             * fix: remove implicit assumption that ISA interrupt vectors start
303                    at 0
304             * add BSP hook to let a VME interrupt acknowledge the PCI/openpic
305               IRQ. (SEE ALSO THE ppc-sharedbsp-vme.diff patch)
306          - fix: EABI compliance; isr/exception lowlevel handlers must not
307                 clobber R2 or R13
308          - fix: openpic_init was called with the polarity/senses tables
309                 swapped (fixed wrong order of arguments)
310          - cosmetics: use new _read_SPRXX() _write_SPRXX() macros
311
3122003-02-20      Till Straumann <strauman@slac.stanford.edu>
313
314        PR 349/bsps
315        * startup/pgtbl_setup.c, startup/pgtbl_activate.c: New files
316        * startup/Makefile.am, startup/bspstart.c, startup/linkcmds:
317        Let the powerpc/shared (+derived) BSPs use pagetable support
318        from libcpu.
319
3202003-02-20      Till Straumann <strauman@slac.stanford.edu>
321
322        PR 349/bsps
323        * vme/.cvsignore, vme/Makefile.am, vme/VME.h, vme/VMEConfig.h,
324        vme/vmeconfig.c: Add glue to the powerpc/shared BSP to use
325        the vmeUniverse VME-PCI bridge driver.
326
3272003-02-20      Till Straumann <strauman@slac.stanford.edu>
328
329        PR 349/bsps
330        * console/console.c, console/uart.c, console/uart.h: implement
331        IOCTLs for the serial (UART) console to install/retrieve a BREAK-IRQ
332        callback.  The callback routine (if installed) is invoked from the
333        UART ISR when a BREAK interrupt is detected.  This can be used
334        e.g. to enforce a "hotkey" reboot a la vxWorks Ctrl-X (although we
335        use the serial line break condition) NOTE: The callback runs in
336        ISR context. 
337
3382003-01-20      Joel Sherrill <joel@OARcorp.com>
339
340        * startup/linkcmds*: Add FreeBSD sysctl() sections.
341
3422002-12-08      Greg Menke <gregory.menke@gsfc.nasa.gov>
343 
344        * bootloader/head.S: Added support for optional debug via PPCbug.
345        Also turn off mmu/caches for the bootstrap phase, which seems to
346        cause trouble with the 603.  The cpu init functions in the bsp
347        get all that stuff going properly.
348
3492002-12-19      Joel Sherrill <joel@OARcorp.com>
350
351        * console/console.c: Removed __assert() which conflicts with newlib.
352
3532002-11-17      Greg Menke <gregory.menke@gsfc.nasa.gov>
354
355        * irq/irq_init.c, motorola/motorola.c: Support for MTX603e.
356
3572002-10-31      Joel Sherrill <joel@OARcorp.com>
358
359        * bootloader/em86.c, console/inch.c, console/polled_io.c, irq/irq.c,
360        motorola/motorola.c, pci/detect_raven_bridge.c,
361        vectors/vectors_init.c: Removed warnings.
362
3632002-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
364
365        * bootloader/em86real.S: Fix syntax error in comment near line 1185.
366
3672001-05-14      Till Straumann <strauman@slac.stanford.edu>
368
369        * bootloader/misc.c, console/Makefile.am, console/console.c,
370        console/consoleIo.h, console/inch.c, console/polled_io.c,
371        console/uart.c, console/uart.h, include/bsp.h, irq/Makefile.am,
372        irq/irq.c, irq/irq.h, irq/irq_init.c, openpic/openpic.c,
373        openpic/openpic.h, pci/Makefile.am, pci/pci.c, pci/pci.h,
374        residual/Makefile.am, start/start.S, startup/bspstart.c,
375        vectors/vectors.S, vectors/vectors.h, vectors/vectors_init.c:
376        Per PR216, "libbsp/powerpc/shared" BSP has been modified considerably
377        with the goal to make it more flexible and reusable by other
378        BSPs. The main strategies were:
379            - eliminate hardcoded base addresses; devices use offsets
380              and a BSP defined base address.
381            - separate functionality into different files (e.g. reboot from
382              inch.c to reboot.c) which can be overridden by a 'derived' BSP.
383            - separate initialization code into separate files (e.g.  PCI
384              bridge detection/initialization was separated from the more
385              generic PCI access routines), also to make it easier for
386              'derived' BSPs to substitute their own initialization code.
387        There are also a couple of enhancements and fixes:
388            - IRQ handling code now has a hook for attaching a VME bridge.
389            - OpenPIC is now explicitely initialized (polarities, senses).
390              Eliminated the implicit assumption on the presence of an ISA PIC.
391            - UART and console driver now supports more than 1 port. The current
392              maximum of 2 can easily be extended by enlarging a table (it
393              would even be easier if the ISR API was not broken by design).
394            - fixed polled_io.c so it correctly supports console on COM2
395            - fixed TLB invalidation code (start.S).
396            - exception handler prints a stack backtrace.
397            - added BSP_pciFindDevice() to scan the pci bus for a particular
398              vendor/device/instance.
399
4002001-05-09      Joel Sherrill <joel@OARcorp.com>
401
402        * startup/linkcmds: In support of gcc 3.1, added one of more
403        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
404        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
405        and direction of segments to memory regions may also have been
406        addressed.  This was a sweep across all BSPs.
407 
4082002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
409
410        * bootloader/exception.S: Reflect changes to <rtems/score/cpu.h>.
411        * bootloader/head.S: Ditto.
412        * bootloader/misc.c: Ditto.
413        * console/polled_io.c: Ditto.
414        * irq/irq.c: Ditto.
415        * irq/irq_asm.S: Ditto.
416        * irq/irq_init.c: Include <rtems/bspIo.h>.
417        * start/start.S: Reflect changes to <rtems/score/cpu.h>.
418        * vectors/vectors.S: Ditto.
419
4202002-04-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * startup/bspstart.c: Include <libcpu/cpuIdent.h>.
423
4242001-04-08      Joel Sherrill <joel@OARcorp.com>
425
426        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
427 
4282002-04-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
429
430        * residual/residual.c: Include <string.h>.
431        * vectors/vectors_init.c: Include <rtems/bspIo.h> for printk.
432        * bootloader/mm.c: Ditto.
433        * bootloader/pci.c: Ditto.
434        * console/console.c: Ditto.
435        * openpic/openpic.c: Ditto.
436
4372002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
438
439        * bootloader/Makefile.am: Remove AUTOMAKE_OPTIONS.
440        * Makefile.am: Remove AUTOMAKE_OPTIONS.
441        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
442        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
443        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
444        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
445        * motorola/Makefile.am: Remove AUTOMAKE_OPTIONS.
446        * openpic/Makefile.am: Remove AUTOMAKE_OPTIONS.
447        * pci/Makefile.am: Remove AUTOMAKE_OPTIONS.
448        * residual/Makefile.am: Remove AUTOMAKE_OPTIONS.
449        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
450        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
451        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
452
4532001-11-28      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
454
455        * include/Makefile.am: Use _HEADER instead of H_FILES.
456        * irq/Makefile.am: Ditto.
457        * openpic/Makefile.am: Ditto.
458        * include/bsp.h: Include <bspopts.h>.
459
4602001-10-25      Joel Sherrill <joel@OARcorp.com>
461
462        * startup/linkcmds: Added _init and _fini.
463
4642001-10-12      Joel Sherrill <joel@OARcorp.com>
465
466        * clock/p_clock.c, startup/bspstart.c: Fixed typo.
467
4682001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
469
470        * console/Makefile.am: Use 'PREINSTALL_FILES ='.
471        * residual/Makefile.am: Use 'PREINSTALL_FILES ='.
472        * irq/Makefile.am: Use 'PREINSTALL_FILES ='.
473        * motorola/Makefile.am: Use 'PREINSTALL_FILES ='.
474        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
475        * pci/Makefile.am: Use 'PREINSTALL_FILES ='.
476        * openpic/Makefile.am: Use 'PREINSTALL_FILES ='.
477
4782001-05-14      Tom Armistead <tom_armistead@phx.mcd.mot.com>
479
480        * start/start.S: Increased BAT0 mapping of RAM from 64 meg to
481        256 meg to allow operation on boards with larger RAM sizes.
482        * vectors/vectors_init.c: Modified to call 'generic' powerpc
483        vector function (mpc60x_vector_is_valid) instead of MPC750
484        specific function to allow operation on boards with CPUs other
485        than the MPC750.
486
4872001-03-30      Eric Valette <valette@crf.canon.fr>
488
489        * Makefile.am, console/consoleIo.h, include/bsp.h:
490        These modifications are part of the conversion of the
491        mpc8xx CPU to the "new exception processing model."
492
4932000-11-01      Joel Sherrill <joel@OARcorp.com>
494
495        * startup/bspstart.c: assoc.h, error.h, libio_.h, libio.h,
496        and libcsupport.h moved from libc to lib/include/rtems and
497        now must be referenced as <rtems/XXX.h>.   Header file order
498        was cleaned up while doing this.
499
5002000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
501
502        * startup/linkcmds: Added lines so DWARF debug information
503        would be available.  Otherwise gdb complains that the offsets
504        for the debug info are incorrect and doesn't load the files.
505
5062000-09-05      Joel Sherrill <joel@OARcorp.com>
507
508        * start/start.S: Include proper files to compile.
509
5102000-08-10      Joel Sherrill <joel@OARcorp.com>
511
512        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.