mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
12 lines
170 B
Bash
Executable File
12 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -f "$2" ]; then
|
|
echo "ELF-file $2 does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
echo "##"
|
|
echo "## Debugging $2"
|
|
echo "##"
|
|
arm-none-eabi-gdb -tui -command="$1" $2
|