/usr/share/avarice/gdb-avarice-script is in avarice 2.13+svn372-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | set remoteaddresssize 32
set remote Z-packet enable
set remote hardware-breakpoint-limit 3
set remote hardware-watchpoint-limit 2
define target-ice
target extended-remote localhost:6423
end
define ice-load
shell start-avarice $arg0
file $arg0
target-ice
end
define ice-restart
shell start-avarice
target-ice
end
define hook-quit
shell kill-avarice
end
target-ice
|