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
T-VALDEUC 3007.1 released
Re: T-VALDEUC 3007.1 released
Denny - 데니 - 丹尼 (card2000)
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
UE55C8000 UE55D8000 UE32D6510 BD-C9600 3xDM8000
Reversing HW Demux Drivers and API from Samsung´s TV
Re: T-VALDEUC 3007.1 released
I can.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
Just flashed 3007.1 back to TV. But now I am having a small problem. I've lost telent


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.
TV: LE40C750 - T-VALDEUC 3011.0
TV: UE40D6100 - T-GAS6DEUC 1026.0
TV: UE50ES6300 - T-MST10PDEUC 1042.0
NAS: MyBookLive 3Tb - Core F/W 02.43.03-022
TV: UE40D6100 - T-GAS6DEUC 1026.0
TV: UE50ES6300 - T-MST10PDEUC 1042.0
NAS: MyBookLive 3Tb - Core F/W 02.43.03-022
Re: T-VALDEUC 3007.1 released
You need format your /mtd_rwarea/ first
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: T-VALDEUC 3007.1 released
yeah... but i don't have the cable to do it.juuso wrote:You need format your /mtd_rwarea/ first

we need some better solution for this.
a widget for example that would do the job.
TV: LE40C750 - T-VALDEUC 3011.0
TV: UE40D6100 - T-GAS6DEUC 1026.0
TV: UE50ES6300 - T-MST10PDEUC 1042.0
NAS: MyBookLive 3Tb - Core F/W 02.43.03-022
TV: UE40D6100 - T-GAS6DEUC 1026.0
TV: UE50ES6300 - T-MST10PDEUC 1042.0
NAS: MyBookLive 3Tb - Core F/W 02.43.03-022
Re: T-VALDEUC 3007.1 released
make or buy exlink for C series. It is the best/fastest solution for you.
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: T-VALDEUC 3007.1 released
According wiki:
power off TV
Disconnect network cable (you can remove antenna too)
Power on TV
Try format
power off TV
Disconnect network cable (you can remove antenna too)
Power on TV
Try format
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: T-VALDEUC 3007.1 released
Ok, i have idea:
Code below isn`t confirmed and it is for T-VALDEUC firmware only...
1. edit news.js file:
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:
For more info about how to modify widget read here.
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:
This file is to place on root of USB
Code: Select all
SWU_T-VALDEUC_001000_I04_ES000DS000KS000RS000_100205
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");
}
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE