From: Stu Grossman Date: Mon, 16 Oct 1995 18:59:54 +0000 (+0000) Subject: * remote-array.c: Move baud_rate initialization from X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=59227c078d47b163588f87a95516bf7844c6c8b4;p=binutils-gdb.git * remote-array.c: Move baud_rate initialization from _initialize_array to array_open. It was forcing the baud rate of all targets to be 4800 baud! Seems like I've fixed this before... * config/mips/idt.mt (TDEPFILES): Remove remote-array.o. This has *nothing* to do with IDT!!! --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index da5028d0334..e9f44af1fe1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ Mon Oct 16 11:27:06 1995 Stu Grossman (grossman@cygnus.com) + * remote-array.c: Move baud_rate initialization from + _initialize_array to array_open. It was forcing the baud rate of + all targets to be 4800 baud! Seems like I've fixed this before... + * config/mips/idt.mt (TDEPFILES): Remove remote-array.o. This + has *nothing* to do with IDT!!! + * gdbtk.c (gdb_disassemble): Use fprintf_unfiltered instead of fprintf_filtered. diff --git a/gdb/config/mips/idt.mt b/gdb/config/mips/idt.mt index eb706b609ce..0f116454a19 100644 --- a/gdb/config/mips/idt.mt +++ b/gdb/config/mips/idt.mt @@ -1,3 +1,3 @@ # Target: Big-endian IDT board. -TDEPFILES= mips-tdep.o remote-mips.o remote-array.o +TDEPFILES= mips-tdep.o remote-mips.o TM_FILE= tm-idt.h diff --git a/gdb/remote-array.c b/gdb/remote-array.c index a09e6fc35be..f480beb7e53 100644 --- a/gdb/remote-array.c +++ b/gdb/remote-array.c @@ -570,6 +570,8 @@ array_open(args, name, from_tty) { char packet[PBUFSIZ]; + baud_rate = 4800; /* this is the only supported baud rate */ + if (args == NULL) error ("Use `target %s DEVICE-NAME' to use a serial port, or \n\ `target %s HOST-NAME:PORT-NUMBER' to use a network connection.", name, name); @@ -1419,6 +1421,5 @@ void _initialize_array () { add_target (&array_ops); - baud_rate = 4800; /* this is the only supported baud rate */ }