This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: problem with remote target settings, insight 6.1


On Wed, 2004-06-16 at 00:18, Alexander Neundorf wrote:
> Hi, 
>  
> it seems insight 6.1, compiled from sources, has the following problem: 
> In the dialog File -> Target Settings there are combo boxes Target, Baud 
> Rate and Port. If I select another target, e.g. Remote/Serial, the Baud 
> Rate is automatically set to the value I selected the last time (115200). 
> If I then try to upload a file, it fails, it can't connect. 
> If I set the Baud Rate manually from 115200 to something else and back to 
> 115200 it works. 
> So it seems that when filling the baud rate automatically into the 
> combobox when selecting another target, that in this case the baudrate is 
> not "applied" to gdb. 

Please try the following patch and let me know if it fixes your
problems.

Index: interface.tcl
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/interface.tcl,v
retrieving revision 1.49
diff -u -r1.49 interface.tcl
--- interface.tcl       5 Apr 2004 20:36:42 -0000       1.49
+++ interface.tcl       16 Jun 2004 17:59:35 -0000
@@ -119,6 +119,7 @@
     set current_args [gdb_get_inferior_args]
     set current_dir $gdb_current_directory
     Session::notice_file_change
+    set_baud
     if {[string length $current_args] > 0} {
       gdb_set_inferior_args $current_args
       gdb_cmd "cd $current_dir"

-- 
Martin M. Hunt <hunt@redhat.com>
Red Hat Inc.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]