1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-08-13 17:03:49 -04:00
gc_n64_usb-v3/scripts/enter_bootloader.sh
2015-12-08 22:08:13 -05:00

11 lines
263 B
Bash
Executable File

#!/bin/bash
TOOL=./tools/gcn64ctl
if [ -x $TOOL ]; then
$TOOL -f --bootloader
exit 0 # The tool fails, but we should continue anyway in case the chip is already in bootloader
else
echo $TOOL not found. Please compile it to enter bootloader automatically.
fi