mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
14 lines
195 B
Bash
Executable File
14 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -z $1 ] ; then
|
|
echo
|
|
echo "usage: $0 <WiiU-ip> <elf>"
|
|
echo
|
|
exit 0
|
|
fi
|
|
|
|
export WIILOAD=tcp:$1
|
|
rm $2.stripped -rf
|
|
powerpc-eabi-strip $2 -o $2.stripped
|
|
wiiload $2.stripped
|