[GUIDE] Official HBOOT v2.xx Downgrade to OLD HBOOT

Search This thread

Skanob

Senior Member
Feb 19, 2011
598
631
Perth
UPDATED as of 18 DEC 2012 clarified and fixed some things..


Worldwide disclaimer not held responsible if something went wrong blah blah blah goes here..


THIS GUIDE WILL VOID YOUR WARRANTY BECAUSE OF THE HTC-DEV UNLOCK METHOD!!! And you can only use this guide if you are on HBOOT v2.xx


This guide may also be used for DEBRANDING your phone..


Check my sig first, then these for proper and additional information:

[GUIDE] Possible FIX for the infamous eMMC problem..

[Q] Bricked my phone?


NOTE:
RUUs with v1.xxx have HBOOTs with v0.98.000, while v2.xxx have HBOOTs with 2.00.002, and the ICS RUU has the only HBOOT v2.02.002


I will not supply the necessary files that is needed, you MUST know how to use SEARCH. I also suggest to give THANKS to those who originally made/uploaded the files.


Requirements:
Common Sense
- it helps A LOT

HTC Sync for Desire S - Installed
- for its drivers and such, or you may just install the "naked" drivers

Android Windows Tools - Installed
- for adb, fastboot commands

HTC-Dev unlocked
- to change recovery and ROM

Custom recovery
- to flash Root Access

SuperSU or SuperUser flashable zip
- to have Root Access

Root Access
- to change phone version

misc_version file (attached)
- file needed to change phone version

GoldCard
- to flash any version of RUUs

RUU executable file
- to DOWN/UPgrade


Quick tip:
Copy-Paste the cmd codes for you to not have any problem. 1 typo error (extra digit on misc_version) will render your phone unable to RUU.


Preparations
a. Create a folder "downsaga" on your C:

b. Copy misc_version, recovery.img(custom) on that folder.

c. Copy SuperSU's or SuperUser's flashable zip to your SD card.


Creating a Gold Card (use below or attn1's GoldCard Method)
a. Install Goldcard Helper from the market on your phone

b. Run it and copy the CID for MMC2, or email the info to yours

c. This number has already been reversed so go to http://psas.revskills.de/?q=goldcard, fill out the required fields.

d. Download the image file that was emailed to you.

e. Connect phone as a "Disk drive" using USB cable.

f. Use Gold Card Tool to flash your image file to your phone's SD card. (you might need to reformat it first with Panasonic's SD Formatter)

g. Disconnect safely from the PC.

NOTE:Your sd card is now a GoldCard unless you reformat it again. You should now be able to RUU to any version you would like given that the bootloader is LOCKED.


Unlocking the bootloader
a. Go to htcdev.com/bootloader

b. Proceed and follow every step on the guide

c. You just need to install Android Windows Tools files for it. No need to download the SDK and JAVA.

d. Once done, boot on bootloader and you should be able to notice if its UNLOCKED.


Flashing Custom Recovery
a. The phone must be on bootloader, then go to fastboot

b. Open up command prompt then type:
Code:
fastboot flash recovery C:\downsaga\recovery.img
fastboot reboot-bootloader

d. Access recovery


Flashing Root Access
a. Flash SuperSU or SuperUser

b. Reboot the phone normally


Modifying the version of your phone
a. Connect the phone using USB cable using "Charge ONLY" and USB Debugging is ON.

b. Open command prompt and input these codes:
Code:
adb push C:\downsaga\misc_version /data/local/tmp
adb shell chmod 777 /data/local/tmp/misc_version
adb shell
su
cd /data/local/tmp
./misc_version -s 1.27.405.6
exit
adb reboot-bootloader

c. Your phone should now be read as the version you've placed there (but not visible to settings)


Locking the bootloader
a. You should be on fastboot

c. In cmd use this command to lock the bootloader:
Code:
fastboot oem lock

c. You might receive an error message on your CMD but don't mind it. The phone should restart itself automatically on bootloader, and you should be able to notice at the top saying "***RE-LOCKED***", and might also has *Security Warning*. Just ignore.


Downgrading
a. Make sure you are still on fastboot with the above message.

