summaryrefslogtreecommitdiff
path: root/scripts/support/qemu.sh
blob: 3a0e2fdea18749c5772fb970902abed61c3e2b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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