gc_n64_usb-v3/scripts/enter_bootloader.sh

11 lines
213 B
Bash
Raw Normal View History

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