On Tuesday, December 14, 2010 18:03:01 Ralf Corsepius wrote: > On 12/14/2010 10:47 PM, Mike Frysinger wrote: > > diff --git a/gdb/gdbserver/configure.srv b/gdb/gdbserver/configure.srv > > index 1e8fa30..ccf8381 100644 > > --- a/gdb/gdbserver/configure.srv > > +++ b/gdb/gdbserver/configure.srv > > @@ -67,6 +67,11 @@ case "${target}" in > > > > srv_mingw=yes > > srv_mingwce=yes > > ;; > > > > + bfin-*-*) srv_regobj=reg-bfin.o > > + srv_tgtobj="linux-low.o linux-bfin-low.o" > > + srv_linux_usrregs=yes > > + srv_linux_thread_db=yes > > + ;; > > Is this a generic bfin target or should is a bfin-*linux target. > > Seeing linux-*low.o on the right hand side of the case, my feeling is > the $target should be fbin-*-linux* we use gdbserver for bfin-uclinux (FLAT) and bfin-linux-uclibc (FDPIC) targets. looking at the other targets in the configure file, i guess i should restrict it to bfin-*-*linux* rather than bfin-*. -mike