b. Open the RUU that you've chosen to install on your phone

c. The RUU must detect your phone version as 1.27.405.6

d. If you have received errors, then you've done something wrong. Review everything that you've done and check the guide again.


If everything went well, you should have successfully downgraded your phone and your HBOOT.
 

Attachments

  • misc_version_by_sonikz.zip
    4.8 KB · Views: 14,403
Last edited:

amidabuddha

Senior Member
Jun 26, 2011
2,441
2,458
Hey man it seems you did it! So HTC official unlocker can be handy after all.
Great job! I assume that now you will use Revolutionary to gain S-OFF and back to flashing? :)
 

NikMel

Senior Member
Dec 10, 2006
660
24
And howto flash your hboot in recoverymode

Use flash_image to flash your hboot to older version.
flash_image /dev/block/mmcblk0p18 )(path to an older hboot file)
 

attn1

Inactive Recognized Developer
Mar 18, 2010
2,554
1,816
Step 1: Creating a Gold Card

a. Install Goldcard Helper from the market

b. Run it and copy the CID for MMC2, or email the info to yours

c. This number has already been reversed so go to http://psas.revskills.de/?q=goldcard, fill out the required fields.

d. Download the image file that was emailed to you.

e. Connect phone as a "Disk drive" using USB cable.

f. Use Gold Card Tool to flash your image file to your phone's SD card. (you might need to reformat it first with Panasonic's SD Formatter and then format it with the Gold Card Tool again)

g. Disconnect safely from the PC, and disconnect the cable.

Why would you use such an obsolete method to make a gold card?

after temproot,

windows batch script ( example filename: gc.cmd ):
Code:
adb push goldcard /data/local/tmp/
adb shell chmod 777 /data/local/tmp/goldcard
adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid > tcid
set/p cid= < tcid
del tcid
adb shell /data/local/tmp/goldcard -c %cid% -o /data/local/tmp/goldcard.img
adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

Linux shell script (example filename: gc.sh ):
Code:
adb push goldcard /data/local/tmp/
adb shell chmod 777 /data/local/tmp/goldcard
cid=`adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid`
adb shell /data/local/tmp/goldcard -c $cid -o /data/local/tmp/goldcard.img
adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

get the android goldcard binary here:

Thanks to Revskills for the algorythm and to GenePoole for the Android binary.

With this, the entire process can be scripted.
 

Attachments

  • goldcard.zip
    9.8 KB · Views: 7,343
Last edited:

Skanob

Senior Member
Feb 19, 2011
598
631
Perth
Why would you use such an obsolete method to make a gold card?

after temproot,

windows batch:
Code:
adb push goldcard /data/local/tmp/
adb shell chmod 777 /data/local/tmp/goldcard
adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid > tcid
set/p cid= < tcid
del tcid
adb shell /data/local/tmp/goldcard -c %cid% -o /data/local/tmp/goldcard.img
adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

Linux Shell:
Code:
adb push goldcard /data/local/tmp/
adb shell chmod 777 /data/local/tmp/goldcard
cid=`adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid`
adb shell /data/local/tmp/goldcard -c $cid -o /data/local/tmp/goldcard.img
adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

get the android goldcard binary here:

Thanks to Revskills for the algorythm and to GenePoole for the Android binary.

With this, the entire process can be scripted.

well, that obsolete-method for me is a hell-of-a-lot easier and noob-proof. no code needed. and also leaves you a copy of your goldcard.img
 
Last edited:

attn1

Inactive Recognized Developer
Mar 18, 2010
2,554
1,816
well, that obsolete-method for me is a hell-of-a-lot easier and noob-proof. no code needed. and also leaves you a copy of your goldcard.img


No way is it easier or noob proof. When I used this method on the Ace Hack Kit goldcard errors dropped to none. Since you are already running adb commands and pushing crap to the phone, what's the big deal with this?

With this, there is no need for hacky tools, not mounting/dismounting the sdcard (risking corruption from unflushed write buffers and improper dismounts), and no need to go to the revskills website.
This runs in about a second and it's done.
 
Last edited:

Skanob

