Difference between revisions of "How to downgrade T-VALDEUC firmware"


From SamyGO
Jump to: navigation, search
m
Line 1: Line 1:
 
juuso wrote [http://forum.samygo.tv/viewtopic.php?p=12695#p12695 here]:
 
juuso wrote [http://forum.samygo.tv/viewtopic.php?p=12695#p12695 here]:
  
How to downgrade if you already have telnet access and your run.sh is being executed:<br>
+
How to downgrade if you already have SSH/Telnet access and your run.sh is being executed:<br>
'''1.''' fil-up run.sh with this code:
+
'''1.''' fill up run.sh with this code:
 
     #!/bin/sh
 
     #!/bin/sh
 
     if [ -f /mtd_rwarea/Version.0 ] ; then
 
     if [ -f /mtd_rwarea/Version.0 ] ; then

Revision as of 12:24, 4 February 2011

juuso wrote here:

How to downgrade if you already have SSH/Telnet access and your run.sh is being executed:
1. fill up run.sh with this code:

   #!/bin/sh
   if [ -f /mtd_rwarea/Version.0 ] ; then
   echo SWU_T-VALDEUC_001000_I04_ES000DS000KS000RS000_100205 > /mtd_rwarea/Version.0
   else
   echo SWU_T-VALDEUC_001000_I04_ES000DS000KS000RS000_100205 > /mtd_rwarea/Version.1
   fi
   sync 

2. Do not reboot TV, attach USB with firmware version you want to install (T-VALDEUC....)
3. Go to "Help -> Software Upgrade -> USB" and TV should accept firmware to downgrade

  • Attention - code above only for T-VALDEUC
  • When editing scripts, always make sure line breaks are done with unix style "LF", NOT Windows' "CRLF"!