From: Jo-Philipp Wich Date: Thu, 18 Sep 2014 09:29:44 +0000 (+0000) Subject: script/remote-gdb: enable and keep command history X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;hb=d19c4fc9a2f34c23789d3466eaec2709c0943a6a script/remote-gdb: enable and keep command history Signed-off-by: Jo-Philipp Wich SVN-Revision: 42609 --- diff --git a/scripts/remote-gdb b/scripts/remote-gdb index 380a22511b..98ec768f4b 100755 --- a/scripts/remote-gdb +++ b/scripts/remote-gdb @@ -65,6 +65,11 @@ if( opendir SD, "$Bin/../staging_dir" ) -f $ARGV[0] and $cmd = "core-file"; print $fh "$cmd $ARGV[0]\n"; + # History settings + print $fh "set history filename $Bin/../tmp/.gdb_history\n"; + print $fh "set history size 100000000\n"; + print $fh "set history save on\n"; + my $file = -f "$sysroot/$ARGV[1]" ? "$sysroot/$ARGV[1]" : $ARGV[1]; system($gdb, '-x', $fp, $file);