* remote-array.c: Move baud_rate initialization from
authorStu Grossman <grossman@cygnus>
Mon, 16 Oct 1995 18:59:54 +0000 (18:59 +0000)
committerStu Grossman <grossman@cygnus>
Mon, 16 Oct 1995 18:59:54 +0000 (18:59 +0000)
_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!!!

gdb/ChangeLog
gdb/config/mips/idt.mt
gdb/remote-array.c

index da5028d03340fed0183e05aab5707032f85b5750..e9f44af1fe19d9f6eb3549b3a9169b3d2ab8e0e7 100644 (file)
@@ -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.
 
index eb706b609ce3cc023dc53afd8a3a5e9e8e53d8a3..0f116454a197baf337716761e557be6570e4b634 100644 (file)
@@ -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
index a09e6fc35be3365d4fa418e64a8aca4b7874b225..f480beb7e539b8316b54d889bc9865e5fca8ffdc 100644 (file)
@@ -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 */
 }