Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chmenu « bin « rootfs « hakchi « mod - github.com/ClusterM/hakchi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a448234c709219c10e6dcdab7768b7ca76d62a03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
source /etc/preinit
script_init

state_file=$installpath/menu

[ -z "$1" ] && exit 1
prev_code=$(cat "$state_file")
[ "$1" == "$prev_code" ] && exit 0

echo Switching to menu $1
if [ "$1" == "000" ]; then
  targetpath=$rootfs$gamepath
else
  targetpath=$rootfs$gamepath/$1
fi

[ -d "$targetpath" ] || exit 1
echo $1 > "$state_file"

echo New directory: $targetpath
if [ ! -f "$targetpath/title.fnt" ]; then
  ln -s "$rootfs$gamepath/title.fnt" "$targetpath/title.fnt"
fi
if [ ! -f "$targetpath/copyright.fnt" ]; then
  ln -s "$rootfs$gamepath/copyright.fnt" "$targetpath/copyright.fnt"
fi

pkill -KILL clover-mcp
pkill -KILL ReedPlayer-Clover

overmount_games

clover-mcp