pebble/platform/tintin/boot/gdb
2025-01-27 11:38:16 -08:00

11 lines
239 B
Bash
Executable file

#!/bin/bash
TARGET="target extended-remote | openocd -f openocd.cfg \
-c \"gdb_port pipe; init; reset halt;\""
arm-none-eabi-gdb build/tintin_boot.elf \
-ex "${TARGET}" \
-ex "break boot_main" \
-ex "continue"
# vim:filetype=sh