Add RDP1 script

This commit is contained in:
Thomas Roth 2020-11-29 12:45:43 +01:00
parent ab6f3a0449
commit d020888bc6
1 changed files with 35 additions and 0 deletions

35
scripts/rdp1.sh Executable file
View File

@ -0,0 +1,35 @@
#!/bin/bash
if [[ $# -ne 1 ]]; then
echo "Usage: $0 <Adapter: jlink or stlink>"
exit 1
fi
ADAPTER=$1
mkdir -p logs
echo "This will look your device! Are you sure? (Y/y)"
read -n 1 -r
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
echo "Aborted."
exit 1
fi
echo "Validating internal flash backup before proceeding..."
if ! shasum --check shasums/internal_flash_backup.bin.sha1 >/dev/null 2>&1; then
echo "Backup is not valid. Aborting."
exit 1
fi
echo "Locking device... (Takes up to 30 seconds.)"
if ! openocd -f openocd/interface_"$1".cfg \
-c "init;" \
-c "halt;" \
-f openocd/rdp1.cfg >>logs/rdp1_openocd.log 2>&1; then
echo "Locking device failed."
exit 1
fi
echo "Device is locked."