Mounting network shares (samba, nfs, etc.) on Samsung D series with Mstar CPU tested on D5700 by changing virtual usb mounting point to your real usb drive plugged to tv.
If yours virtual usb device with name "Server" ...

... doesn't works properly by showing endless "Loading..." message ...

... then you can solve this issue by changing virtual usb mounting direction.
This is how to step by step:
1. Make sure before you go next step. Check on another device if your shares are visible, also check this file if you are win7 user:
http://freefr.dl.sourceforge.net/projec ... ndows7.pdf
2. Disable the following scripts:
Code: Select all
03_01_fuse.init
03_03_djmount.init
03_03_nfsmount.init
04_04_fusesmb.init
Start your SamyGo, connect via ftp to your Samsung TV and go to dir "mtd_rwdata/widgets/user/SamyGO/SamyGO/etc/init.d/"
You can disable them by adding to end of each file name ".dis"
so this all files should have name like this now:
Code: Select all
03_01_fuse.init.dis
03_03_djmount.init.dis
03_03_nfsmount.init.dis
04_04_fusesmb.init.dis
3. Plug to your Samsung TV some usb drive (no matter which port USB1 or USB2). Go to "/dtv/usb/" and check which folder is your real usb drive (for me it was "sda4")
Now remember the name of this folder and go to "mtd_rwdata/widgets/user/SamyGO/SamyGO/etc/init.d/02_04_vusb.init" and find a value (line 56):
Code: Select all
dev="sda1" # set fallback if someting wrong with modules
now change it with your real usb drive folder name:
Code: Select all
dev="sda4" # set fallback if someting wrong with modules
4. Provide username and password (even if your shares aren't password protected) in file:
mtd_rwdata/widgets/user/SamyGO/SamyGO/etc/init.d/04_04_samba.init
Now all stuff which suppose to be mounted on virtual usb will be mounted on your phisicaly usb drive.
One disadvantage of this solution is that all mounted folders gonna stay on your real usb stick even after turning off tv, but you can simply add line to 04_04_samba.init file with script which will delete all folders from smb folder. Just put this line:
Code: Select all
rm -fr /dtv/usb/sda4/smb
rm -fr /mtd_contents/database
here (line 11):
Code: Select all
#!/bin/sh
#
# ? Copyright 1996-2010, ZsoltTech.Com
# by Ser Lev Arris <arris@ZsoltTech.Com>
#
# donated for the SamyGo Project
# http://samygo.sourceforge.net/
#
# Version: SamyGO svn $Id: 04_04_samba.init 1069 2011-01-03 16:47:24Z arris69 $
#
rm -fr /dtv/usb/sda4/smb
rm -fr /mtd_contents/database/
. /dtv/SGO.env
# sleep 9
##### CHANGE MEEEEE !!!!! ######
USER="test"
PASSWD="test"
PERM="rw" # can be ro or rw
##### CHANGE MEEEEE END ######
(...)