Thread: Open Recovery v1.46 [11/21/2010]
- 05-10-2010 08:15 AM #16
Itty Bitty Modder
- Join Date
- Oct 2008
- Posts
- 4
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 9
- Uploads
- 0
- 05-10-2010 03:56 PM #17
Until the signature bypass is available it will always be this way. So yeah, to start OpenRecovery you have to apply the update.zip in the stock vulnerable recovery.

Thanks Semseddin for the signature and avatar.
- 05-10-2010 05:39 PM #18
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 9
- Thanks
- 3
- Thanked 0 Times in 0 Posts
- Downloads
- 5
- Uploads
- 0
- 05-10-2010 11:47 PM #19
Yeah.

Thanks Semseddin for the signature and avatar.
- 05-11-2010 06:02 AM #20
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 12
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 8
- Uploads
- 0
hi,
first to all: thank's for make your work available for all. i like to have nandroid backup/restore directly on my phone!
in the past, i used the AdbRecovery v6 update to connect my phone to pc for make backup/restore and for execute very large scripts.
is possible to have access to this functionallity using your update?
is like this:
create the /sdcard/recovery and copy the adbRecovery files
copy the adbrecovery "update.zip" to the /sdcard/OpenRecovery/Updates/adbRecovery.zip
Boot the milestone in recovery mode,
apply your recovery,
navigate to the "apply update" option in your menu
navigate to the "apply adbRecovery" on the menu and click
??
or is possible to add a single option in your recovery menu to allow to connect with the
pc ??
thank'sLast edited by bartito; 05-11-2010 at 06:06 AM.
- 05-11-2010 09:35 AM #21
You should be able to connect to adb without problems. It is running in open recovery.

Thanks Semseddin for the signature and avatar.
- 05-12-2010 01:10 AM #22
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 12
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 8
- Uploads
- 0
good !!
i will try later
- 05-13-2010 05:14 AM #23
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 2
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 5
- Uploads
- 0
Hey,
Great work !
What are you planing in your next releases?
- 05-13-2010 07:09 AM #24
What have I done so far:
- scripts print to the recovery UI (stdout only)
- different menu creation
- installing busybox, bash (change in adb as well), simple startup manager, dalvik cache in cache
What have I not done so far:
- application menu (for example disable / enable specific feature like font mount on startup etc)
Thanks Semseddin for the signature and avatar.
- 05-13-2010 05:32 PM #25
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 8
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 4
- Uploads
- 0
is possible to run two commands on a single option from the menu?
for example, that an option to run one xxx.sh and then open another menu?
thanks
edit: or I can do to open a submenu from a xxx.sh?Last edited by guidosl; 05-13-2010 at 07:31 PM.
- 05-14-2010 04:49 AM #26
Well that's not done in 1.05 very well, it's going to be in the next version. Right now you can use 'init' item in the main menu as a "hotfix". And in the new version it will run a script and open a menu (which can be altered by the script at will).
Last edited by Skrilax_CZ; 05-14-2010 at 04:57 AM.

Thanks Semseddin for the signature and avatar.
- 05-14-2010 05:33 AM #27
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 12
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 8
- Uploads
- 0
hi,
the adbRecovery commands (backup and restore) consumes a very large time.
no problem with that. it's ok!
during the backup/restore time, the lcd is on, and the battery drains.
in order to correct that, i have maked a small change on your terrific mod.
1) Create a /sdcard/OpenRecovery/bin/nandroid-mobile_adbrecovery.ind.sh
with the next contents
2) Update the /sdcard/OpenRecovery/bin/adbrecovery_init.sh#!/sbin/sh
echo 0 > /sys/class/leds/lcd-backlight/brightness
/sdcard/OpenRecovery/bin/nandroid-mobile_adbrecovery.sh "$@"
echo 2 > /sys/class/leds/lcd-backlight/brightness
in order to call nandroid-mobile_adbrecovery.ind.sh in substitution to
nandroid-mobile_adbrecovery.sh
the contents of the updated file is:
seems a good solution. but don't work's.#!/sbin/sh
# Generate backup menu
echo "Nandroid Backup" > /sdcard/OpenRecovery/menu/adbrecovery_backup.menu
echo "Go Back:menu:init.menu" >> /sdcard/OpenRecovery/menu/adbrecovery_backup.menu
echo "Backup All:shell:nandroid-mobile_adbrecovery.ind.sh -b -q --norecovery" >> /sdcard/OpenRecovery/menu/adbrecovery_backup.menu
echo "Backup System Only:shell:nandroid-mobile_adbrecovery.ind.sh -b -q --nodata --nocache --nobpsw --noboot --norecovery --nocust --nomisc" >> /sdcard/OpenRecovery/menu/adbrecovery_backup.menu
echo "Backup Data Only:shell:nandroid-mobile_adbrecovery.ind.sh -b -q --nosystem --nocache --nobpsw --noboot --norecovery --nocust --nomisc" >> /sdcard/OpenRecovery/menu/adbrecovery_backup.menu
# Generate restore/delete menu
echo "Nandroid Restore" > /sdcard/OpenRecovery/menu/adbrecovery_restore.menu
echo "Nandroid Delete" > /sdcard/OpenRecovery/menu/adbrecovery_delete.menu
echo "Go Back:menu:init.menu" >> /sdcard/OpenRecovery/menu/adbrecovery_restore.menu
echo "Go Back:menu:init.menu" >> /sdcard/OpenRecovery/menu/adbrecovery_delete.menu
if [ -d /sdcard/nandroid/adbrecovery ]
then
cd /sdcard/nandroid/adbrecovery
for dirs in $( ls -c . )
do
echo ":shell:nandroid-mobile_adbrecovery.ind.sh -r -q -s " >> /sdcard/OpenRecovery/menu/adbrecovery_restore.menu
echo ":shell:nandroid-delete_adbrecovery.sh " >> /sdcard/OpenRecovery/menu/adbrecovery_delete.menu
done
fi
please, any help?
Agree!Last edited by bartito; 05-14-2010 at 05:35 AM.
- 05-14-2010 12:05 PM #28
Itty Bitty Modder
- Join Date
- May 2010
- Posts
- 1
- Thanks
- 0
- Thanked 0 Times in 0 Posts
- Downloads
- 1
- Uploads
- 0
dont create backup for me
. Search in the folder for backup is empty.
- 05-19-2010 10:05 PM #29
Itty Bitty Modder
- Join Date
- Apr 2010
- Posts
- 4
- Thanks
- 1
- Thanked 0 Times in 0 Posts
- Downloads
- 16
- Uploads
- 0
For some reason, based on the changelog, busybox should be installed but when I tried to set JIT on my milestone using busybox, it cant find this and I got to install it manually. Am I missing somewhere?
Thanks again Skrilax for your great work and hoping you can integrate the new 'su' on your next release
- 05-20-2010 02:30 AM #30
Ah that's what is in the unreleased version. Yes, new su and superuser is inregrated there in it as well

Busybox is installed only to recovery (/sbin) which is not persistent.
Thanks Semseddin for the signature and avatar.
LinkBacks (?)
- 10-11-2010, 03:59 AM


LinkBack URL
About LinkBacks
Reply With Quote
