It has been updated again with a nandroid 2.2.2 fix. Some people reported failures in backup make sure to check yours...
Features- full ADB access in recovery mode
- Busybox v1.15.2
- HW-Key navigation (volume keys + CALL-ANSWER) option
- Extended menu :
- Reboot system now :: reboot your phone
- USB-MS Toggle :: enable/disable USB mass storage (use when the phone is connected to your PC)
- Backup/Restore (recovery partition not included!)
- Nand backup :: Make a Nand backup
- Nand + ext backup :: Make a Nand + ext backup
- Nand restore :: Restore a Nand backup
- BART backup :: Make a BART backup (Nand + ext)
- BART restore :: Restore latest BART backup
- Flash zip from sdcard :: Flash a zip update file from your sdcard
- Wipe
- Wipe data/factory reset :: Wipe /data and /cache
- Wipe Dalvik-cache :: Wipe Dalvik-cache both on /data and ext
- Wipe SD:ext partition : Wipe the ext partition on your sdcard
- Wipe battery stats : Wipe the battery stats in /data
- Wipe rotate settings : Wipe the sensor settings in /data
- Partition sdcard
- Partition SD :: Interactive SD partitioning
- Repair SD:ext :: Repair the ext partition
- SD:ext2 to ext3 :: Convert ext2 to ext3
- Other
- Fix apk uid mismatches :: Does extacly that
- Move apps+dalv to SD :: Moves all apps and Dalvik-cache to sdcard (This will NOT enable apps2sd!)
- Move recovery.log to SD :: Moves the recovery log file to your sdcard. (Use when you want more detailed recovery log information)
- Scripts available via adb :
U]
Install[/U]
There are several ways to install a custom recovery, choose the one that suits you most (I probably forgot a few).
put the recovery image on root of SD card, and from cmd prompt
"adb shell"
"su"
"cd /sdcard/"
"flash_image recovery recovery-RA-heroc-v1.5.2.img"
"reboot recovery"
***remove the quotation marks " ****
via adb -> Requires a custom recovery (with test-keys)
Code:
Copy recovery-RA-heroc-v1.5.2.img to the root of your sdcard
Boot into your current custom recovery (boot while holding HOME)
Connect your Hero via usb to your pc/mac/...
adb shell
$su (not required if you have root already)
#mount -a
#flash_image recovery /sdcard/recovery-RA-heroc-v1.5.2.img
via fastboot + adb -> In case you don't have a custom recovery, so when you get signature fail errors
Code:
adb shell reboot bootloader
fastboot boot recovery-RA-heroc-v1.5.2.img
adb shell mount /sdcard
adb push recovery-RA-heroc-v1.5.2.img /sdcard/recovery-RA-heroc-v1.5.2.img
adb shell flash_image recovery /sdcard/recovery-RA-heroc-v1.5.2.img
adb shell reboot
Download
Latest :
Old versions :
Change-log :
v1.5.2
Code:
- Updated Nandroid to v2.2.2 (fix ext restore issues)