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.
|
#! /bin/sh |
|
|
|
set -o xtrace |
|
|
|
gdb-multiarch -silent -nx -batch \ |
|
-ex "target remote localhost:2331" \ |
|
-ex "monitor reset 0" \ |
|
-ex "load" \ |
|
-ex "monitor reset 0" \ |
|
-ex "monitor go" \ |
|
-ex "monitor sleep 3000" \ |
|
-ex "disconnect" \ |
|
-ex "quit" \ |
|
${1}
|
|
|