Hi, is there a way to create a backup for the recovery ?
I cant find an app to do it
Tried to use the search but no sucess thanks
I cant find an app to do it
Tried to use the search but no sucess thanks
what do mean by thatHi, is there a way to create a backup for the recovery ?
I cant find an app to do it
Tried to use the search but no sucess thanks
I want to backup the recovery itself, I know its a noob question but here's why, I have 2 phones, the same model, and I flashed one with a clockwork recovery and it failed, so I lost itwhat do mean by that
do you try to backup the recovery its self or backup the rom using recovery
why don't you look at this thread this should be easyI want to backup the recovery itself, I know its a noob question but here's why, I have 2 phones, the same model, and I flashed one with a clockwork recovery and it failed, so I lost it
Then I'm trying to backup the recovery from the phone that is good, and restore it into the fault one...
Yeah sure, but, isn't there a way to just take the recovery from one phone and then flash it into the other ?why don't you look at this thread this should be easy
http://forum.xda-developers.com/showthread.php?t=1204500
make sure your phone are unlocked and have a moto-fastboot
in my experience you can back up recovery by using nandroid but that waste of timeYeah sure, but, isn't there a way to just take the recovery from one phone and then flash it into the other ?
Like, get a img file from a phone and use it in the other.
I wanted to know if there was a way to download from a phone and upload to another one, and its not a file that never changes, it does changes.The recovery is a single flashable file of up to 8 MB in size that never changes. Why bother mirroring from one phone to another when you can just simply download a working recovery and flash it?
I don't get it.
You need to read all the replies in this thread again because you're clearly not understanding the point, or you have some misconceptions about how things work. Or both.
Who ever said it is impossible? It is in fact trivial - just dd the whole partition. Some research of your own and I'm sure you would've figuted that out yourself. Recovery is even a part of most nandroid backups. But why bother doing that? It is just pointless.
Also I don't know why do you insist that recovery somehow changes. It literally NEVER changes. Unless you change it intentionally, by flashing a different recovery or messing up the existing one somehow.
The only way I can think of to do what you want to do requires you to have both devices. It requires you to have a nandroid backup on device #1. Take this file and move it to your computer. Boot device #2 up so its ready for fastboot. Open up Command Prompt and navigate to where your fastboot files are. Place the recovery.img in this folder. Connect device #2 to your computer. Run the command "fastboot flash recovery recovery.img" This should do what you want done.Ok I dont really want talk about it anymore, if I want to do that, is for a reason, I just wanted to download the recovery img from one phone and upload it to the other, its the stock recovery, but everyone keeps telling me to do a clockworkmod or something.
Since all of you want me to do something else, I assume that is just impossible to download the recovery img, wonder how you guys help ppl here.
Thanks
$ su
# busybox dd if=/dev/block/mmcblk0p10 of=/sdcard/recovery.img
Found something, similar to what you said, then flashed using "flash_image recovery /sdcard/recovery.img"Is the other phone rooted? If not, there is nothing you can do.
If it is, install busybox from the market if you haven't already, then try this (in android terminal or via adb):
I hope you're sufficiently familiar with command-line tools.Code:$ su # dd if=/dev/block/mmcblk0p10 of=/sdcard/recovery.img
I have no idea if this will work on a stock ROM, hopefully it will.