1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-11-14 05:05:07 -05:00
gc_n64_usb-v3/scripts/enter_bootloader.sh
2015-12-06 23:13:29 -05:00

11 lines
213 B
Bash
Executable File

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