+ Reply to Thread
Page 2 of 14 FirstFirst 1 2 3 4 5 6 7 8 9 10 11 12 ... LastLast
Results 16 to 30 of 203
  1. #16
    offline Itty Bitty Modder
    Join Date
    Oct 2008
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Downloads
    9
    Uploads
    0
    Quote Originally Posted by beju View Post
    it's not possible yet AFAIK
    AHHHH OK! tnx

  2. #17
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    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.

  3. #18
    offline Itty Bitty Modder
    Join Date
    May 2010
    Posts
    9
    Thanks
    3
    Thanked 0 Times in 0 Posts
    Downloads
    5
    Uploads
    0
    Quote Originally Posted by Skrilax_CZ View Post
    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.
    So what your saying is just run it like I use to do with ADBRecovery
    right<<<

    If so Thanks..

  4. #19
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    Yeah.

    Thanks Semseddin for the signature and avatar.

  5. #20
    offline 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's
    Last edited by bartito; 05-11-2010 at 06:06 AM.

  6. #21
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    You should be able to connect to adb without problems. It is running in open recovery.

    Thanks Semseddin for the signature and avatar.

  7. #22
    offline 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

  8. #23
    offline 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?

  9. #24
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    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.

  10. #25
    offline 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.

  11. #26
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    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.

  12. #27
    offline 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

    #!/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
    2) Update the /sdcard/OpenRecovery/bin/adbrecovery_init.sh
    in order to call nandroid-mobile_adbrecovery.ind.sh in substitution to
    nandroid-mobile_adbrecovery.sh
    the contents of the updated file is:

    #!/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
    seems a good solution. but don't work's.
    please, any help?

    Agree!
    Last edited by bartito; 05-14-2010 at 05:35 AM.

  13. #28
    offline 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.

  14. #29
    offline Itty Bitty Modder
    Join Date
    Apr 2010
    Posts
    4
    Thanks
    1
    Thanked 0 Times in 0 Posts
    Downloads
    16
    Uploads
    0
    Quote Originally Posted by Skrilax_CZ View Post
    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)
    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

  15. #30
    Skrilax_CZ's Avatar
    offline Retired Moderator
    Join Date
    Feb 2007
    Location
    Prague
    Posts
    5,241
    Thanks
    1,881
    Thanked 3,103 Times in 1,338 Posts
    Downloads
    27
    Uploads
    29
    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 (?)

  1. 10-11-2010, 03:59 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts