This thread is currently being overhauled to add some new and more updated information. If there is something you wish to see in this thread please PM OMJ and I will consider adding information on it. Thanks to CRPercodani and UBRocked for originally putting this thread together. And thanks to Rootyourdroid.info even though the site is gone it provided a wealth of information.
What you need to know first:
Benefits of Rooting
Okay, so you know “how” to Root your phone… but why do it? What exactly can you get out of a Droid that has been rooted?
Well, aside from being cool and geeky, there are a few real benefits. Think of you Droid as a supercar. If you drive it only in subdivision streets, you aren’t really pushing it to its capabilities. However, if you take it to a track or maybe the Autobahn, you can open her up and unleash its power. Obtaining root is like taking your car to the Autobahn, except nerdier!
Enough of the analogies! Show me what I can do.
Most people want to root their phones for one reason: loading custom ROMs. A ROM, when it is applied to smartphone operating systems, is a fully customized image that alters the function and form of the device. For instance, a ROM could be a port of the HTC SenseUI found on Android phones like the Eris and the Hero. A person with root could potentially take this port, if made available, and put it on their Droid. At this time, there are no real custom ROMs for the Droid, though advancements are being made every week.
Another benefit of obtaining Root is the use of Root-only applications. Some applications require Superuser permissions in order to operate. You can think of “Superuser” as a limitless administrative role for the Android OS. It is given full control over what can be done on the software level. Superuser requires Root, and thus, so do certain apps. You can download Terminal apps which allow you to enter Android OS code to communicate with the system, Drocap2 which can take screengrabs anywhere on the phone, Adfree which disables advertisements on the web and in other apps, etc… There are many very cool programs being created specific to Root users!
One of the richest abilities given to Root users is scripting and customization. Given a mix of apps, the SDK, and scripts, Root users can change the way their phone feels and operates. Things like skinning every aspect of the OS, upgrading features that aren’t yet released, and creating all new functionality altogether could not be possible without Root. There is so much capability at such an early phase (remember, the Droid was first rooted only a few weeks ago), it’s an awesome time to be a part of the Root community. There will be groundbreaking discoveries and releases that will completely change the way you think about your Droid.
Rooting your phone is a fun, educational, and useful way of getting the most out of your device. But as always, there are risks involved every step of the way. Just be smart and careful, and don’t get ahead of yourself. I created this site as a guide for the average Joe, but even a plain-English guide can seem daunting for the more advanced operations. You need to keep in mind that by Rooting your Droid, you are most definitely going against the Verizon TOS and will be breaking your warranty. Though there are ways to revert back to a completely Root-free device, I can’t assure you this will not get you into trouble in the future.
Avoid Bricking
If you simply take your time and do things right, you can eliminate much- -if not all- -of that risk!
Obviously, the goal around here isn’t to pile as many non-working Droid’s into landfills as possible. We want you to successfully enhance the ability of your phone! So here are a few tips to help keep you from the dreaded brick…
Bricking a droid is actually quite hard to accomplish because almost anything can be recovered with an sbf file.
Follow directions carefully, making sure to read through them before beginning.
Go slow and take your time on every detail.
Research the action you are about to perform; if you don’t know much about it, become educated.
Trust your instinct. If you are unsure about something, perhaps you shouldn’t try.
Follow instructions fully. If you forget a step or quit before you’re done, there may be problems.
So happy rooting! And remember, as always, we are not responsible for your mistakes.
Preliminary Skills:
USB Debugging
USB Debugging is a common procedure used in Rooting and hacking the Droid. Simply said, it allows the Android Debugging Bridge to work its magic by allowing a seamless handshake between Droid and PC. We use this mode for copying data between the Droid and PC, installing apps, reviewing phone data, and for development purposes. It is very easy to setup, requiring only a system setting to be enabled.
Begin by connecting your Droid to a PC via USB. Go into the Droid settings and select Applications.
Select Development.
Ensure “USB debugging” is checked. You will be asked if you want to enable debugging, select yes.
And that is all there is to it. You now have a direct connection with ADB and your PC. We will do this to our phones most every time we need to transfer files via ADB.
Sometimes, people will have incompatible preloaded drivers on their computers. This may result in a “Device Not Found” error when following some guides. To remedy this, please refer to the USB Debugging Drivers guide.
Mounting The SD card to transfer files
Since your MicroSD card is buried underneath your battery, it is silly to remove it and use a card reader every time you want to copy files over to it. Fortunately, the Droid allows you to easily mount the MicroSD card as a mass storage device, similar to a USB Thumbdrive. Though we may also use ADB to copy files from our PC to our MicroSD card, this requires no Command Prompt or code use.
Mounting the MicroSD Card:
Connect your Droid to a PC via USB. You will be notified that there is a USB connection. Drag down the notification shade and select “USB connected.”
You will now see an option to mount your phone; do so at this time by selecting “Mount.”
This will turn your Droid into a mass storage device. Your computer should automatically recognize it and an autorun popup should appear on your desktop.
Browse the files so that you see the contents of your SD card. You are now ready to upload files onto the MicroSD card. Turning Off MicroSD Mounting:
Slide down the notification shade and select “Turn off USB storage.”
An option will popup allowing you to “Turn Off”–select this now.
If you haven’t closed the SD Card folder on your computer, the window should close automatically once you turn off USB storage.
ADB, command line bridge between the Android SDK and the Droid
The Droid is a highly hackable device, and much of this is due to the rich developer support directly from Google. As many of you know, the Droid runs the Android operating system which has been developed and pushed by Google. Not only do they provide the end-user OS you use on the phone, but they have created a full-featured SDK for private developers.
An SDK, or Software Developer’s Kit, is a collection of scripts, code, programs, and knowledge bases that assist people in creating Android apps and working inside the OS. It is a completely free package and is absolutely essential for higher level mods. You can read more about the SDK and download it from here: Android SDK | Android Developers
There is also an in-depth installation guide. It does not matter where on your computer the SDK folder is located and installed to. Follow the install guide before proceeding.
Inside of the SDK is the cornerstone of most Android mods: Android Debug Bridge. It is located within the tools folder (android-sdk-windows/tools) and can be accessed through Windows Command Prompt. This small application is a bridge between your computer and the Android OS on your phone. It allows you to push, pull, copy, and delete files as well as advanced scripts that perform specific tasks directly on your phone. You can think of it as an interface which extends your computer’s keyboard and files to your Droid.
In most of the upcoming Root Your Droid guides, you will see me reference the use of ADB, command prompt, Superuser permissions, and Linux code. This will all center around the SDK and Android Debug Bridge. But before you can use it, it’s important to learn what it is you’re doing.
How to access ADB through your Windows computer:
The first thing to know is how you access ADB to be able to use it. If you notice, double clicking on adb.exe in the tools folder does not open or run anything. In order to run ADB, we must do it through the Command Prompt.
To do this, go to your Start Menu and select “Run…”.
A Run dialogue will pop up; type “cmd” and hit OK.
This will open a new window called Windows Command Prompt.
This program is similar to DOS in that it allows you to input text-based commands in order to perform tasks. From here, we need to navigate to the tools folder inside of the Android SDK folder (where adb.exe is located). To do this, we need to know the exact file path of the tools folder. Open up the tools folder and at the top of the Windows Explorer window is the address, or file path, of the folder.
For instance, my tools folder is on the Desktop of my XP machine. Thus, the full file path of the folder is:
Cocuments and SettingsuserDesktopandroid-sdk-windowstools
Where “user” is the username of your computer. Copy your file path for use in the Command Prompt.
Back to the Command Prompt, we now need to point to the file path we copied. To do this, we need to type: “cd” for change directory, then add a space. This will preceed the file path of the folder. Right click inside Command Prompt and select Paste. You cannot use a keyboard shortcut to paste into Command Prompt, this will simply type out the keystrokes you used. Once we have typed in “cd ” and then pasted the file path, your Command Prompt should look like this:
Press enter and you will notice that where “c:” use to be is now replaced with the full file path of the tools folder.
If Command Prompt alerts you that “The system cannot find the path specified”, you probably have not pasted the correct or full path of the folder.
Tip: Windows Vista and 7 users may go into their tools folder, highlight the full address and simply replace it with “cmd”. Press enter and Command Prompt will open and will be pointed at the folder.
Once you have pointed Command Prompt to your tools folder, you may test to see if you have everything in order by typing “adb” and hitting enter.
If all went well, Command Prompt should display a long list off available commands and descriptions. Here is an explanation for the most commonly used ADB commands:
adb push – Copies a file from the computer onto the Droid.
adb pull – Copies a file from the Droid to the computer.
There are many more commands as you can see from the list Command Prompt gave you. These are simply the most common commands used in these guides. The guides will go more in depth as you go along. To use these commands, you must ensure your directory in Command Prompt is pointed to your tools folder.
You must be made aware that when accessing your Rooted phone through ADB, that you may be prompted to accept a Superuser Permission. To avoid seeing this in the future, simply select “Always” when this pops up. If you do not accept the permission, it will fail ADB.
Basic commands used within ADB
While working with a Rooted Droid and ADB, you will notice that there is an extensive use of code. Much of this code may be unfamiliar to you, but it shouldn’t be scary.
When you see lines such as:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock4 /system
cat /sdcard/flash_image > /system/bin/flash_image
chmod 755 /system/bin/flash_image
sync
You may feel like you are in over your head. But it’s a lot simpler than it looks!What you see above is called Unix commands. These commands are recognized by the base Linux kernel which controls the Android OS. Linux is an open source computer operating system; Google uses it to create Android. So these Unix commands are similar to the Windows Command Prompt commands we learned about in the Android Debug Bridge guide except they are used for different systems.
When using Unix commands in future guides, it is important to read through them carefully and copy them exactly. Though a mistake will most likely return an error message and cause no harm, it is possible to miss a character and do some damage. Caution and deliberation is key! Here are a few common Unix commands used for Droid modding purposes. These certainly aren’t all of them, and all commands will be described within individual guides.
su – (Substitute User) Used to change to “root user” to perform Superuser Permission commands.
mount – Readies a file system for use; allows the user to perform commands to a directory.
cd – (Change Directory) Changes to the proceeding directory.
chmod – (Change Mode) Changes the mode of files and directories; commonly used to change permissions.
mkdir – (Make Directory) Makes a new directory for files.
mv – (Move) Moves a file or directory from one place to another.
sync – Synchronizes all data which has been scheduled for writing.
As I’ve stated, there are many more commands which may be used while sending commands to your phone. Don’t fret; they will be described fully as you go along.
One important consideration to make is that after EACH line of Unix commands, you must hit enter to run the command before going on to the next line. You may not copy and paste multiple lines into Command Prompt at once.
I bet you’d never guessed you would be learning a new programming language while working on your Droid! Though you are far from mastering the Unix system, I hope this has familiarized you with some of the necessary commands needed for advanced root-related functions.
PC Drivers needed for the Droid
Some people are having problems with getting their Droids to connect to ADB after enabling USB Debugging. The reason for this problem may be incompatible USB drivers. To manually install the correct Droid USB Debugging drivers, please go to this link: Motorola USB Drivers
Simply download the Windows drivers that pertain to your system (32 or 64 bit), extract the installer, and install the drivers. Then, reconnect the Droid via USB and enable USB Debugging.
This will solve some of the “Device Not Found” problems people are having.
Installing apps not found in the market
Sometimes we want to install an app that has not been downloaded from the market. When we download an app from a developer or website directly, this is called an “Unsigned App”. Sometimes while hacking, we need to use an app that isn’t in the market. For this reason, we need to enable the installation from unknown sources.
Begin by connecting your Droid to a PC via USB. Go into the Droid settings and select Applications.
Ensure “Unknown Sources” is checked. You will be asked if you want to enable debugging, select yes.
You have now allowed your Droid to install apps not downloaded from the market.
Now onto the good stuff.....
How to Root from Windows without losing app data
Most of the following was written by svt_gEEk and his post can be found in its entirety in the third post of this thread. I edited it a little and am adding some to make things simpler. I am also adding instructions that will allow you to load a custom rom without losing any apps or app data.
Windows Instructions:
1.) Download 2.1 SP Recovery sbf to your C: root directory (C:\)
2.) Download md5sum
3.) Place md5sum in c:\windows\system32
5.) Download in install RSDLite 4.6 for this file you may need an un-zip tool like WIN RAR
6.) Download and install the correct motorola drivers for your windows machine (32 for XP, 32 or 64 for Vista depending on Vista version) 32-bit drivers 64-bit drivers
4.) Run command prompt (Start->Run then type "cmd" and hit enter)
5.) Change directories to your C:\ root directory (cd c:\)
6.) Type in "md5sum SPRecovery_ESE81.sbf"
7.) Make sure the sum of the image is EXACTLY 9b6a336cd8f067d4487935468c758d89
7.) Connect phone via USB and reboot, while rebooting hold UP on the dpad
8.) Run RSD Lite 4.6
Windows 7 64 Bit Users See Hidden Instructions
1.) Navigate to the install folder which is usually C:\Program Files\Motorola\RSD Lite
2.) Right click on SDL.exe
3.) Click run as administrator
9.) Select the SPRecovery 2.1 SBF file
10.) Click Start and wait for RSD Lite to flash the SPRecovery image onto phone and then wait on phone to reboot.
11.) Download this update.zip
12.) Mount your droid and place the update.zip in the root of your sd card.
13.) Power off your droid
14.) Power on your droid while holding X
15.) Now you are in SPRecovery. Click on install (Note you can use the volume rocker to navigate and the camera button to select.)
16.) Press allow update.zip Installation
17.) Press Install /sdcard/update.zip (deprecated)
18.) Once that is complete use the power button to get back to the main menu.
19.) Press reboot system now
20.) Go to the Market and Download Titanium Backup
21.) Open titanium backup. This will bring up a superuser request. Press Allow
22.) Titanium backup will now give you an error. Press ok then press Problems?
23.) Press Yes, do it.
24.) This will kick you out of titanium backup. Click on the notification you got from titanium.
25.) Now that you are back in titanium press menu then batch.
26.) Now press Backup all user apps
27.) Press Run the batch operation
You can now install custom roms without fear of loosing your app data.
How to Root from Linux
Under Construction
How to perform a nandroid backup
How to perform a nandroid backup with SPRecovery
1.) Boot into recovery by holding X while powering on the phone
2.) Click backup/restore
3.) Press Simple Nandroid backup
4.) Once the nandroid is complete press power to get back to the main menu
5.) Reboot
That’s it
How to perform a nandroid backup with Clockworkmod Recovery
1.) Boot into recovery by holding X while powering on the phone
2.) Click nandroid
3.) Press Backup
4.) Once the nandroid is complete press power to get back to the main menu
5.) Reboot
That’s it
How to Flash a custom rom
There are two ways roms are distributed and one is not common anymore at all. For now this is just covering the most commonly used form which is update.zip. Instructions for roms distributed as nandroid backups will come later.
How to Flash a custom rom with SPRecovery
1.) Download the rom
2.) Place the file in the root of your sdcard.(Not in any folder just on the sd card.)
3.) Rename the rom to update.zip. Be sure that you are only naming it update.zip. Windows often does not show file extensions and you will end up with files named update.zip.zip. Renaming files with Astro File Manager once they are on your sd card is a good solution to this.
4.) Power off your droid
5.) Boot into recovery by holding X while powering on the phone
6.) Perform a nandroid backup (always sound practice although this is not required)
7.) Wipe data/factory reset (Again not required all the time but unless you are sure it will work without wiping its smart to do so.)
8.) Wipe Cache Partition (Again not required all the time but unless you are sure it will work without wiping its smart to do so.)
9.) Click on install (Note you can use the volume rocker to navigate and the camera button to select.)
10.) Press allow update.zip Installation
11.) Press Install /sdcard/update.zip (deprecated)
12.) When the install is complete use the power button to go back to the main menu
13.) Reboot
How to Flash a custom rom with Clockworkmod Recovery
1.) Download the rom
2.) Put the file anywhere on your sdcard.
3.) Power off your droid
4.) Boot into recovery by holding X while powering on the phone
5.) Perform a nandroid backup (always sound practice although this is not required)
6.) Wipe data/factory reset (Again not required all the time but unless you are sure it will work without wiping its smart to do so.)(This also wipes your cache partition so no reason to do that as well.)
7.) Press install zip from sdcard
8.) Press Choose zip from sd card
9.) Navigate to the file and click on it.
10.) When the install is complete press the power button to get back to the main menu
11.) Reboot
How to Flash a kernel
How to Flash a custom kernel with SPRecovery
1.) Download the kernel
2.) Place the file in the root of your sdcard.(Not in any folder just on the sd card.)
3.) Rename the kernel to update.zip. Be sure that you are only naming it update.zip. Windows often does not show file extensions and you will end up with files named update.zip.zip. Renaming files with Astro File Manager once they are on your sd card is a good solution to this.
4.) Power off your droid
5.) Boot into recovery by holding X while powering on the phone
6.) Perform a nandroid backup (always sound practice although this is not required. Its actually not necessary at all if you have a kernel that you know works well somewhere on your sdcard.)
7.) Click on install (Note you can use the volume rocker to navigate and the camera button to select.)
8.) Press allow update.zip Installation
9.) Press Install /sdcard/update.zip (deprecated)
10.) When the install is complete use the power button to go back to the main menu
11.) Reboot
How to Flash a custom kernel with Clockworkmod Recovery
1.) Download the kernel
2.) Put the file anywhere on your sdcard.
3.) Power off your droid
4.) Boot into recovery by holding X while powering on the phone
5.) Perform a nandroid backup (always sound practice although this is not required. Its actually not necessary at all if you have a kernel that you know works well somewhere on your sdcard.)
6.) Press install zip from sdcard
7.) Press Choose zip from sd card
10.) Navigate to the file and click on it.
11.) When the install is complete press the power button to get back to the main menu
12.) Reboot
How to change recoveries
Changing Recoveries with Rom Manager
1.) Go into Rom Manager
2.) To Flash the current Clockworkmod Recovery press flash Clockworkmod Recovery
3.) You will be asked to confirm phone model which should be Motorola Droid (CDMA) if it is not then do no proceed.
4.) To Flash SPRecovery scroll to the bottom and press Flash Alternate Recovery
5.) To Flash a Clockworkmod other than the current one scroll to the bottom and press All Clockworkmod Recoveries
6.) Select the Clockworkmod Recovery that you wish to flash and press ok.
Changing Recoveries with Terminal
The current clockworkmod recovery can be downloaded Here
SPRecovery .99.3b can be found Here
Which ever recovery you are using should be in the root of your sd card.
You will also need Terminal Emulator from the market. I use the one by the dev Jack Palevich
To make this clearing I am going to put what you should actually type red.
I will be using SPRecovery as the example here but the process is the same for Clockworkmod just change the filename from recovery-0.99.3b.img to recovery-clockwork-2.5.0.1-sholes.img or whatever the name of the current clockworkmod recovery file is.
1.) Start Terminal Emulator
2.) type su then press enter
3.) type cd sdcard then press enter
4.) type flash_image recovery recovery-0.99.3b.img then press enter
5.) you are done but I would suggest typing reboot recovery then press enter so you can be sure it worked.
Changing Recoveries with ADB
The current clockworkmod recovery can be downloaded Here
SPRecovery .99.3b can be found Here
Which ever recovery you are using should be in the root of your sd card.
You will need the Android SDK so you have Android Debug Bridge
SDK can be found Here
To make this clearing I am going to put what you should actually type red.
I will be using SPRecovery as the example here but the process is the same for Clockworkmod just change the filename from recovery-0.99.3b.img to recovery-clockwork-2.5.0.1-sholes.img or whatever the name of the current clockworkmod recovery file is.
1.) Start command prompt if you are in windows or terminal emulator if you are in Linux
2.) cd to the adb tools director
3.) type adb shell then press enter
4.) type su then press enter
5.) type cd sdcard then press enter
6.) type flash_image recovery recovery-0.99.3b.img then press enter
7.) you are done but I would suggest typing reboot recovery then press enter so you can be sure it worked.
__________________ So I'm guessin' there's questions that need addressin' like how he fresh in the adolescence and wreckin em' Rules & Guidelines, Zero Tolerance Policy.
Last edited by OMJ; July 29th, 2010 at 09:09 AM.
The Following 13 Users Say Thank You to CRPercodani For This Useful Post:
*I just want everyone to know that I didn't write this guide, just the first paragraph. You can thank ikithme for the guide and the links to all the files.*
Now that a .sbf file has been released for our Droid's we can always recover them using RSD Lite. AllDroid - View topic - Droid 2.0.1 sbf file released! it is pretty easy to use this. Of course if you physically break your phone it won't help, but if you screw anything up software wise you are covered.
If you unplug your phone while doing this it will break it beyond repair, Verizon will not be able to fix it. DO NOT ATTEMPT THIS UNLESS YOU ABSOLUTELY NEED TO USE IT!
Instructions:
1. Download all of the files above including the 32-bit OR 64-bit Motorola USB Drivers.
2. Install RSDLite AND the 32-bit or 64-bit Motorola USB Drivers (Depends on your system most will need 32-bit some will need 64-bit)
3. Connect your phone to USB and turn it off then turn it back on, while your phone is booting hold up on the DPAD. (Some users have said it is easier to hold the volume down button and camera button instead.)
4. Run RSD Lite 4.6 as Administrator (For all you Vista and 7 folks out there. If you are using XP you may not need to run as Administrator)
5. Click the ... next to the filename box and browse to where you saved the .sbf file and double click the .sbf file.
6. Hit start and below it should give you completion progress and all of that.
7. Once your phone is done being flashed (It may take a while so don't unplug it) it will reboot and you will be back at stock 2.0.1 no root.
8. Done
Credits:
dordodim for the sbf file. ikithme for guide.
Motorola for the awesome phone, usb drivers and RSDLite.
This is nothing new, I just took the liberty of consolidating several threads to keep from having to thread-hop to find different files and instructions for different parts of the process.
As a warning before you start this process, THIS WILL ERASE ALL OF YOUR INSTALLED APPS. Don't worry, they can be re-installed from the market and I'm fairly certain there is a backup procedure that helps in the restore process. I will do some research and try to add that in the coming days. I'm still fairly new at this and don't know all of the tools and processes very well yet, but this was just one of the things I have done that was confusing to me that I thought I could clear up for some folks.
Windows Instructions:
1.) Download 2.1 SP Recovery sbf to your C: root directory (C:\)
2.) Download md5sum
3.) Place md5sum in c:\windows\system32
5.) Download in install RSDLite 4.6 for this file you may need an un-zip tool like WIN RAR
6.) Download and install the correct motorola drivers for your windows machine (32 for XP, 32 or 64 for Vista depending on Vista version) 32-bit drivers 64-bit drivers
4.) Run command prompt (Start->Run then type "cmd" and hit enter)
5.) Change directories to your C:\ root directory (cd c:\)
6.) Type in "md5sum SPRecovery_ESE81.sbf"
7.) Make sure the sum of the image is EXACTLY 9b6a336cd8f067d4487935468c758d89
7.) Connect phone via USB and reboot, while rebooting hold UP on the dpad
8.) Run RSD Lite 4.6 as administrator
9.) Select the SPRecovery 2.1 SBF file
10.) Click Start and wait for RSD Lite to flash the SPRecovery image onto phone and then wait on phone to reboot.
Once this is done you have SPRecovery on the phone. You can close out RSD Lite.
Now if you just want root access without a custom ROM follow these instructions by OMJ (big thanks!):
Quote:
Originally Posted by OMJ
In order to avoid having to use abd to push the su and superuser.apk I editted the update.zip of the 2.1 version of superuser to work with spr. I unrooted and gave it a shot just to be sure and it worked fine.
So after you finish the sbf flash of SPRecovery then just put this update.zip in the root of your sd card then reboot into recovery. Go to install then press allow update.zip installation then install update.zip depreciated.
After that you will have root access without using adb and without losing any data.
If you want to flash a ROM to gain root, perform the following.
1.) Download the ROM of your choice (I'm running BB v1.0)
2.) Rename this ROM download to "update.zip"
3.) Mount your phone's sd card if you haven't already and move update.zip into the root directory of the sd card.
4.) Turn your phone off and then turn it back on while holding the 'X' key on the physical keyboard, this boots you into SPRecovery.
5.) Use the volume rocker down to move the cursor to "Wipe data/factory reset" then press the gold camera shutter button to select this
6.) After that has been completed perform "Wipe cache partition" in the same manner.
7.) After this is complete select install from the menu, then select "Allow update.zip installation"
8.) Then select "Install /sdcard/update.zip"
When this is done the progress bar will be full and it will say Installation complete or something to that effect. Press the power button to go back in the menus until you get to the main menu and select reboot and reboot your phone. When your phone has rebooted you will have the new rom installed and will have root access. To confirm this, go to your app drawer and confirm that a little black ninja looking character is on there labeled "Superuser Permission" After this, you are done.
To install new kernels for overclocking (install SET CPU first for control), download the kernel, rename to update.zip, place on the root directory of the sd card, then follow the same process of installing a ROM EXCEPT, DO NOT PERFORM ANY WIPES!! When you boot into the SPRecovery menu, just select the allow install and then simply install and then reboot. Do the same to install some themes if not using metamorph.
If there is anything I have left out, someone please let me know. I just thought this would be helpful for new users who want to root but may not be as tech savvy as some others. Every download should be linked on this page that you need in the instructions. This is nothing new and I do not take credit for anything I have listed here, I just consolidated several posts, threads, and links into my own compact set of instructions. Hope this is helpful to someone.
Last edited by Trident; June 15th, 2010 at 10:41 AM.
Reason: Updated post with latest information
The Following 14 Users Say Thank You to svt_gEEk For This Useful Post:
The Motorola Droid - the first ever Verizon Android Phone - exploded onto the mobile market with an incredibly successful ad campaign that brough Android to the masses. With a huge and vibrant touchscreen, solid metal body, full QWERTY keyboard, 5M... Read More