* ocd.c (ocd_xfer_memory): Ditto.
* ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
* MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
buildable with ,-Werror.
* Makefile.in (symfile_h): Define.
(mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
* mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
* MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
,-Werror.
* dsrec.c (make_srec): Fix internal_error fmt arg.
* MAINTAINERS: Document i960-coff as buildable with ,-Werror.
+2001-03-04 Andrew Cagney <ac131313@redhat.com>
+
+ * ocd.h (ocd_xfer_memory): Add ``attrib'' parameter.
+ * ocd.c (ocd_xfer_memory): Ditto.
+ * ser-ocd.c (ocd_setstopbits): New function. Add to ocd_ops.
+ * MAINTAINERS: Document powerpc-eabi and powerpcle-eabi as
+ buildable with ,-Werror.
+
+ * Makefile.in (symfile_h): Define.
+ (mcore-tdep.o): Add $(symfile_h), $(gdbcore_h) and $(inferior_h).
+ * mcore-tdep.c: Include "symfile.h", "gdbcore.h" and "inferior.h".
+ * MAINTAINERS: Document mcore-elf and mcore-pe as buildable with
+ ,-Werror.
+
+ * dsrec.c (make_srec): Fix internal_error fmt arg.
+ * MAINTAINERS: Document i960-coff as buildable with ,-Werror.
+
2001-03-03 Kevin Buettner <kevinb@redhat.com>
* solib-aix5.c (aix5_relocate_main_executable): Don't use ANOFFSET
i386 --target=i386-elf,i386-aout ,-Werror
Mark Kettenis kettenis@gnu.org
- i960 (--target=i960-coff broken)
+ i960 --target=i960-coff ,-Werror
Maintenance only
ia64 (--target=ia64-elf broken)
m88k (?)
Maintenance only
- mcore (--target=mcore-elf,mcore-pe broken)
+ mcore --target=mcore-elf,mcore-pe ,-Werror
Maintenance only
mips --target=mips-elf,mips64-elf ,-Werror
mn10300 --target=mn10300-elf ,-Werror
Andrew Cagney cagney@cygnus.com
- ns32k (--target=ns32k-netbsd broken)
+ ns32k (--target=ns32k-pc532 broken)
Maintenance only
pa (--target=hppa1.1-hp-proelf broken)
Jeff Law law@cygnus.com
- powerpc (--target=powerpc-eabi,powerpcle-eabi broken)
+ powerpc --target=powerpc-eabi,powerpcle-eabi ,-Werror
Kevin Buettner kevinb@cygnus.com
Nick Duffek nsd@cygnus.com
frame_h = frame.h
symtab_h = symtab.h bcache.h
+symfile_h = symfile.h
gdbtypes_h = gdbtypes.h
expression_h = expression.h
value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
$(expression_h) objfiles.h symfile.h
-mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) $(symtab_h)
+mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) \
+ $(symtab_h) $(symfile_h) $(gdbcore_h) $(inferior_h)
mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) target.h monitor.h \
gdb_string.h $(regcache_h)
addr_size = 4;
else
internal_error (__FILE__, __LINE__,
- "make_srec: Bad address (0x%x), or bad flags (0x%x).",
- targ_addr, flags);
+ "make_srec: Bad address (0x%s), or bad flags (0x%x).",
+ paddr (targ_addr), flags);
/* Now that we know the address size, we can figure out how much
data this record can hold. */
#include "value.h"
#include "gdbcmd.h"
#include "regcache.h"
+#include "symfile.h"
+#include "gdbcore.h"
+#include "inferior.h"
/* Functions declared and used only in this file */
/* ARGSUSED */
int
ocd_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int should_write,
- struct target_ops *target)
+ struct mem_attrib *attrib, struct target_ops *target)
{
int res;
int ocd_xfer_memory (CORE_ADDR memaddr, char *myaddr,
- int len, int should_write, struct target_ops *target);
+ int len, int should_write,
+ struct mem_attrib *attrib,
+ struct target_ops *target);
void ocd_mourn (void);
return 0;
}
+static int
+ocd_setstopbits (serial_t scb, int rate)
+{
+ return 0;
+}
+
static int
ocd_write (serial_t scb, const char *str, int len)
{
ocd_print_tty_state,
ocd_noflush_set_tty_state,
ocd_setbaudrate,
+ ocd_setstopbits,
ocd_noop, /* wait for output to drain */
};