thanks for this perfect howto, but i have one question.
How can i deactivate the USB Popup (Start Media, SW Update ...), which comes at every Start of my TV.
Sorry for my bad english

Thanks
Code: Select all
#Install VUSB
sleep 10
insmod /mtd_rwarea/modules/dummy_hcd.ko
sleep 10
insmod /mtd_rwarea/modules/g_file_storage.ko file=/mtd_rwarea/vusb.image
sleep 10
Code: Select all
#!/bin/sh
#Enable Telnetd
mount -t devpts devpts /dev/pts
telnetd
#Install VUSB
sleep 10
insmod /mtd_rwarea/modules/dummy_hcd.ko
sleep 10
insmod /mtd_rwarea/modules/g_file_storage.ko file=/mtd_rwarea/vusb.image
sleep 10
# Open back-door for fixing boot-loop situations
sleep 30 # Allow USB stick to settle
USB="/dtv/usb/sda1" # USB mount-point
if [ -f $USB/usb.sh ];then
sh $USB/usb.sh # USB-File detected.
else
if [ -f /mtd_rwarea/mtd_rwarea.sh ];then
sh /mtd_rwarea/mtd_rwarea.sh # Run normal startup script
fi
if [ -f /mtd_rwarea/mount.sh ];then
sh /mtd_rwarea/mount.sh # Run mount script
fi
# Alternatives of Samsung WiFi Link Stick
# You need to download the new mods and place them in /mtd_rwarea/drivers/
if [ -f /mtd_rwarea/.wifi-rt2870 ];then
rmmod rt2870sta # Unloading original rt2870sta
sleep 5
insmod /mtd_rwarea/drivers/rt2870sta.ko # Loading modified rt2870sta
fi
if [ -f /mtd_rwarea/.wifi-rt73 ];then
rmmod rt73 # Unloading original rt73
sleep 5
insmod /mtd_rwarea/drivers/rt73.ko # Loading modified rt73
fi
fi
exit
Thats because of CI+ device.edelfalke wrote:I have Solder today my Ex-Link serial cable and connect to Debug Menu, but i havent see the Option to disable this popup in some of the menus.
By using Micrisoft Hyper Terminal i have some failures by typing "ff", because i can only type numbers in Hyper Terminal.
Code: Select all
VUSB=`grep -A 4 "File-Stor Gadget" /dtv/usb/log | grep MountDir | cut -d: -f2`
Code: Select all
VUSB=`grep -A 4 "What ever you want" /dtv/usb/log | grep MountDir | cut -d: -f2`