My problen is not neccessarily related to SamyGO modifications, but in the same time you guys seem to be the most competent ones and thus maybe able to help me.
I got a LE32B679 (T-CHL6CIPDSEUC). The tv signal comes via DVB-T.
After having been turned off for a longer period (several hours) the TV starts up normally and begins displaying some TV channel. Approximately 30 seconds later the TV stops playing the TV station?s picture and sound. Instead it tells me ?weak or no signal?. Changing the TV stations does not influence this behavior. About 1 minute later the TV returns to normal operation. If the TV is turned off for a short time period only, it starts up as it supposed to.
In the meantime I patched my firmware (0.18) in order to mount some network drives while booting. Basically, the three following scipts are executed. I discovered a strange compartment.
SamyGO.sh
premount.sh#!/bin/sh
Module="/mtd_rwarea/module"
USB="/dtv/usb/sda1" # USB mount-point
#Enable Telnetd
mount -t devpts devpts /dev/pts
telnetd
sleep 5
#Open back-door for fixing boot-loop situations
sleep 30 # Allow USB stick to settle
if [ -f $USB/usb.sh ];then
sh $USB/usb.sh # USB-File detected
else
#Run normal startup script, if exists
if [ -f /mtd/rw_area/mtd_rwarea.sh ];then
sh /mtd_rwarea/mtd_rwarea.sh
fi
#Run mount script, if exists
if [ -f /mtd_rwarea/premount.sh ];then
sh /mtd_rwarea/premount.sh&
fi
fi
exit
mount.sh#!/bin/sh
#Mount Virtual USB-Key
insmod /mtd_rwarea/module/dummy_hcd.ko
sleep 5
insmod /mtd_rwarea/module/g_file_storage.ko file=/mtd_rwarea/vusb.image
sleep 5
sh /mtd_rwarea/mount.sh&
exit
USB="/dtv/usb/sda1"
insmod /mtd_rwarea/module/cifs.ko
mkdir -p $USB
mkdir -p $USB/EonMATT
mkdir -p $USB/Fritz
mount -o user=myname,password=1234 -t cifs //192.168.0.2/E $USB/EonMATT
mount -o user=othername,password=12378 -t cifs //192.168.0.1/USBDISKPro-01 $USB/Fritz
echo "[sdd]
Vendor : Linux
Product : Network
Serial : Q80VQLFL
Devpath : 4
Lun : 0
MountDir : /dtv/usb/smb
FileSystem : vfat
">> /dtv/usb/sda1/log
As you can see, the first script starts telnet and then launches the premount script that creates a virtual USB drive. Finally, it launches the mount script. If a USB stick is plugged in, the network drives will be mounted to the USB stick (sda1) and the virtual usb drive (sdb1) will be just there without any use. This is how it normally works.
This morning I turned on the TV with the described behavior above (?no signal or weak signal?). For some reason the virtual usb drive had not been created but the network drives where mounted to the usb stick. This seems a bit odd to me since executing the mount script implies having run the premount script before. But there was no virtual USB device.
This does not really bother me. BUT, might this help us to explain the initial problem where I don?t have a TV signal after having turned on the TV?
Thank?s in advance for your assistance