gc_n64_usb-v3/enter_bootloader.sh

10 lines
164 B
Bash
Raw Normal View History

#!/bin/bash
TOOL=./tool/gcn64ctl
if [ -x $TOOL ]; then
$TOOL -f --bootloader
else
echo $TOOL not found. Please compile it to enter bootloader automatically.
fi