scripts: use extended-remote for greater compatibility
authorJohn Crispin <john@openwrt.org>
Wed, 10 Dec 2014 15:50:52 +0000 (15:50 +0000)
committerJohn Crispin <john@openwrt.org>
Wed, 10 Dec 2014 15:50:52 +0000 (15:50 +0000)
Plain "remote" results in failure to connect using the gdb built with
the toolchain. (On atheros target at least)  extended-remote also allows
"run" to restart the target process.

Signed-off-by: Karl Palsson <karlp@remake.is>
SVN-Revision: 43596

scripts/remote-gdb

index 98ec768f4bdc4a55d19818622556a47dbf755902..ce96dd2c436ce29d2e4ac818384a5e31658a0c9b 100755 (executable)
@@ -61,7 +61,7 @@ if( opendir SD, "$Bin/../staging_dir" )
                my ($sysroot) = glob("$Bin/../staging_dir/target-${arch}_${libc}/root-*/");
 
                print $fh "set sysroot $sysroot\n" if $sysroot;
-               my $cmd = "target remote";
+               my $cmd = "target extended-remote";
                -f $ARGV[0] and $cmd = "core-file";
                print $fh "$cmd $ARGV[0]\n";