Geeky

The road to DevOps.

Installing a leaked ICS build on a Droid Bionic from OSX

I spent quite some time over the last few days getting together the process for installing the latest leaked ICS builds on my Droid Bionic. There’s a lot of information but I was working under some specific constraints:

  • I’m using OSX, and not MS Windows
  • I have a rooted Bionic
  • I didn’t want to lose any of the data on my SD card

The best reference guide I found which got me started was by timmy10shoes at droidforums.net. While it didn’t help me with specific instructions, it did tell me the following:

  1. If you have a rooted system, you *must* revert back to stock (temporarily unrooting is not enough)
  2. The correct path to upgrading is to flash version 5.5.902 of Gingerbread, then flash version 5.5.905 of Gingerbread, and then finally install the ICS leak. At the time of writing the ICS leak version is 6.7.230.

Why do you have to go all the way back to 5.5.902 before upgrading? As near as I can tell, it is the most recent full install of the OS, and not an incremental upgrade.

Warning!

Standard disclaimers apply:

  • You might brick your phone irrecoverably
  • You’re almost certainly voiding your warranty (but if you’re rooted before you’ve probably already done this).
  • This isn’t for the feint of heart. Things can go wrong. There are lots of people on the Android forum sites who may be able to help. But if you’re at all worried, just wait for the official release to come from Motorola and Verizon.
  • I’m not responsible for any negative consequences that might result from you following this guide. It’s possible I missed a step you need to do, or typo’d a command. I apologise, and I would appreciate any feedback.

Things you need to download

The hardest part of this was trying find all of the things to download. There are three firmwares to download, as well as trying to find a copy of fastboot for OSX. fastboot is needed to flash the img files to your phone.
For the first set of files you can find downloads here: http://droidrepo.info/the-repository/viewcategory/10-bionic-stock-files

Download the Droid Bionic .902 Fastboot file, which weighs in at about 667Mb. Additionally download the Bionic .902 to .905 upgrade file which is around 42.5Mb. Once you have those, visit https://www.dropbox.com/s/qtvb3rgi1tokr35/Blur_Version.5.9.905.XT875.Verizon.en.US.zip and download the ICS leak version 6.7.230. Yes, the file name does say “905”, but this is the upgrade *from* 905 to ICS.
Finally, download fastboot-mac.zip. This file used to be available on the HTC website, but they’ve since taken it down, so here it is for you. When I was looking for it, I originally found it on the Wapnet blog, so they deserve the credit for keeping it available 🙂

Doing the install

Once you have the above softwares downloaded, the install process is actually very straight forward, and mostly follows the timmy10shoes method I linked to above. Here’s what you need to do.

Preparation

  1. Copy the 905 firmware, and the new ICS leak over to your SD card.
  2. Unzip the fastboot-mac.zip file
  3. Unzip the 902 firmware on your computer. This should create a folder in your Downloads folder called VRZ_XT875_5.9.902.XT875.Verizon.en.US_CFC_01 (or something like that). Rename this to bionic-902
  4. Open Terminal.app (Applications -> Utilities -> Terminal), or your terminal emulator of choice (I use iTerm2, but if you don’t use a terminal a lot, don’t worry about this and just open Terminal.app)
  5. In Terminal, run: chmod 755 ~/Downloads/fastboot-mac

