source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/ChangeLog @ 8730f45

4.104.114.84.95
Last change on this file since 8730f45 was 8730f45, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/21/02 at 12:19:27

2002-10-21 Ralf Corsepius <corsepiu@…>

  • .cvsignore: Reformat. Add autom4te*cache. Remove autom4te.cache.
  • Property mode set to 100644
File size: 7.8 KB
Line 
12002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * .cvsignore: Reformat.
4        Add autom4te*cache.
5        Remove autom4te.cache.
6
72002-08-21      Joel Sherrill <joel@OARcorp.com>
8
9        * bsp_specs: Added support for -nostdlibs.
10
112002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
12
13        * bootloader/Makefile.am: Fix that crappy Makefile.am once again.
14
152002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
16
17        * bootloader/Makefile.am: Use .$(OBJEXT) instead of .o.
18        * clock/Makefile.am: Use .$(OBJEXT) instead of .o.
19        * console/Makefile.am: Use .$(OBJEXT) instead of .o.
20        * irq/Makefile.am: Use .$(OBJEXT) instead of .o.
21        * motorola/Makefile.am: Use .$(OBJEXT) instead of .o.
22        * openpic/Makefile.am: Use .$(OBJEXT) instead of .o.
23        * pci/Makefile.am: Use .$(OBJEXT) instead of .o.
24        * residual/Makefile.am: Use .$(OBJEXT) instead of .o.
25        * start/Makefile.am: Use .$(OBJEXT) instead of .o.
26        * startup/Makefile.am: Use .$(OBJEXT) instead of .o.
27        * vectors/Makefile.am: Use .$(OBJEXT) instead of .o.
28        * wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
29
302002-07-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
31
32        * bootloader/Makefile.am: Install bootloader.o.
33        Install bootloader/bootloader.ppcboot.lds.
34
352002-07-24      Joel Sherrill <joel@OARcorp.com>
36
37        * vectors/Makefile.am: Install bsp/vectors.h.
38
392002-07-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
40
41        * include/Makefile.am: Fix preinstallation.
42        * bootloader: Eliminate $(INCLUDES).
43
442002-07-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
45
46        * start/Makefile.am: Eliminate PGM.
47        Add bsplib_DATA = $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o.
48
492002-07-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
50
51        * startup/Makefile.am: Add bsplib_DATA = linkcmds.
52
532002-07-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
54
55        * wrapup/Makefile.am: Eliminate TMPINSTALL_FILES.
56        Remove $(OBJS) from all-local.
57
582002-06-29      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
59
60        * wrapup/Makefile.am: Remove preinstallation of libbsp.a,
61
622001-05-14      Till Straumann <strauman@slac.stanford.edu>
63
64        * bootloader/Makefile.am, console/Makefile.am, pci/Makefile.am:
65        Per PR216, "libbsp/powerpc/shared" BSP has been modified considerably
66        with the goal to make it more flexible and reusable by other
67        BSPs. The main strategies were:
68            - eliminate hardcoded base addresses; devices use offsets
69              and a BSP defined base address.
70            - separate functionality into different files (e.g. reboot from
71              inch.c to reboot.c) which can be overridden by a 'derived' BSP.
72            - separate initialization code into separate files (e.g.  PCI
73              bridge detection/initialization was separated from the more
74              generic PCI access routines), also to make it easier for
75              'derived' BSPs to substitute their own initialization code.
76        There are also a couple of enhancements and fixes:
77            - IRQ handling code now has a hook for attaching a VME bridge.
78            - OpenPIC is now explicitely initialized (polarities, senses).
79              Eliminated the implicit assumption on the presence of an ISA PIC.
80            - UART and console driver now supports more than 1 port. The current
81              maximum of 2 can easily be extended by enlarging a table (it
82              would even be easier if the ISR API was not broken by design).
83            - fixed polled_io.c so it correctly supports console on COM2
84            - fixed TLB invalidation code (start.S).
85            - exception handler prints a stack backtrace.
86            - added BSP_pciFindDevice() to scan the pci bus for a particular
87              vendor/device/instance.
88
892001-05-09      Joel Sherrill <joel@OARcorp.com>
90
91        * startup/linkcmds: In support of gcc 3.1, added one of more
92        of the sections .jcr, .rodata*, .data.*, .gnu.linkonce.s2.*,
93        .gnu.linkonce.sb2.*, and .gnu.linkonce.s.*.  Spacing corrections
94        and direction of segments to memory regions may also have been
95        addressed.  This was a sweep across all BSPs.
96 
972001-04-08      Joel Sherrill <joel@OARcorp.com>
98
99        * startup/linkcmds: Per PR170, PR171, and PR172 add .eh_frame
100 
1012002-04-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
102
103        * bootloader/Makefile.am: Use automake-1.6 AS compilation rules.
104
1052001-04-02      Joel Sherrill <joel@OARcorp.com>
106
107        * bootloader/Makefile.am: Use AM_CCASFLAGS instead of AM_ASFLAGS.
108
1092002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
110
111        * configure.ac:
112        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
113        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
114        * bootloader/Makefile.am: Remove AUTOMAKE_OPTIONS.
115        * Makefile.am: Remove AUTOMAKE_OPTIONS.
116        * clock/Makefile.am: Remove AUTOMAKE_OPTIONS.
117        * console/Makefile.am: Remove AUTOMAKE_OPTIONS.
118        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
119        * irq/Makefile.am: Remove AUTOMAKE_OPTIONS.
120        * motorola/Makefile.am: Remove AUTOMAKE_OPTIONS.
121        * openpic/Makefile.am: Remove AUTOMAKE_OPTIONS.
122        * pci/Makefile.am: Remove AUTOMAKE_OPTIONS.
123        * residual/Makefile.am: Remove AUTOMAKE_OPTIONS.
124        * start/Makefile.am: Remove AUTOMAKE_OPTIONS.
125        * startup/Makefile.am: Remove AUTOMAKE_OPTIONS.
126        * vectors/Makefile.am: Remove AUTOMAKE_OPTIONS.
127        * wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
128
1292001-12-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
130
131        * configure.ac: Remove RTEMS_ENABLE_NETWORKING.
132
1332001-11-30      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
134
135        * configure.ac: Introduce RTEMS_BSP_CONFIGURE.
136
1372001-11-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
138
139        * Makefile.am: Add @exceptions@ to SUBDIRS;
140        Remove need_motorola_powerpc.
141        * configure.ac: Apply RTEMS_BSPOPTS_*(*) to merge-in settings from
142        make/custom/mcp750.cfg, make/custom/mvme2307.cfg;
143        Remove need_motorola_powerpc;
144        Add RTEMS_PPC_EXCEPTIONS([new]).
145        * include/Makefile.am: Replace PREINSTALL_FILES with
146        TMPINSTALL_FILES, include force-preinstall.am.
147        * wrapup/Makefile.am: Apply @exceptions@.
148
1492001-11-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
150
151        * configure.ac: Add bspopts.h.
152        * include/.cvsignore: Add stamp-h* and bspopts.h*.
153        * include/Makefile.am: Add bspopts.h.
154        * pci/Makefile.am: Append -O2 to AM_CFLAGS.
155
1562001-11-08      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
157
158        * bootloader/Makefile.am: completely reworked.
159        * configure.ac: Add AM_PROG_AS.
160
1612001-10-25      Joel Sherrill <joel@OARcorp.com>
162
163        * startup/linkcmds: Added _init and _fini.
164
1652001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
166
167        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
168        * configure.in: Remove.
169        * configure.ac: New file, generated from configure.in by autoupdate.
170
1712001-09-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
172
173        * include/Makefile.am: Use 'PREINSTALL_FILES ='.
174        * residual/Makefile.am: Use 'PREINSTALL_FILES ='.
175        * vectors/Makefile.am: Use 'PREINSTALL_FILES ='.
176        * pci/Makefile.am: Use 'PREINSTALL_FILES ='.
177        * openpic/Makefile.am: Use 'PREINSTALL_FILES ='.
178        * bootloader/Makefile.am: Use 'CLEANFILES ='.
179
1802001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
181
182        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
183
1842001-01-03      Emmanuel Raguet <raguet@crf.canon.fr>
185
186        * bootloader/Makefile.am: Modified to install bootloader so
187        make-exe rule can avoid writing to install point or assuming
188        BSP build tree is available.
189
1902000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
191
192        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
193
1942000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
195
196        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
197
1982000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
199
200        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
201        Switch to GNU canonicalization.
202
2032000-09-29      Charles-Antoine Gauthier <charles.gauthier@nrc.ca>
204
205        * startup/linkcmds: Added lines so DWARF debug information
206        would be available.  Otherwise gdb complains that the offsets
207        for the debug info are incorrect and doesn't load the files.
208
2092000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
210
211        * bootloader/Makefile.am, clock/Makefile.am, console/Makefile.am,
212        irq/Makefile.am, motorola/Makefile.am, openpic/Makefile.am,
213        pci/Makefile.am, residual/Makefile.am, start/Makefile.am,
214        startup/Makefile.am, vectors/Makefile.am, wrapup/Makefile.am:
215        Include compile.am
216
2172000-08-10      Joel Sherrill <joel@OARcorp.com>
218
219        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.