furbearingmammal
Super Moderator
Linux live CD and the SBF Flashing program noted in the first post.
i havent gotten this update yet ... if i get ot and install, will this method still work to reroot the fone ?
package_extract_dir("recovery", "/system");
set_perm_recursive(0, 0, 0755, 0644, "/system");
set_perm_recursive(0, 2000, 0755, 0755, "/system/bin");
[B]set_perm(0, 0, 6755, "/system/bin/su");[/B]
Its in the /cache directory with a really long file name
I updated this am using the ota update without having to lose root and it was pretty painless. I oopened up the update archive and removed the updates to system apps I've removed and then appied the update. Before rebooting I mounted the sd card as a device then I took motocaches update zip and remove the install stuff for busy box or superuser to prevent stock recovery from kicking in and now I'm happily updated.
Sent from my Droid using DroidForums App
Its in the /cache directory with a really long file name
I updated this am using the ota update without having to lose root and it was pretty painless. I oopened up the update archive and removed the updates to system apps I've removed and then appied the update. Before rebooting I mounted the sd card as a device then I took motocaches update zip and remove the install stuff for busy box or superuser to prevent stock recovery from kicking in and now I'm happily updated.
Sent from my Droid using DroidForums App
That would work also -- everyone else just keep in mind that you MUST go directly back into your custom recovery and apply MotoCache's zip before booting to your FRG83D system the first time, otherwise you will need to do the entire (sbf) process again.
The technique I mentioned essentially just makes sure that the OTA update does not disable your root, and you can do the update in one pass.
First time rooter. Went quick and was painless. Thanks for the info!
I'm attempting to install the OTA update using your instructions here but am coming up short. My Droid is running 2.2 rooted with the method at the begining of this thread (worked perfectly!). I've edited the updater-script in the FRG83D OTA update with the information above. I removed the line with package_extract_dir("recovery", "/system"); and added the line with set_perm(0, 0, 6755, "/system/bin/su"); immediately after linei havent gotten this update yet ... if i get ot and install, will this method still work to reroot the fone ?
This method will always work (it says any version doesn't it? ) but you can save some time with some work beforehand as this update will overwrite your custom recovery and remove root access.
Edit the meta-inf/com/google/android/updater-script in the FRG83D update.zip to keep your custom recovery and root access, then install the update.zip using SPRecovery.
Changes:
Line 1054 (comment with # or delete entirely)
Add bolded after line 1058Code:package_extract_dir("recovery", "/system");
Code:set_perm_recursive(0, 0, 0755, 0644, "/system"); set_perm_recursive(0, 2000, 0755, 0755, "/system/bin"); [B]set_perm(0, 0, 6755, "/system/bin/su");[/B]
Note this will only work if you haven't messed with your FRG22D too much, mainly that no system apps have been removed. You can still get it work if you uninstalled some apps, you just have to find the lines that patch that app and remove them from the script.
Also, can we PLEASE stay on topic??