mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-10 19:25:07 -05:00
10 lines
164 B
Bash
10 lines
164 B
Bash
|
#!/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
|