source: rtems/c/src/librdbg/ChangeLog @ 6f0d0527

4.104.114.84.95
Last change on this file since 6f0d0527 was 3695f03b, checked in by Joel Sherrill <joel.sherrill@…>, on 05/14/02 at 15:13:52

2002-05-14 Thomas Doerfler <Thomas.Doerfler@…>

  • src/m68k/rdbg_cpu_asm.S: Per PR163, Fix incorrect assumption that exception stack frames on M68K members with VBR always are 6 byte long. The incorrect assumption resulted in some gdb commands like "next" to fail on the 68360.
  • Property mode set to 100644
File size: 8.1 KB
Line 
12002-05-14      Thomas Doerfler <Thomas.Doerfler@imd-systems.de>
2
3        * src/m68k/rdbg_cpu_asm.S: Per PR163, Fix incorrect assumption that
4        exception stack frames on M68K members with VBR always are 6 byte long.
5        The incorrect assumption resulted in some gdb commands like "next"
6        to fail on the 68360.
7
82002-05-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
9
10        * src/i386/any/remdeb_svc.c, src/m68k/any/remdeb_svc.c,
11        src/powerpc/new_exception_processing/remdeb_svc.c: Per PR220 remove
12        these files from CVS.
13
142001-04-19      Joel Sherrill <joel@OARcorp.com>
15
16        * src/powerpc/rdbg_f.c: Always include <rtems.h> instead of
17        internal include files.
18 
192002-04-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
20
21        * src/powerpc/rdbg_cpu_asm.S: Reflect changes to
22        <rtems/score/cpu.h>.
23        * src/powerpc/rdbg_f.c: Ditto.
24
252002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
26
27        * configure.ac:
28        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
29        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
30        * include/rdbg/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
31        * include/rdbg/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
32        * include/rdbg/Makefile.am: Remove AUTOMAKE_OPTIONS.
33        * include/rdbg/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
34        * include/Makefile.am: Remove AUTOMAKE_OPTIONS.
35        * Makefile.am: Remove AUTOMAKE_OPTIONS.
36        * src/i386/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
37        * src/i386/Makefile.am: Remove AUTOMAKE_OPTIONS.
38        * src/m68k/any/Makefile.am: Remove AUTOMAKE_OPTIONS.
39        * src/m68k/Makefile.am: Remove AUTOMAKE_OPTIONS.
40        * src/Makefile.am: Remove AUTOMAKE_OPTIONS.
41        * src/powerpc/Makefile.am: Remove AUTOMAKE_OPTIONS.
42        * src/powerpc/new_exception_processing/Makefile.am: Remove AUTOMAKE_OPTIONS.
43
442002-03-20      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
45
46        PR 149
47        * src/i386/any/Makefile.am: s/$(SED)/sed/.
48        * src/m68k/any/Makefile.am: s/$(SED)/sed/.
49        * src/powerpc/new_exception_processing/Makefile.am: s/$(SED)/sed/.
50        (Reported by Till Straumann <strauman@SLAC.Stanford.EDU>)
51
522002-02-01      Eric Valette <valette@crf.canon.fr>
53
54
55        * So many patches have been posted recently on the mailing list and
56        because we were unable to find correct solution to compile on various
57        linux distros (due to rpcgen incompatibilities), and because the coding
58        style of rdbg was rather inconsistant among various pieces of code, I
59        decided to:
60            1) make some cleaning regarding global coding style (using
61               indent + manual edits),
62            2) incorporate/review the paches send by various people
63               (S. Holford, T. Strauman),
64            3) Fix the bug due to varying rpcgen code generation
65               in remdeb_svc.c,
66            4) Remove some dead code,
67            5) Apply a patches enabling to call enterRdbg imediately
68               after rdbg initialization is done,
69
70        NB : the paches is huge but it is mainly due to coding styke chnages.
71        Only few lines of codes have been really changed and they do not impact
72        rdbg functionnality (AFAIKT).
73
74        * include/rdbg/servrpc.h, include/rdbg/i386/rdbg_f.h,
75        include/rdbg/m68k/rdbg_f.h, include/rdbg/powerpc/rdbg_f.h,
76        src/_servtgt.c, src/awk.svc, src/excep.c, src/ptrace.c, src/rdbg.c,
77        src/remdeb.x, src/servbkpt.c, src/servcon.c, src/servrpc.c,
78        src/servtgt.c, src/servtsp.c, src/servutil.c, src/i386/excep_f.c,
79        src/i386/rdbg_f.c, src/i386/any/Makefile.am, src/i386/any/remdeb.h,
80        src/i386/any/remdeb_svc.c, src/i386/any/remdeb_xdr.c,
81        src/m68k/excep_f.c, src/m68k/rdbg_f.c, src/m68k/any/Makefile.am,
82        src/m68k/any/remdeb.h, src/m68k/any/remdeb_svc.c,
83        src/m68k/any/remdeb_xdr.c, src/powerpc/excep_f.c, src/powerpc/rdbg_f.c,
84        src/powerpc/new_exception_processing/Makefile.am,
85        src/powerpc/new_exception_processing/remdeb.h,
86        src/powerpc/new_exception_processing/remdeb_svc.c,
87        src/powerpc/new_exception_processing/remdeb_xdr.c: Modified.
88
892002-01-18      Till Straumann <strauman@slac.stanford.edu>
90
91        * src/powerpc/excep_f.c: This patch addresses the following issues:
92            - exception handler needs to enable MSR_FP if the interrupted
93              thread is FP enabled.
94            - printk message for MSR fixed and added stacktrace
95
96        NOTE: this requires the stacktrace patch to
97        lib/libbsp/powerpc/shared/vectors/vector_init.c
98        (#ifdef DDEBUG only, however)
99
1002001-01-18      Joel Sherrill <joel@OARcorp.com>
101
102        * src/powerpc/new_exception_processing/remdeb_svc.c: Corrected
103        macro using variable arguments.
104       
1052001-01-18      Joel Sherrill <joel@OARcorp.com>
106
107        * src/powerpc/new_exception_processing/remdeb.h,
108        src/powerpc/new_exception_processing/remdeb_xdr.c: Regenerated since
109        I updated the main RTEMS development machine to RedHat 7.2 and
110        apparently got a new version of rpcgen.
111
1122001-10-30      Victor V. Vengerov <vvv@oktet.ru>
113
114        * src/m68k/rdbg_cpu_asm.S: Now compiles on ColdFire.
115
1162001-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
117
118        * configure.ac: Fix latent bug exposed by removal of config.cache's
119        which prevented powerpc targets librdbg from building.
120
1212001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
122
123        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
124        * configure.in: Remove.
125        * configure.ac: New file, generated from configure.in by autoupdate.
126
1272001-09-23      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
128
129        * include/rdbg/i386/Makefile.am: Use 'PREINSTALL_FILES ='.
130        * include/rdbg/m68k/Makefile.am: Use 'PREINSTALL_FILES ='.
131        * include/rdbg/powerpc/Makefile.am: Use 'PREINSTALL_FILES ='.
132        * include/rdbg/Makefile.am: Use 'PREINSTALL_FILES ='.
133        * src/i386/any/Makefile.am: Use 'PREINSTALL_FILES ='.
134        * src/m68k/any/Makefile.am: Use 'PREINSTALL_FILES ='.
135        * src/powerpc/new_exception_processing/Makefile.am: Use 'PREINSTALL_FILES ='.
136
1372001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
138
139        * src/i386/any/Makefile.am: Move MAINTAINERCLEANFILES before the
140        includes and use MAINTAINERCLEANFILES = to make automake-1.5 happy.
141        * src/m68k/any/Makefile.am: Ditto.
142        * src/powerpc/new_exception_processing/Makefile.am: Ditto.
143
1442001-09-14      Eric Norum <eric.norum@usask.ca>
145
146        * include/rdbg/rdbg.h, src/ptrace.c: Modifications to make gcc 3.x happy.
147
1482001-04-20      Eric Valette <valette@crf.canon.fr>
149
150        * mcp750 directory renamed new_exception processing as it
151        supports many more CPU models.
152        * configure.in, src/powerpc/Makefile.am,
153        src/powerpc/new_exception_processing/Makefile.am,
154        src/powerpc/new_exception_processing/remdeb_f.x: New files
155        formerly in mcp750 plus modifications.
156        * src/powerpc/mcp750/.cvsignore, src/powerpc/mcp750/Makefile.am,
157        src/powerpc/mcp750/remdeb.h, src/powerpc/mcp750/remdeb_f.x,
158        src/powerpc/mcp750/remdeb_svc.c, src/powerpc/mcp750/remdeb_xdr.c:
159        Removed when moved to new_exception_processing.
160        * configure.in, src/powerpc/Makefile.am,
161        src/powerpc/new_exception_processing/Makefile.am,
162        src/powerpc/new_exception_processing/remdeb_f.x: Modified as
163        part of this effort to add support for the MPC8xx.
164
1652001-02-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
166
167        * include/rdbg/Makefile.am, include/rdbg/i386/Makefile.am,
168        include/rdbg/m68k/Makefile.am, include/rdbg/powerpc/Makefile.am:
169        Cleanup including more proper style on include files.
170
1712000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
172
173        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
174
1752000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
176
177        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
178
1792000-10-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
180
181        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
182        Switch to GNU canonicalization.
183
1842000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
185
186        * src/m68k/any/remdeb.h, src/m68k/any/remdeb_xdr.c,
187        src/m68k/any/remdeb_svc.c: New files missed in merger.
188
1892000-10-19  Antti P Miettinen  <anmietti@trshp.ntc.nokia.com>
190
191        * configure.in: Add m68k support.
192        * include/rdbg/m68k, src/m68k, src/m68k/any: New subdirectory.
193        * src/_servtgt.c: add status text to prinf upon task creation failure.
194        * src/rdbg.c: reconnect rdbg exception handlers upon RPC calls.
195        * src/m68k/Makefile.am, src/m68k/any/Makefile.am,
196        src/m68k/any/remdeb_f.x, src/m68k/any/.cvsignore,
197        src/m68k/any/remdeb.h, src/m68k/any/remdeb_xdr.c,
198        src/m68k/any/remdeb_svc.c, src/m68k/excep_f.c, src/m68k/rdbg_cpu_asm.S,
199        src/m68k/rdbg_f.c, src/m68k/.cvsignore: New files.
200
2012000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
202
203        * src/i386/any/Makefile.am, src/powerpc/mcp750/Makefile.am: Include
204        compile.am
205
2062000-08-10      Joel Sherrill <joel@OARcorp.com>
207
208        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.