Difference between revisions of "How to downgrade T-VALDEUC firmware"
Sisternicky (talk | contribs) m (→Firmware Downgrade without SSH/Telnet or script Execution) |
m (Added warning for not working zero fw from version 3018) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | =Using "the zero" firmware (not rooted TV)= | |
+ | '''without SSH/Telnet or script execution'''<br> | ||
+ | '''WARNING: This doesn't seem to work for firmware version >=3018 anymore (at least for c series, see here: [http://forum.samygo.tv/viewtopic.php?f=10&t=6318#p44767])''' | ||
+ | |||
+ | If you do not have SSH/Telnet access to your TV, it is still possible to downgrade your firmware. For example, if you have 3011 firmware and would like to use SamyGo, you'd need 3005 or 3009 firmware. | ||
+ | To do this, follow these steps: | ||
+ | |||
+ | * Download the following file: | ||
+ | :[http://linksave.in/7663217674f4fbe74196ff rapidshare.com] or [http://uploaded.to/file/muz58fle uploaded.to] | ||
+ | * Extract the file to an USB pendrive (formatted in a file system your TV can read (e.g. FAT32, ext3, NTFS) | ||
+ | * Plug the pendrive into your TV | ||
+ | * There should pop up a message asking you if you want to use the pendrive for "Media Player" or "Software Update". Choose "Software Update". | ||
+ | :Should this message not pop up, go to the TV's menu and select "Software Update" from there | ||
+ | * Follow the procedures for a normal software update from USB. Once the TV is finished, it should restart. Usually, there should come a message up saying "Not for Sale". | ||
+ | * Once your TV is started, you can download any T-VALDEUC firmware on your TV (preferebly from USB), there won't be any version checks. | ||
+ | :Do not use firmware 0000 for "regular" use of your TV since most functions propably won't work (correctly). | ||
+ | |||
+ | =Using shell(rooted TV only)= | ||
How to downgrade if you already have SSH/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.''' fill up run.sh with this code: | '''1.''' fill up run.sh with this code: | ||
Line 18: | Line 35: | ||
* When editing scripts, '''always make sure line breaks are done with unix style "LF", NOT Windows' "CRLF"'''! | * When editing scripts, '''always make sure line breaks are done with unix style "LF", NOT Windows' "CRLF"'''! | ||
− | + | =Firmwares= | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
[[Old_&_Good_Firmwares]] | [[Old_&_Good_Firmwares]] | ||
+ | <br> | ||
+ | <hr> | ||
+ | =References= | ||
+ | [http://forum.samygo.tv/viewtopic.php?p=12695#p12695 topic]: |
Latest revision as of 20:47, 5 March 2014
Contents
Using "the zero" firmware (not rooted TV)
without SSH/Telnet or script execution
WARNING: This doesn't seem to work for firmware version >=3018 anymore (at least for c series, see here: [1])
If you do not have SSH/Telnet access to your TV, it is still possible to downgrade your firmware. For example, if you have 3011 firmware and would like to use SamyGo, you'd need 3005 or 3009 firmware. To do this, follow these steps:
- Download the following file:
- Extract the file to an USB pendrive (formatted in a file system your TV can read (e.g. FAT32, ext3, NTFS)
- Plug the pendrive into your TV
- There should pop up a message asking you if you want to use the pendrive for "Media Player" or "Software Update". Choose "Software Update".
- Should this message not pop up, go to the TV's menu and select "Software Update" from there
- Follow the procedures for a normal software update from USB. Once the TV is finished, it should restart. Usually, there should come a message up saying "Not for Sale".
- Once your TV is started, you can download any T-VALDEUC firmware on your TV (preferebly from USB), there won't be any version checks.
- Do not use firmware 0000 for "regular" use of your TV since most functions propably won't work (correctly).
Using shell(rooted TV only)
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"!