View Single Post
  #73 (permalink)  
Old 01-11-2010, 02:29 AM
nerdherd's Avatar
nerdherd
Regular 'Geeker
Offline
 
Join Date: Jun 2009
Posts: 252
Reputation: 165
nerdherd is keeping up the good worknerdherd is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: How-To: Root your Droid

Here are instructions copied from http://www.sholes.info/howto-install...te-sprecovery/.

Quote:
Updating to the newest recovery image:

1. Download the newest recovery image and save it to your desktop.

2. Reboot into recovery mode using either X on the keyboard during boot or use
Code:
adb reboot recovery
3. Use the “mount options” menu to mount the SDCard.

4. Push the recovery image to /sdcard using adb.

Linux and OS X:
Code:
$ cd ~/Desktop
$ adb push recovery-0.99.2b.img /sdcard/
Windows:
Code:
$ cd /d %USERPROFILE%\Desktop
$ adb push recovery-0.99.2b.img /sdcard/
5. Run these commands.

Code:
adb shell
/ # flash_image recovery /sdcard/recovery-0.99.2b.img
/ # exit
adb reboot recovery
If all went well you should be upgraded to the latest recovery image, and the version number at the top of the screen should reflect that.
Reply With Quote