Changeset 1c54724 in rtems
- Timestamp:
- 04/01/04 10:11:08 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b7768c55
- Parents:
- 8da27232
- Location:
- c/src/lib/libbsp/powerpc/score603e
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/powerpc/score603e/ChangeLog
r8da27232 r1c54724 1 2004-04-01 Ralf Corsepius <ralf_corsepius@rtems.org> 2 3 * vectors/vectors.S: Include <rtems/asm.h> instead of <asm.h>. 4 * startup/genpvec.c: Include <rtems/chain.h> instead of <chain.h>. 5 * include/bsp.h: Include <rtems/clockdrv.h> instead of <clockdrv.h>. 6 * include/bsp.h: Include <rtems/console.h> instead of <console.h>. 7 * include/bsp.h: Include <rtems/iosupp.h> instead of <iosupp.h>. 8 * console/consolebsp.h: Include <rtems/ringbuf.h> instead of <ringbuf.h>. 9 * startup/vmeintr.c: Include <rtems/vmeintr.h> instead of <vmeintr.h>. 10 1 11 2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> 2 12 -
c/src/lib/libbsp/powerpc/score603e/console/consolebsp.h
r8da27232 r1c54724 17 17 18 18 #include <rtems.h> 19 #include <r ingbuf.h>19 #include <rtems/ringbuf.h> 20 20 21 21 #ifdef __cplusplus -
c/src/lib/libbsp/powerpc/score603e/include/bsp.h
r8da27232 r1c54724 41 41 #else 42 42 #include <rtems.h> 43 #include < console.h>44 #include < clockdrv.h>45 #include < iosupp.h>43 #include <rtems/console.h> 44 #include <rtems/clockdrv.h> 45 #include <rtems/iosupp.h> 46 46 47 47 /* -
c/src/lib/libbsp/powerpc/score603e/startup/genpvec.c
r8da27232 r1c54724 15 15 16 16 #include <bsp.h> 17 #include < chain.h>17 #include <rtems/chain.h> 18 18 #include <assert.h> 19 19 -
c/src/lib/libbsp/powerpc/score603e/startup/vmeintr.c
r8da27232 r1c54724 15 15 #include <rtems.h> 16 16 #include <bsp.h> 17 #include < vmeintr.h>17 #include <rtems/vmeintr.h> 18 18 19 19 /*PAGE -
c/src/lib/libbsp/powerpc/score603e/vectors/vectors.S
r8da27232 r1c54724 27 27 28 28 #include <bsp.h> 29 #include < asm.h>29 #include <rtems/asm.h> 30 30 31 31 #ifndef PPC_VECTOR_FILE_BASE
Note: See TracChangeset
for help on using the changeset viewer.