You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
252 B
15 lines
252 B
6 years ago
|
#! /bin/sh
|
||
|
|
||
5 years ago
|
set -o xtrace
|
||
|
|
||
|
gdb-multiarch -silent -nx -batch \
|
||
6 years ago
|
-ex "target remote localhost:2331" \
|
||
|
-ex "monitor reset 0" \
|
||
|
-ex "load" \
|
||
|
-ex "monitor reset 0" \
|
||
|
-ex "monitor go" \
|
||
5 years ago
|
-ex "monitor sleep 3000" \
|
||
|
-ex "disconnect" \
|
||
|
-ex "quit" \
|
||
6 years ago
|
${1}
|