Quote:
Originally Posted by saj2001ind
yeah I got the boot.img there, can you pls tell me exect steps to do this recivery ? also there are revovery and other files, will those be required ?
|
You flash boot.img from your PC using the following commands sequence (assuming your boot image file is named boot.img) after you put your phone into Fastboot USB mode (if connected to PC, typing "adb reboot-bootloader" from where your adb and fasfboot files are stored will also get you to that mode):
fastboot flash boot boot.img
fastboot erase cache
fastboot reboot-bootloader
The last command will reboot your phone into bootloader. From there, select HBOOT, then RECOVERY, then restore your STOCK backup from your phone's SDCARD. Recommended is also erasing the dalvik cache after a successful restore by using
adb reboot-bootloader
Once in bootloader, HBOOT-Recovery again, go to advanced and choose Erase Dalvik Cache. Then reboot.
Necessary system and data files will be restored in restore operation. If you are on CWM Recovery and would like to restore your stock recovery, then the recovery.img file is also needed on your PC. When the phone is in FASTBOOT USB mode, type
fastboot flash recovery <name of recovery>.img
|