1. You need patched firmware on board with advandced (a) option in patcher.
2. You need to manualy create file samygo.sh on /mtd_rwarea/
3. You need give permissions for execution (chmod 755 /mtd_rwarea/samygo.sh)
4. You need export directory with games(just copy of /mtd_tlib/GGame/) on your NAS to TV
5. mount over NFS exported dir.
6. mount --bind mounted NFS share as /GGame
example:
NAS IP: 192.168.1.200
TV IP: 192.168.1.100
You have NFS server running on NAS,
exports file:
Code: Select all
root@LS-GL984:~# cat /etc/exports
/mnt/disk1/TV/mtd_tlib 192.168.1.100/255.255.255.0(rw,async,all_squash,anonuid=99,anongid=99,no_subtree_check)
and your GGame is copied to /disk1/TV/mtd_tlib/GGame on NAS, command to write to samygo.sh should be:
Code: Select all
mkdir /dtv/nfs #create mount dir where share is mounted to.
mount -o nolock 192.168.1.200:/mnt/disk1/TV/mtd_tlib/GGame /dtv/nfs -t nfs #mount share over NFS
mount --bind /dtv/nfs /mtd_tlib/GGame #replace TV`s GGame folder with mounted folder from NAS
But be sure your NAS is always on, if TV does not find it, it uses GGames from original place.
p.s. I think it should work on TV start, i have tested it just by entering commands to console. It is easy to copy games to "TV" because you operate on your NAS actualy
