Hi my situation is this: tv uc6600 t-valdeuc arm arch with samygoextension.
I done manually hack over symlink so my tv executed the script run.sh
in it i put this code
Code: Select all
#!/bin/sh
if !([ -e /mtd_rwarea/busybox ]); then
cp $1/busybox /mtd_rwarea/
chmod 777 /mtd_rwarea/busybox
sync
fi
if !([ -e /mtd_rwarea/sh ]); then
ln -s /mtd_rwarea/busybox /mtd_rwarea/sh
chmod 777 /mtd_rwarea/sh
sync
fi
mount -t devpts devpts /dev/pts
/mtd_rwarea/busybox telnetd -l /mtd_rwarea/sh
/mtd_rwarea/busybox tcpsvd -vE 0.0.0.0 21 /mtd_rwarea/busybox ftpd -w / &
sync
rm -f /mtd_rwarea/profile
$1/SamyGO/rcSGO $1/SamyGO > $1/rcSGO_out 2>&1 &
now i'm stuck and i need help
i want to modify the vusb script to fakes 2 vusb one for mounting samba shares and other for mounting an xfs image for pvr recording.
I read a lot of thread in the forum and the wiki too but all are related to record over nfs shares.
But nfs share require hanewin that isn't one opensource program and work only for 30 days so i'm searching one way for record over samba shares.
I use widows 7 home premium on my pc.
please help me.