Ya tenemos nuevo recovery. Hago un copy/paste
http://www.megaupload.com/?d=GHB4E6US
Features- full ADB access in recovery mode
- Busybox
- Extended menu (with keyboard-shortcuts):
- Nandroid v2.2 backup and restore
- Regular update.zip flash
- Flash any .zip from your SD-card
- Console
- Wipe data + cache (factory reset)
- Wipe ext partition on SD-card
- Wipe Dalvik-cache on SD-card (NOT on /data !)
- Partition SD-card : 500MB Ext2, 32MB Swap, remaining Fat32
- Partition SD-card : Only Fat32
- Repair ext filesystem
- Convert ext2 to ext3
- Fix package UID mismatches
- Fix auto-rotate issues
- Toggle USB-Mass storage on and off
- Scripts available from console :
Install
There are several ways to install a custom recovery, choose the one that suits you most (I probably forgot a few).
via adb -> Requires a custom recovery (with test-keys) like Cyanogen's v1.4 or my previous recovery
Code:
Copy recovery-RA-dream-v1.2.3.img to the root of your sdcard
Boot into your current custom recovery (boot while holding HOME)
Connect your G1 via usb to your pc/mac/...
adb shell
$su (not required if you have root already)
#mount -a
#flash_image recovery /sdcard/recovery-RA-dream-v1.2.3.img
via console
Code:
Copy recovery-RA-dream-v1.2.3.img to the root of your sdcard
Boot into your current custom recovery (boot while holding HOME)
select console from the menu
$su (not required if you have root already)
#mount -a
#flash_image recovery /sdcard/recovery-RA-dream-v1.2.3.img
via fastboot -> Requires engineerings SPL!
Code:
Copy recovery-RA-dream-v1.2.3.img to a location where fastboot can find it.
Boot your G1 into fastboot mode (boot while holding BACK)
Connect your G1 via usb to your pc/mac/...
fastboot devices (to make sure that fastboot "sees" your device)
fastboot flash recovery recovery-RA-dream-v1.2.3.img
Change-log :
v1.2.3- added squashfs to fstab (should fix issues accessing system and xbin for people using Cyanogen's ROM)
- Replaced the GREEN-key by the HOME-key for confirmation
- Removed the menu title to create more space
- Added Wipe SD
alvik-cache
- Added Rotate fix
- Removed "Move apps to SD" because it's automatically implemented by most ROMs already.
- Added confirmation before performing a nandroid backup
- Set swap back to 32MB instead of 96MB when doing an auto partition SD-card from the menu
- Upgraded fix_permissions to v1.31-R3
- Added BART v0.9.2
- Fixed many bugs (mostly in scripts)