Page 5 of 9
Re: T-VALDEUC 3007.1 released
Posted: Sat Feb 19, 2011 8:28 pm
by Denny
can anyone make copy of files from T-VALDEUC 3007.1 by ftp and upload it to some upload site ? ?
to see what they did change in widget api....
mtd_rwcommon
mtd_appdata
mtd_rwarea
Denny
Re: T-VALDEUC 3007.1 released
Posted: Sun Feb 20, 2011 2:57 pm
by mmhorda
card2000 wrote:can anyone make copy of files from T-VALDEUC 3007.1 by ftp and upload it to some upload site ? ?
to see what they did change in widget api....
mtd_rwcommon
mtd_appdata
mtd_rwarea
Denny
I can.
Just flashed 3007.1 back to TV. But now I am having a small problem. I've lost telent

and I cannot hack TV over HotelMode again.
Did factory reset, folders seem to be deleted. but somehow TV cannot restore the setting from HotelMode anymore
I don't have that ExLink cable.
Re: T-VALDEUC 3007.1 released
Posted: Sun Feb 20, 2011 3:07 pm
by juusso
You need format your /mtd_rwarea/ first
Re: T-VALDEUC 3007.1 released
Posted: Sun Feb 20, 2011 5:47 pm
by mmhorda
juuso wrote:You need format your /mtd_rwarea/ first
yeah... but i don't have the cable to do it.

we need some better solution for this.
a widget for example that would do the job.
Re: T-VALDEUC 3007.1 released
Posted: Sun Feb 20, 2011 5:51 pm
by juusso
make or buy exlink for C series. It is the best/fastest solution for you.
Re: T-VALDEUC 3007.1 released
Posted: Mon Feb 21, 2011 11:26 am
by juusso
According
wiki:
power off TV
Disconnect network cable (you can remove antenna too)
Power on TV
Try format
Re: T-VALDEUC 3007.1 released
Posted: Fri Feb 25, 2011 1:47 pm
by juusso
Ok, i have idea:
Code below isn`t confirmed and it is for T-VALDEUC firmware only...
1. edit news.js file:
- remove Version* files:
Code: Select all
FilePlugind.Delete("/mtd_rwarea/Version.1");
FilePlugind.Delete("/mtd_rwarea/Version.0");
- Code to copy new Version* files (with ID from very lowest firmware)
Code: Select all
FilePlugind.Copy("$USB_DIR/sda1/Version_1000", "/mtd_rwarea/Version.0");
FilePlugind.Copy("$USB_DIR/sda1/Version_1000", "/mtd_rwarea/Version.1");
- Version_1000:
Code: Select all
SWU_T-VALDEUC_001000_I04_ES000DS000KS000RS000_100205
This file is to place on root of USB
2. Run widget
3. Do not reboot TV, attach USB with T-VALDEUC-3005
4. Downgrade
After reboot old hack should work again.
5. Remove Version* file of alternative firmware (over telnet)
Who wants to be first?
p.s. whole code to add to news.js file is:
Code: Select all
function onLoadCategoryList() {
var FilePlugind = document.getElementById("pluginObjectFile");
offWatchDog(); // must be disabled otherwise TV reboots
FilePlugind.Delete("/mtd_rwarea/Version.1");
FilePlugind.Delete("/mtd_rwarea/Version.0");
FilePlugind.Copy("$USB_DIR/sda1/Version_1000", "/mtd_rwarea/Version.0");
FilePlugind.Copy("$USB_DIR/sda1/Version_1000", "/mtd_rwarea/Version.1");
}
For more info about how to modify widget
read here.