mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-16 01:35:59 +00:00
Use the existing debugserver target also for Qemu debugging. Qemu should be maintained as one of many emulation/simulations platforms and emulation should be abstracted in the Makefiles and not tied to Qemu. qemugdb will still work, it is however being deprecated. Change-Id: I0cd10fb66debb939b8f7f1304bf2ef4605da6a1d Signed-off-by: Anas Nashif <anas.nashif@intel.com>
17 lines
192 B
Bash
Executable File
17 lines
192 B
Bash
Executable File
#!/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
|