Senior Member
Feb 19, 2011
598
631
Perth
No way is it easier or noob proof. When I used this method on the Ace Hack Kit goldcard errors dropped to none. Since you are already running adb commands and pushing crap to the phone, what's the big deal with this?

With this, there is no need for hacky tools, not mounting/dismounting the sdcard, and no need to go to the revskills website or copy files back from email. This runs in about second and it's done.

I believe that that is based on your preference. Which I observed really knows a lot about adb.

And what is in the guide is based on my own preference. Which for me does not know much about adb.

They still can follow which ever method they would like.

Well, it would still give us the same result. Having a GoldCard.
 
  • Like
Reactions: rawdealer

attn1

Inactive Recognized Developer
Mar 18, 2010
2,554
1,816
I believe that that is based on your preference. Which I observed really knows a lot about adb.

And what is in the guide is based on my own preference. Which for me does not know much about adb.

They still can follow which ever method they would like.

Well, it would still give us the same result. Having a GoldCard.

Mine is based on real results after thousands of uses of the Ace Hack Kit, which formerly did things the obsolete way.

Yours is based on preference.

But you are right, either way will result in a goldcard if executed properly.
 
Last edited:

Skanob

Senior Member
Feb 19, 2011
598
631
Perth
Mine is based on real results after thousands of uses of the Ace Hack Kit, which formerly did things the obsolete way.

Yours is based on preference.

But you are right, either way will result in a goldcard if executed properly.

yeah. I'll update the guide with your method aswell. Thanks aswell!

High five! :)
 
  • Like
Reactions: rawdealer

attn1

Inactive Recognized Developer
Mar 18, 2010
2,554
1,816
yeah. I'll update the guide with your method aswell. Thanks aswell!

High five! :)

You're welcome.

Make a note that those are the contents of a script - .cmd or .sh.

FYI, if you try this to make the goldcard image, the one generated should match the md5 of one you got from Revskills.

Once you do it this way, you will never go back.
 

amidabuddha

Senior Member
Jun 26, 2011
2,441
2,458
@Scanob

Since you change your guide in step 6 to run RUU instead of PG88IMG.zip than the Goldcard is no longer needed isn't it?
 

barthdvs

Senior Member
Jan 13, 2011
86
11
JACOU
I don't know how to find this official recovery.img. (Yes I try to find it...)

Step 4: Flashing official recovery.img
 

McSpee

Member
Sep 7, 2008
43
16
Arras
@barthdvs

Getting the Official files

a. Download the HTC_EUROPE_2.10.401.5 RUU file.

b. Run the file and do not close

c. Go to your temp folder on your computer and find the rom.zip file.

d. Copy it somewhere else.

e. Extract the rom.zip and you should now have the official .img files from the RUU.

f. Use the respective files needed for the guide.

