summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/support/qemu.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/support/qemu.sh b/scripts/support/qemu.sh
new file mode 100755
index 000000000..3a0e2fdea
--- /dev/null
+++ b/scripts/support/qemu.sh
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+# Just a place holder for any custimizations.
+
+do_debugserver() {
+ echo "Detached GDB server"
+}
+
+CMD="$1"
+shift
+
+case "${CMD}" in
+ debugserver)
+ do_debugserver "$@"
+ ;;
+esac