game-and-watch-backup/scripts/rdp1.sh

29 lines
647 B
Bash
Raw Normal View History

2020-11-29 11:45:43 +00:00
#!/bin/bash
2020-12-02 04:14:00 +00:00
source config.sh $1
2020-11-29 11:45:43 +00:00
echo "This will lock your device! Are you sure? (y/N)"
2020-11-29 11:45:43 +00:00
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.)"
2020-12-02 04:14:00 +00:00
if ! ${OPENOCD} -f openocd/interface_"${ADAPTER}".cfg \
2020-11-29 11:45:43 +00:00
-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."