or the files is here (files exrtract from HTC_EUROPE_2.10.401.5 RUU file)
Boot.img : http://www.multiupload.com/JME2WRDQEQ
recovery.img : http://www.multiupload.com/MX64VDUICI
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 108
    UPDATED as of 18 DEC 2012 clarified and fixed some things..


    Worldwide disclaimer not held responsible if something went wrong blah blah blah goes here..


    THIS GUIDE WILL VOID YOUR WARRANTY BECAUSE OF THE HTC-DEV UNLOCK METHOD!!! And you can only use this guide if you are on HBOOT v2.xx


    This guide may also be used for DEBRANDING your phone..


    Check my sig first, then these for proper and additional information:

    [GUIDE] Possible FIX for the infamous eMMC problem..

    [Q] Bricked my phone?


    NOTE:
    RUUs with v1.xxx have HBOOTs with v0.98.000, while v2.xxx have HBOOTs with 2.00.002, and the ICS RUU has the only HBOOT v2.02.002


    I will not supply the necessary files that is needed, you MUST know how to use SEARCH. I also suggest to give THANKS to those who originally made/uploaded the files.


    Requirements:
    Common Sense
    - it helps A LOT

    HTC Sync for Desire S - Installed
    - for its drivers and such, or you may just install the "naked" drivers

    Android Windows Tools - Installed
    - for adb, fastboot commands

    HTC-Dev unlocked
    - to change recovery and ROM

    Custom recovery
    - to flash Root Access

    SuperSU or SuperUser flashable zip
    - to have Root Access

    Root Access
    - to change phone version

    misc_version file (attached)
    - file needed to change phone version

    GoldCard
    - to flash any version of RUUs

    RUU executable file
    - to DOWN/UPgrade


    Quick tip:
    Copy-Paste the cmd codes for you to not have any problem. 1 typo error (extra digit on misc_version) will render your phone unable to RUU.


    Preparations
    a. Create a folder "downsaga" on your C:

    b. Copy misc_version, recovery.img(custom) on that folder.

    c. Copy SuperSU's or SuperUser's flashable zip to your SD card.


    Creating a Gold Card (use below or attn1's GoldCard Method)
    a. Install Goldcard Helper from the market on your phone

    b. Run it and copy the CID for MMC2, or email the info to yours

    c. This number has already been reversed so go to http://psas.revskills.de/?q=goldcard, fill out the required fields.

    d. Download the image file that was emailed to you.

    e. Connect phone as a "Disk drive" using USB cable.

    f. Use Gold Card Tool to flash your image file to your phone's SD card. (you might need to reformat it first with Panasonic's SD Formatter)

    g. Disconnect safely from the PC.

    NOTE:Your sd card is now a GoldCard unless you reformat it again. You should now be able to RUU to any version you would like given that the bootloader is LOCKED.


    Unlocking the bootloader
    a. Go to htcdev.com/bootloader

    b. Proceed and follow every step on the guide

    c. You just need to install Android Windows Tools files for it. No need to download the SDK and JAVA.

    d. Once done, boot on bootloader and you should be able to notice if its UNLOCKED.


    Flashing Custom Recovery
    a. The phone must be on bootloader, then go to fastboot

    b. Open up command prompt then type:
    Code:
    fastboot flash recovery C:\downsaga\recovery.img
    fastboot reboot-bootloader

    d. Access recovery


    Flashing Root Access
    a. Flash SuperSU or SuperUser

    b. Reboot the phone normally


    Modifying the version of your phone
    a. Connect the phone using USB cable using "Charge ONLY" and USB Debugging is ON.

    b. Open command prompt and input these codes:
    Code:
    adb push C:\downsaga\misc_version /data/local/tmp
    adb shell chmod 777 /data/local/tmp/misc_version
    adb shell
    su
    cd /data/local/tmp
    ./misc_version -s 1.27.405.6
    exit
    adb reboot-bootloader

    c. Your phone should now be read as the version you've placed there (but not visible to settings)


    Locking the bootloader
    a. You should be on fastboot

    c. In cmd use this command to lock the bootloader:
    Code:
    fastboot oem lock

    c. You might receive an error message on your CMD but don't mind it. The phone should restart itself automatically on bootloader, and you should be able to notice at the top saying "***RE-LOCKED***", and might also has *Security Warning*. Just ignore.


    Downgrading
    a. Make sure you are still on fastboot with the above message.

    b. Open the RUU that you've chosen to install on your phone

    c. The RUU must detect your phone version as 1.27.405.6

    d. If you have received errors, then you've done something wrong. Review everything that you've done and check the guide again.


    If everything went well, you should have successfully downgraded your phone and your HBOOT.
    16
    Step 1: Creating a Gold Card

    a. Install Goldcard Helper from the market

    b. Run it and copy the CID for MMC2, or email the info to yours

    c. This number has already been reversed so go to http://psas.revskills.de/?q=goldcard, fill out the required fields.

    d. Download the image file that was emailed to you.

    e. Connect phone as a "Disk drive" using USB cable.

    f. Use Gold Card Tool to flash your image file to your phone's SD card. (you might need to reformat it first with Panasonic's SD Formatter and then format it with the Gold Card Tool again)

    g. Disconnect safely from the PC, and disconnect the cable.

    Why would you use such an obsolete method to make a gold card?

    after temproot,

    windows batch script ( example filename: gc.cmd ):
    Code:
    adb push goldcard /data/local/tmp/
    adb shell chmod 777 /data/local/tmp/goldcard
    adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid > tcid
    set/p cid= < tcid
    del tcid
    adb shell /data/local/tmp/goldcard -c %cid% -o /data/local/tmp/goldcard.img
    adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

    Linux shell script (example filename: gc.sh ):
    Code:
    adb push goldcard /data/local/tmp/
    adb shell chmod 777 /data/local/tmp/goldcard
    cid=`adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid`
    adb shell /data/local/tmp/goldcard -c $cid -o /data/local/tmp/goldcard.img
    adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

    get the android goldcard binary here:

    Thanks to Revskills for the algorythm and to GenePoole for the Android binary.

    With this, the entire process can be scripted.
    12
    To noobs, lazy people and semi-pros new to Android tinkering

    A couple of days ago when I decided to check out CyanogenMod I knew close to nothing about tinkering with the HTC phones, Android and custom ROMs. So the first surprise I got was that my HBOOT version (v. 2.00.0002) was not supported by Revolutionary (http://revolutionary.io/). So I turned that into a Google search for "htc desire s downgrade hboot" and after 1 hour of detours I found this thread, great. Then I quickly came to realize that I didn't understand much of those steps mentioned and after additional 12 hours of dedicated searching/learning/trying basic stuff I finally felt that I understood enough to just give it a try. So i tried out the steps I deemed necessary and it worked! I'm not a hboot 0.98.0000 ready to take on CyanogenMod

    So to people like me (new to android tinkering) but not willing to or capable of doing their own research / learning, here is my situation and what I did:

    # My pre-this-guide-situation
    Software number: 2.10.401.8 (not .5)
    HBOOT: 2.00.0002

    # Which steps I followed from this guide (and how)

    #1: Unlock the bootloader
    http://htcdev.com/bootloader -> "Begin Unlock Bootloader". The steps there are very detailed and easy to follow. It also explains how to use adb and fastboot to interact with the phone. Remember that when you later see something like
    Code:
    adb push

    #2: Step 1: Creating a Gold Card (not sure I really needed it)
    I originally thought I needed this step, so I did it way before I was ready to follow the rest of the guide, and I did not undo it, so I can't say for sure if it is needed or not in this situation.
    As far as I can tell it is only needed if you are going to flash roms by other means that he official RUU-.exe files. And since I did not do that, I guess the gold card is not needed.

    a. Install "Goldcard Helper" from the market on your phone

    b. Run it to obtain the CID for MMC2. This number is needed in step c, so write it down, e-mail it to your self from your phone or the like.

    c. Go to http://psas.revskills.de/?q=goldcard and fill in CID and hit "Download Goldcard!"

    d. Save the file goldcard.img to your hdd

    e. Connect phone as a "Disk drive" using USB cable.

    f. Use Gold Card Tool (Google -> "Gold Card Tool" -> find somewhere to download a file called something like goldcardtool.exe 1Mb in size) to flash your image file to your phone's SD card.

    g. Disconnect safely from the PC, and disconnect the cable.

    #3: Get zergRush exploit working
    Follow this guide: http://xdaforums.com/showthread.php?t=1296916
    If you get an error when running zergRush (most likely because you have already ran it, rebooted the phone and want to run it again) check this out: http://androidforums.com/3522796-post454.html
    When the guide mentions "you will need an adb shell" and "Push the binary onto /data/local/" you will need some adb-skills. Get those from these tutorialshttp://www.xda-developers.com/android/adb-easy-tutorial/ and http://www.youtube.com/watch?v=RieL7vHt6AE

    #4: Step 2: Modifying the version of your phone
    a. Connect the phone using USB cable using "Charge ONLY" and USB Debugging is ON.

    b. The misc_version file is attached to this thread (in Skanob original post). Download it and put it somewhere smart like c:\android, c:\android\downsaga\ or c:\downsaga.

    c. Open a command prompt and run these commands:
    (go to the folder created in #1 which contains adb.exe, "c:\android" in HTCs unlock bootloader guide. Maybe check this tutorial: http://www.xda-developers.com/android/adb-easy-tutorial/. Also notice that running "adb shell" from the folder where adb.exe resides gives you a "shell" where you do not need to put "adb" in front of all your commands)

    Code:
    adb push C:\downsaga\misc_version /data/local/tmp
    adb shell chmod 777 /data/local/tmp/misc_version
    adb shell
    /data/local/zergRush
    cd /data/local/tmp
    ./misc_version -s 1.27.405.6
    exit
    adb reboot bootloader
    Remember #3 if you get an error when trying to execute /data/local/zergRush.

    #5: Step 5: Locking the bootloader

    a. Connect phone on fastboot (should already be done if you executed the last "adb reboot bootloader"-command from #4)

    b. In the already open (if you did not close the prompt from #4) run this command:
    Code:
    fastboot oem lock
    c. You might receive an error message in your command prompt but don't mind it. The phone will now restart it self and boot into the android os.

    #6: Step 6 Downgrading
    a. Get yourself an old official RUU from here: http://xdaforums.com/showthread.php?t=1002506 .
    I used "RUU_Saga_HTC_Europe_1.28.401.1_Radio_20.28b.30.080 5U_38.03.02.11_M_release".
    You should choose one which contains the right region, e.g. Europe, Asia, and one which is significantly older than 2.10.401. Maybe it's even a requirement to have a 1.2.x RUU (I don't know)

    b. Connect the phone on fastboot. Either turn off the phone and hold down volume_down+power_on or issue "adb reboot bootloader" from a command prompt

    c. Launch the RUU-.exe file (RUU_Saga_HTC_Europe....exe) you have just downloaded.

    d. After pressing "Next" a couple of times a screen should appear saying something like: "Current information about your Android-phone: Image version: 1.27.405.6". It needs to say 1.27.405.6 (mine said 1.27.405.68 and still worked though). If it says something else go back to step #3.

    e. Continue by clicking "Next", "Update now", "Yes I really mean it" and so on.

    f. It the RUU does not error out at some point but displays you a nice "Congratulations, your phone has been successfully ...."-screen you are home safe. Everything probably worked.

    g. Reboot to the bootloader (power off -> vol_down + power_on_off or "adb reboot bootloader") and verify that it now reads: "HBOOT 0.98.0000"



    I hope this can help some hesitant / not very self confident people (and lazy people of course). Remember to [Thank] Skanob for his work - it's his method, I (and all the other replies to this thread) merely seeks to make it easier to understand for others.

    Thanks
    Wuhtzu
    3
    Why would you use such an obsolete method to make a gold card?

    after temproot,

    windows batch:
    Code:
    adb push goldcard /data/local/tmp/
    adb shell chmod 777 /data/local/tmp/goldcard
    adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid > tcid
    set/p cid= < tcid
    del tcid
    adb shell /data/local/tmp/goldcard -c %cid% -o /data/local/tmp/goldcard.img
    adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

    Linux Shell:
    Code:
    adb push goldcard /data/local/tmp/
    adb shell chmod 777 /data/local/tmp/goldcard
    cid=`adb shell cat /sys/class/mmc_host/mmc2/mmc2:*/cid`
    adb shell /data/local/tmp/goldcard -c $cid -o /data/local/tmp/goldcard.img
    adb shell dd if=/data/local/tmp/goldcard.img of=/dev/block/mmcblk1

    get the android goldcard binary here:

    Thanks to Revskills for the algorythm and to GenePoole for the Android binary.

    With this, the entire process can be scripted.

    well, that obsolete-method for me is a hell-of-a-lot easier and noob-proof. no code needed. and also leaves you a copy of your goldcard.img
    3
    @barthdvs

    Getting the Official files

    a. Download the HTC_EUROPE_2.10.401.5 RUU file.

    b. Run the file and do not close

    c. Go to your temp folder on your computer and find the rom.zip file.

    d. Copy it somewhere else.

    e. Extract the rom.zip and you should now have the official .img files from the RUU.

    f. Use the respective files needed for the guide.

    or the files is here (files exrtract from HTC_EUROPE_2.10.401.5 RUU file)
    Boot.img : http://www.multiupload.com/JME2WRDQEQ
    recovery.img : http://www.multiupload.com/MX64VDUICI