mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-01-26 01:34:43 +01:00
9 lines
266 B
Bash
Executable File
9 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
# Compare md5 of the PicoDrive binary in /usr/games with the OPK one
|
|
if [ `md5sum /usr/games/PicoDrive | cut -d' ' -f1` != `md5sum PicoDrive | cut -d' ' -f1` ]; then
|
|
rw
|
|
cp -f PicoDrive /usr/games
|
|
ro
|
|
fi
|
|
exec /usr/games/launchers/megadrive_launch.sh "$1"
|