Installation

  1. Power off your phone.
  2. Boot your phone up into recovery mode by holding both volume keys and then pressing and holding the power button until your phone starts to power on.
  3. You should now see a black and white menu. Use the down volume key to navigate to “AP Fastboot”, and then press the up volume key to select it. The menu will change and say “OK to program.”
  4. If your phone is not connect to your computer by a USB cable, now is a good time to connect it. Your phone should say “USB data cable connected” (or something similar).
  5. On your computer, back in your terminal window run the following commands:
    1. ~/Downloads/fastboot-mac flash boot ~/Downloads/bionic-902/boot.img
    2. ~/Downloads/fastboot-mac flash system ~/Downloads/bionic-902/system.img
    3. ~/Downloads/fastboot-mac flash preinstall ~/Downloads/bionic-902/preinstall.img
    4. ~/Downloads/fastboot-mac erase cache
    5. ~/Downloads/fastboot-mac reboot

    If the first command gives you a “Waiting for device” message, then you may need to try these commands:

    1. ~/Downloads/fastboot-mac -i 0x22b8 -p 0x42d1 flash boot ~/Downloads/bionic-902/boot.img
    2. ~/Downloads/fastboot-mac -i 0x22b8 -p 0x42d1 flash system ~/Downloads/bionic-902/system.img
    3. ~/Downloads/fastboot-mac -i 0x22b8 -p 0x42d1 flash preinstall ~/Downloads/bionic-902/preinstall.img
    4. ~/Downloads/fastboot-mac -i 0x22b8 -p 0x42d1 erase cache
    5. ~/Downloads/fastboot-mac -i 0x22b8 -p 0x42d1 reboot

    Here we’re specifying the vendor ID and product ID for the Bionic, so that fastboot-mac can find your phone on the USB port.

  6. Your phone should now be rebooting. Don’t wait for it to finish booting, just pull the battery from the back. I waited 5 minutes before doing this and the phone was still trying to boot. Don’t worry, it doesn’t need to. Just turn it off.
  7. Hold the volume keys down again and then press the power button to get back to the black and while recovery menu.
  8. Pretty the down volume button to scroll to the Recovery option, and press the up volume key. You should see a blue menu.
  9. Scroll down to Install zip from sdcard and press the power button.
  10. Scroll down to Choose zip from sdcard and press the power button.
  11. Scroll down to the update from 902 to 905 and press the power button. REMEMBER: This is the *update* to 905. It should be called something like Blur_Version.5.9.902.XT875.Verizon.en.US.zip. Your phone should install the stock 905 OS.
  12. Once that is done, repeat the same process to choose a zip to install, and this time choose the ICS firmware zip. This one should be called something like Blur_Version.5.9.905.XT875.Verizon.en.US.zip. Your phone should install the stock ICS firmware now.
  13. Finally, after all of that, choose the “Reboot phone” option on the menu and press the power button. Your phone will reboot. It can take about 5-10 minutes for it to get booted up, and you will need to confirm a few things on the screen as it does so.

Congratulations, you now have ICS several weeks ahead of everyone else!

Tags:

Comments

14 responses to “Installing a leaked ICS build on a Droid Bionic from OSX”

  1. Gordon Worley Avatar

    Thanks! I needed to get my Bionic back to factory state and this was just what I needed to figure out how to do it from Mac OS X. Was able to do the official ICS update from there.

  2. Gunstra Avatar
    Gunstra

    Followed your instructions above was able to do all the flashing just fine, then when I went to Step 8 the phone does not go to a blue menu, it shows the Motorola Logo then goes to a screen with a white triangle, a green droid and a ! inside the triangle.

    So, I booted into the phone and was able to update to .905 from the stock .902 you just had me flash to, but now when I try running the update under About in the phone it says update not available at this time and if I try Step 8 again I get the same triangle and driod. I am on Mac OS X 10.8.2 if that helps you

    1. Gunstra Avatar
      Gunstra

      I did forget to say that I had to use the second options because my phone wouldn’t do the update without using the hex codes you gave to identify to the phone.

    2. Gunstra Avatar
      Gunstra

      Nevermind just figured it out, you have to press both volume buttons again once on the screen I described above and then the blue and black menu shows up at the top of the screen. Trying .246 ICS update now from .905

    3. Gunstra Avatar
      Gunstra

      and it failed, says E: signature verification failed

    4. Gunstra Avatar
      Gunstra

      Seems to be working on a second attempt, there appears to be double files but it’s not really double files as the top ones have … in front of them and lower down the screen there are the same files without the …, use the ones without the … and it works. Thx

      1. Av Avatar

        I’m glad it worked out in the end Gunstra! Thanks for the comments!

        1. Gunstra Avatar
          Gunstra

          Thx, posted a new post below

  3. Gunstra Avatar
    Gunstra

    Got it installed ok now, any chance you will be doing a guide for upgrading from .232 to .246? I have the VRZ_XT875_6.7.246.XT875.Verizon.en.US_CFC_01.xml.zip file but it is not working using your method above on the blue screen. Do I have to go all the way back to .905 to get to .246 now?

    1. Av Avatar

      When I went back to 905 I wasn’t able to get it to boot, so I couldn’t take the OTA update to .246.
      Instead, I went to 905, and then used fastboot-mac to install the system, preinstall, and other things.

      I don’t *know* if you have to FXZ 902, update 905, then FXZ 246. That’s what I did though. The boot up took about 10 minutes the first time. I advise doing this on a FULLY CHARGED BATTERY with the power cord plugged in. Try it!

      1. Gunstra Avatar
        Gunstra

        I tried something similar before, I was using the SamuriHL (House of Bionic) but my phone for some reason will not use RSDLite 5.7 properly nor will it start the daemons properly, that is why I had to use your method here to get to where I am now, it’s the only method that has worked for my phone.

        1. Av Avatar

          I’m glad it was helpful! I picked up a lot of information from SamuriHL on this stuff. I think most of this was before HoB was written, so I’m glad you could put it to some use 🙂

          1. Gunstra Avatar
            Gunstra

            Yep! Just let me know if you get a working way to upgrade to .246 without starting over, I can’t get the zip to work on my phone so maybe someone will do a new re-pack of it or something.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.