mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-14 23:05:22 +00:00
24 lines
253 B
Bash
Executable File
24 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
|
|
XT_GDB=$XCC_TOOLS/bin/xt-gdb
|
|
ELF_NAME=${O}/${KERNEL_ELF_NAME}
|
|
|
|
set -e
|
|
|
|
do_debug() {
|
|
${XT_GDB} ${ELF_NAME}
|
|
}
|
|
|
|
CMD="$1"
|
|
shift
|
|
|
|
case "${CMD}" in
|
|
debug)
|
|
do_debug "$@"
|
|
;;
|
|
*)
|
|
echo "${CMD} not supported"
|
|
exit 1
|
|
;;
|
|
esac
|