Hey everyone, I'm brand new to this, and I was told before I start getting into ROMS that I need to run this software:
http://forum.xda-developers.com/showthread.php?t=1182871
So I followed each and every step, and my phone rebooted and it said "Unlocked" like it was supposed to. BUT, when it booted into the OS, it booted into the stock OS as if I had just bought it off the shelf. Additionally, I am seeing a little exclamation point and android character when I go to the Android Recovery option under fastboot (also installed via linked software)
What happened!?
Congratulations, you have just successfully unlocked the bootloader. Obviously you had higher hopes and were expecting bells and whistles, sorry to disappoint but that's it for this step. Next, flash a custom recovery via fastboot (I recommend the RomRacer's version of CWM), and then use that recovery to flash whatever ROM you choose. Instructions for all these steps are available in other threads. Good luck!
ravilov said:
Congratulations, you have just successfully unlocked the bootloader. Obviously you had higher hopes and were expecting bells and whistles, sorry to disappoint but that's it for this step. Next, flash a custom recovery via fastboot (I recommend the RomRacer's version of CWM), and then use that recovery to flash whatever ROM you choose. Instructions for all these steps are available in other threads. Good luck!
Click to expand...
Click to collapse
I thought when the phone rebooted after unlocking bootloader, it would boot back into the system I had before unlocking it? I flashed the "Tenfar recovery" that was in the automated script. However, when I flashboot into "Android Recovery," this is when I get to the exclamation point/ android character. Is this normal?
EDIT: I just reran the script to install recovery, and it seems to have worked the second time. I ran a backup and saved it on my external SD card, but is this backup of MY system, or of whatever its now booting into after being unlocked?
Ok guys, apparently I've somehow managed to screw this up. I swear I am following instructions completely!
I decided to try MIUI first, and so I made the backup, wiped all the data/cache/etc, and flashed the ROM. Upon reboot I discovered I couldnt get past the Dual Core screen. So, I rebooted into recovery and flash my backup, and have now found out that I cant get past the "Rethink Possible" screen.
Since at that point you haven't flashed anything else yet, the backup you made couldn't be anything else but your "normal" system.
No idea what (if anything) might've gone wrong, but here's something that you maybe didn't know - after flashing a new ROM, the following boot will always take MUCH longer than usual. After that the phone should boot at "normal" speed again. So have patience and give it time.
Also, not sure how come you're stuck at "rethink" screen. As far as I know that's the very end of the boot process, it is shown just before the launcher starts. Still, give it more time. If nothing happens after, say, 5 mins, try booting into recovery and wipe data and cache, then try booting normally again.
I think I may have found the problem. When I go to restore, it runs for a while, and then says "Error formatting /data"
What should I do?
Alright, im at a loss here. I've done everything I can think of. I've tried every restore setting possible, I've wiped everything MANY times, I've flashed a few diff ROMS to try to get ANYTHING to work.
I am utterly confused about why none of this is working. I've read so much info on the forums that my head is just swimming. I never thought this would be that hard.
At this point I'd just like to get ANYTHING working so that I have a usable phone tomorrow.
sounds like you're having lots of fun :laugh: try not to worry... we've all been there to varying degrees
If this was me I wouldn't go down the 'fastboot' method but just stick to accessing android recovery by the 'power off/on, hold volume down when powering on, and then selecting android recovery'
After this you should be into the phone's recovery mode with the menu in front of you? scroll down to 'wipe data/factory reset' and select (by pressing the power button) after this select 'wipe cache partition' and repeat the process.
Then go to 'install zip from sd card' and select this... if you have installed the ROM's correctly you should have a list at the bottom of the 'sd card' list? Select the rom you want and install by pressing power button ect.
Once this has been installed you then need to 'go back' to the main recovery page and then select 'reboot system'
Let us know if this helps... and good luck!
i would add wipe all (data & cache) again after installing!
I would try this:
Power down your phone, go to fastboot mode (Power + Vol-, then find Fastboot with Vol- and confirm with Vol+), connect to computer, then on the computer run these commands:
Code:
moto-fastboot erase -w
moto-fastboot reboot-bootloader
Then in the same menu as before, select Android recovery (and confirm with Vol+). When in recovery, try doing restore again.
If that doesn't work either, here's an alternative method to wipe /data from recovery using adb.
When in recovery, connect the phone to the computer and run this:
Code:
adb shell
That should place you in the phone's shell. Now in recovery go to Mounts and storage > Mount /data.
Then in the phone shell (on the computer) run this:
Code:
mount | grep /data
It should print something like:
Code:
[color=red]/dev/block/mmcblk0p[B]XX[/B][/color] on /data type ext3 (rw,nodev,noatime,nodiratime,errors=continue,data=ordered)
Note the first value printed. For me it's /dev/block/mmcblk0p16 but I'm not sure if that goes for all Atrixes out there, so better safe than sorry.
Now go back to recovery and select Mounts and storage > Unmount /data.
Now back to the computer - run this:
Code:
dd if=/dev/zero of=/dev/block/mmcblk0p[B]XX[/B]
Where XX is obviously what you got from the previous command.
When it's done (you get your prompt back), type exit and go back to recovery on the phone. Now you can try restoring your backup or flashing a ROM or whatever.
Solved
barry_ said:
sounds like you're having lots of fun :laugh: try not to worry... we've all been there to varying degrees
If this was me I wouldn't go down the 'fastboot' method but just stick to accessing android recovery by the 'power off/on, hold volume down when powering on, and then selecting android recovery'
After this you should be into the phone's recovery mode with the menu in front of you? scroll down to 'wipe data/factory reset' and select (by pressing the power button) after this select 'wipe cache partition' and repeat the process.
Then go to 'install zip from sd card' and select this... if you have installed the ROM's correctly you should have a list at the bottom of the 'sd card' list? Select the rom you want and install by pressing power button ect.
Once this has been installed you then need to 'go back' to the main recovery page and then select 'reboot system'
Let us know if this helps... and good luck!
Click to expand...
Click to collapse
This is EXACTLY the process I had been using. I just tried this again with MIUI, and again I got the screen that said MIUI was successfully installed from the sdcard. I rebooted, and now I've been stuck at the "Dual Core" unlocked screen.
gianluca.tomat said:
i would add wipe all (data & cache) again after installing!
Click to expand...
Click to collapse
No luck im afraid.
ravilov said:
I would try this:
Power down your phone, go to fastboot mode (Power + Vol-, then find Fastboot with Vol- and confirm with Vol+), connect to computer, then on the computer run these commands:
Code:
moto-fastboot erase -w
moto-fastboot reboot-bootloader
Then in the same menu as before, select Android recovery (and confirm with Vol+). When in recovery, try doing restore again.
Click to expand...
Click to collapse
How do I do this on the computer? What do I type it into?
wvcaudill2 said:
This is EXACTLY the process I had been using. I just tried this again with MIUI, and again I got the screen that said MIUI was successfully installed from the sdcard. I rebooted, and now I've been stuck at the "Dual Core" unlocked screen.
Click to expand...
Click to collapse
This is because the recovery you used is an outdated one.Install rom racer recovery, you can install it through fastboot http://forum.xda-developers.com/showthread.php?t=1204500
harishatrix said:
This is because the recovery you used is an outdated one.Install rom racer recovery, you can install it through fastboot http://forum.xda-developers.com/showthread.php?t=1204500
Click to expand...
Click to collapse
How do I enter these flashboot commands into the computer?
wvcaudill2 said:
How do I enter these flashboot commands into the computer?
Click to expand...
Click to collapse
As you don't know about fastboot I would suggest you to download automatic bootloader unlock from here http://forum.xda-developers.com/showthread.php?t=1182871, unzip it, you will find img file named " recovery-clockwork-4.0.1.4" replace it with romracer recovery you downloaded and rename the romracer recovery as " recovery-clockwork-4.0.1.4". Just to be safe even replace the "recovery-en-goapk-0630-1029" with rom racer recovery and rename it as "recovery-en-goapk-0630-1029". Open main and select option 6 and follow the on screen instructions.
harishatrix said:
As you don't know about fastboot I would suggest you to download automatic bootloader unlock from here http://forum.xda-developers.com/showthread.php?t=1182871, unzip it, you will find img file named " recovery-clockwork-4.0.1.4" replace it with romracer recovery you downloaded and rename the romracer recovery as " recovery-clockwork-4.0.1.4". Just to be safe even replace the "recovery-en-goapk-0630-1029" with rom racer recovery and rename it as "recovery-en-goapk-0630-1029". Open main and select option 6 and follow the on screen instructions.
Click to expand...
Click to collapse
Okay, so I did this and then went in and reflashed MIUI and it worked! Of course, now that I think about it, I should've created a new backup or something, but I guess its too late now.
On a side note, where can I find that google apps package?
wvcaudill2 said:
Okay, so I did this and then went in and reflashed MIUI and it worked! Of course, now that I think about it, I should've created a new backup or something, but I guess its too late now.
On a side note, where can I find that google apps package?
Click to expand...
Click to collapse
You will find the link for gapps from thread you downloaded the rom, I would suggest youto flash CWM touch recovery as it will make future flashing easy. Download it from here http://forum.xda-developers.com/showthread.php?t=1475444, and flash it the way you flashed the rom. Try out neutrino Rom if you are looking for fast and battery efficient rom
There are fruitcakes if you want to go back to stock rom.
harishatrix said:
You will find the link for gapps from thread you downloaded the rom, I would suggest youto flash CWM touch recovery as it will make future flashing easy. Download it from here http://forum.xda-developers.com/showthread.php?t=1475444, and flash it the way you flashed the rom. Try out neutrino Rom if you are looking for fast and battery efficient rom
There are fruitcakes if you want to go back to stock rom.
Click to expand...
Click to collapse
Could you link me to these "fruitcakes," and do I flash them like everything else?
wvcaudill2 said:
Could you link me to these "fruitcakes," and do I flash them like everything else?
Click to expand...
Click to collapse
Here you go http://forum.xda-developers.com/showthread.php?t=1163009 and yes you have to flash it like all other roms.
Related
I am running santod's rooted Stock ICS rom, which has been running excellent, love it very much. Today I went to do a backup in recovery and noticedit will not boot into recovery. I am running the 4EXT recovery as suggested in the rom forum post. Nothing I do seems to be able to boot the recovery. I can't reboot into recovery from the 4EXT app. I boot the phone with the volume down key, and try to enter recovery from there. Still nothing. I get my initial boot logo, then screen goes black, then boot logo again and it proceeds to boot up normally. I have tried re-flashing the recovery from the 4EXT app, I even tried rom manages and using the latest clockwork mod recovery. Nothing gets me into recovery. Also have noticed my phone will not stay powered off when on the charger. If I power off, plug the charger in, after a few seconds phone powers itself on. Could it be related?
I followed the rom installation instructions to the letter.
Installed the 4EXT recovery.
Flashed the ICS radios.
Wiped all my partitions except my SD card.
Flashed rom and have enjoyed for weeks now.
Only other info I know to provide is I installed the debloated/deodexed rom
Did not flash the kernel as I didn't experience boot loops.
Thanks in advance for any assistance folks!
JM1084 said:
I am running santod's rooted Stock ICS rom, which has been running excellent, love it very much. Today I went to do a backup in recovery and noticedit will not boot into recovery. I am running the 4EXT recovery as suggested in the rom forum post. Nothing I do seems to be able to boot the recovery. I can't reboot into recovery from the 4EXT app. I boot the phone with the volume down key, and try to enter recovery from there. Still nothing. I get my initial boot logo, then screen goes black, then boot logo again and it proceeds to boot up normally. I have tried re-flashing the recovery from the 4EXT app, I even tried rom manages and using the latest clockwork mod recovery. Nothing gets me into recovery. Also have noticed my phone will not stay powered off when on the charger. If I power off, plug the charger in, after a few seconds phone powers itself on. Could it be related?
I followed the rom installation instructions to the letter.
Installed the 4EXT recovery.
Flashed the ICS radios.
Wiped all my partitions except my SD card.
Flashed rom and have enjoyed for weeks now.
Only other info I know to provide is I installed the debloated/deodexed rom
Did not flash the kernel as I didn't experience boot loops.
Thanks in advance for any assistance folks!
Click to expand...
Click to collapse
Did you rename or remove the Radio file from the sd card as suggested in the OP of the rom thread?
It will not let you get into Recovery if there is a PG05IMG.zip present on the root of the sd card.
If that's not the case, reflash 4ext from within the Recovery control app.
Just installing the app doesn't install the Recovery.
You must also install the actual Recovery from within the app if you haven't.
santod040 said:
Did you rename or remove the Radio file from the sd card as suggested in the OP of the rom thread?
It will not let you get into Recovery if there is a PG05IMG.zip present on the root of the sd card.
If that's not the case, reflash 4ext from within the Recovery control app.
Just installing the app doesn't install the Recovery.
You must also install the actual Recovery from within the app if you haven't.
Click to expand...
Click to collapse
Yeah, there is no PG05IMG.zip in the sd card root. Also I have tried reinstalling the recovery from the 4EXT recovery control app.
Current verson of recovery installed is 4EXT Recovery Touch v1.0.0.5 RC8.
Tried reflashing that, and also the RC9 test build that is out right now.
Still no go on getting into the recovery.
Thanks.
When you do the volume down and power option with the device off, you need to first press the volume down and then while holding that, then press and also hold the power button, you should feel it vibrate, keeeeeep holding them down, do not let go.
Wait until you see what should be a white hboot screen with menu options, then you may let go.
If you hold power first or don't hold them both down long enough, it will just try to boot normally.
Not that that would explain why you can't get there from within Recovery Control app.
What is your hboot version and how did you root your device?
santod040 said:
When you do the volume down and power option with the device off, you need to first press the volume down and then while holding that, then press and also hold the power button, you should feel it vibrate, keeeeeep holding them down, do not let go.
Wait until you see what should be a white hboot screen with menu options, then you may let go.
If you hold power first or don't hold them both down long enough, it will just try to boot normally.
Not that that would explain why you can't get there from within Recovery Control app.
What is your hboot version and how did you root your device?
Click to expand...
Click to collapse
It was rooted using the Revolutionary method, did it a year or more ago.
Hboot version is 6.04.1002
When I try to go to recovery from the hboot screen it does the same, vibrate, white HTC screen, black screen, vibrate, white HTC screen, normal boot. No recovery.
Is there any other method of getting into recovery or re-flashing the recovery?
JM1084 said:
It was rooted using the Revolutionary method, did it a year or more ago.
Hboot version is 6.04.1002
When I try to go to recovery from the hboot screen it does the same, vibrate, white HTC screen, black screen, vibrate, white HTC screen, normal boot. No recovery.
Is there any other method of getting into recovery or re-flashing the recovery?
Click to expand...
Click to collapse
Yes, you can flash Recovery images from hboot, just like you flash a radio.
With it named PG05IMG.zip and placed on the root of the sd card.
HERE is one you can try.
If that doesn't work, I may have something you can try from fastboot to clear the Recovery cache, and maybe that will resolve the issue.
I have only seen one other user have this occur and his device simply ended up getting replaced because he wasn't able to mount to usb for doing fastboot commands either.
santod040 said:
Yes, you can flash Recovery images from hboot, just like you flash a radio.
With it named PG05IMG.zip and placed on the root of the sd card.
HERE is one you can try.
If that doesn't work, I may have something you can try from fastboot to clear the Recovery cache, and maybe that will resolve the issue.
I have only seen one other user have this occur and his device simply ended up getting replaced because he wasn't able to mount to usb for doing fastboot commands either.
Click to expand...
Click to collapse
Still no go flashing that recovery in hboot. What is the process of clearing recovery cache?
On a side note, in talking to my father, his bolt seems to have the same issue. We both were rooted with the same method, and I believe we have the same hboot version. Only difference is he flashed the rom using clockwork recovery.
Edit: I confirmed his hboot is 6.04.1002. same as mine
JM1084 said:
Still no go flashing that recovery in hboot. What is the process of clearing recovery cache?
On a side note, in talking to my father, his bolt seems to have the same issue. We both were rooted with the same method, and I believe we have the same hboot version. Only difference is he flashed the rom using clockwork recovery.
Click to expand...
Click to collapse
Well, I've got several Bolts here, and a couple of them have that same hboot and were used to test the stock roms with.
So I do not think it's a root or hboot issue, but I do not know what the issue would be other then corrupt Recovery cache.
To try and fix it by clearing the cache, do the following:
Download the erasecache.zip file from www.4ext.net/erasecache.zip
First boot your device into bootloader while connected via usb.
If it reads "fastboot usb" you are already in fastboot mode.
If it reads "hboot usb" then select "fastboot" in the bootloader menu.
Extract the file anywhere on your computer, and then start the file erase_cache.cmd with
elevated rights (right click erase_cache.cmd and select to run as administrator)
Watch for any error messages and tell me the results please.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If the above method fails, try this way:
This requires a little adb or command line knowledge(not much) and the appropriate files on your system.
Please boot into bootloader -> fastboot mode
and then issue the following fastboot command:
fastboot erase cache
afterwards boot recovery from the bootloader menu and enter the
wipe menu and format cache
santod040 said:
Well, I've got several Bolts here, and a couple of them have that same hboot and were used to test the stock roms with.
So I do not think it's a root or hboot issue, but I do not know what the issue would be other then corrupt Recovery cache.
To try and fix it by clearing the cache, do the following:
Download the erasecache.zip file from www.4ext.net/erasecache.zip
First boot your device into bootloader while connected via usb.
If it reads "fastboot usb" you are already in fastboot mode.
If it reads "hboot usb" then select "fastboot" in the bootloader menu.
Extract the file anywhere on your computer, and then start the file erase_cache.cmd with
elevated rights (right click erase_cache.cmd and select to run as administrator)
Watch for any error messages and tell me the results please.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If the above method fails, try this way:
This requires a little adb or command line knowledge(not much) and the appropriate files on your system.
Please boot into bootloader -> fastboot mode
and then issue the following fastboot command:
fastboot erase cache
afterwards boot recovery from the bootloader menu and enter the
wipe menu and format cache
Click to expand...
Click to collapse
Alrighty, I will give that a shot. I am at work right now and am about to head out of town so I will be unable to try it until sunday. I'll post the results here asap. Thanks again!
Same ROM, same problem,I even tried flashing a different recovery. Rooted using really old one click method a month after thunderbolt release.
Sent from my HTC Thunderbolt
zomgalama said:
Same ROM, same problem,I even tried flashing a different recovery. Rooted using really old one click method a month after thunderbolt release.
Sent from my HTC Thunderbolt
Click to expand...
Click to collapse
What is your h boot version?
Sent from my ADR6400L using Tapatalk 2
santod040 said:
Well, I've got several Bolts here, and a couple of them have that same hboot and were used to test the stock roms with.
So I do not think it's a root or hboot issue, but I do not know what the issue would be other then corrupt Recovery cache.
To try and fix it by clearing the cache, do the following:
Download the erasecache.zip file from www.4ext.net/erasecache.zip
First boot your device into bootloader while connected via usb.
If it reads "fastboot usb" you are already in fastboot mode.
If it reads "hboot usb" then select "fastboot" in the bootloader menu.
Extract the file anywhere on your computer, and then start the file erase_cache.cmd with
elevated rights (right click erase_cache.cmd and select to run as administrator)
Watch for any error messages and tell me the results please.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If the above method fails, try this way:
This requires a little adb or command line knowledge(not much) and the appropriate files on your system.
Please boot into bootloader -> fastboot mode
and then issue the following fastboot command:
fastboot erase cache
afterwards boot recovery from the bootloader menu and enter the
wipe menu and format cache
Click to expand...
Click to collapse
No Go, my tbolt will not mount in Win7, it just says the device has malfunctioned. Rebooting into the bootloader with USB in will not show anything in Windows, even in fastboot. It makes the device connection sound but no devices show up. Running the CMD file in the zip you linked does nothing, I'm at 10 minutes now where it just says "Waiting for device". Is my device just done for?
JM1084 said:
It was rooted using the Revolutionary method, did it a year or more ago.
Hboot version is 6.04.1002
When I try to go to recovery from the hboot screen it does the same, vibrate, white HTC screen, black screen, vibrate, white HTC screen, normal boot. No recovery.
Is there any other method of getting into recovery or re-flashing the recovery?
Click to expand...
Click to collapse
I think I had a similar problem once. Boot back into your hboot screen. Then select "factory reset". If you have a 3rd party recovery installed, like it sound like you have (4ext, right?), it will boot you to recovery so you can administer the reset yourself (it doesn't actually wipe anything, just brings you to your recovery's home screen).
Let me know how it goes.
coltspackers said:
I think I had a similar problem once. Boot back into your hboot screen. Then select "factory reset". If you have a 3rd party recovery installed, like it sound like you have (4ext, right?), it will boot you to recovery so you can administer the reset yourself (it doesn't actually wipe anything, just brings you to your recovery's home screen).
Let me know how it goes.
Click to expand...
Click to collapse
Thanks for the info, but this didn't work either. I'm also on 6.04.1002 and rooted mine a week after the T-Bolt shipped manually via adb.
This happened about a month ago also, and I thought it was ext4 but managed to get an older TWRP recovery to work after working on it for about a day and a half without a working phone. At least I have a working phone at this point.
Same ROM, same recovery (4ext), same problem. Rooted by adb a month after launch, hboot 6.04.1002
allo_87 said:
Same ROM, same recovery (4ext), same problem. Rooted by adb a month after launch, hboot 6.04.1002
Click to expand...
Click to collapse
Might be wise to bring it to Max's attention.
He makes the Recovery that is disappearing and may have suggestions or ideas on how to prevent this in the future.
I have flashed every rom I have ever posted at least once.
Most of them, may times and have yet to run into this issue.
I have had Recovery become corrupted once or twice quite some time back and not be able to get into it.
But it was easily fixed by reinstalling/reflashing a recovery.
I guess what I'm saying, is if there is a common issue occuring on our device with some ICS users and his Recovery, he should know about it.
Here's how to contact him: LINK
Hopefully he can help or look into the root of the issue, since I know he has had a few users with this same issue in the past.
santod040 said:
Might be wise to bring it to Max's attention.
He makes the Recovery that is disappearing and may have suggestions or ideas on how to prevent this in the future.
I have flashed every rom I have ever posted at least once.
Most of them, may times and have yet to run into this issue.
I have had Recovery become corrupted once or twice quite some time back and not be able to get into it.
But it was easily fixed by reinstalling/reflashing a recovery.
I guess what I'm saying, is if there is a common issue occuring on our device with some ICS users and his Recovery, he should know about it.
Here's how to contact him: LINK
Hopefully he can help or look into the root of the issue, since I know he has had a few users with this same issue in the past.
Click to expand...
Click to collapse
Excellent advice, thanks man.
Sent from my ADR6400L using Tapatalk 2
My thunderbolt's recovery spin mysteriously started working again yesterday, not sure why.
Doesn't matter though since I switched carriers now:/
Sent from my Sprint LG Optimus G
Still nothing for me. Worse yet is the fact that I can't adb because my usb has not worked properly since "the soup incident"
Sent from my ADR6400L using Tapatalk 2
santod040 said:
Might be wise to bring it to Max's attention.
He makes the Recovery that is disappearing and may have suggestions or ideas on how to prevent this in the future.
I have flashed every rom I have ever posted at least once.
Most of them, may times and have yet to run into this issue.
I have had Recovery become corrupted once or twice quite some time back and not be able to get into it.
But it was easily fixed by reinstalling/reflashing a recovery.
I guess what I'm saying, is if there is a common issue occuring on our device with some ICS users and his Recovery, he should know about it.
Here's how to contact him: LINK
Hopefully he can help or look into the root of the issue, since I know he has had a few users with this same issue in the past.
Click to expand...
Click to collapse
After going over the issue with Max and trying several fixes he suggested (he even made me an app that would format my cache), it seems I either need to obtain an RUU and flash the stock software/recovery back on and re-root or try flashing an updated hboot that already has s-off. The thinking is that it is my hboot that is causing the issue. Does anyone know what files I need? I have a couple of things to try at home to see if I can get my usb working again, if not, anything I do will have to be a flashable zip from the bootloader. Thanks!
Before I get into the gist of my current problem I think it might be relevant to provide some backstory. I decided I wanted to try and root my phone so I could install a new custom ROM. I had done some jailbreaking back when the iPod touches came out, back when jailbreaking was extremely ghetto and unreliable, so I figured I could teach myself this fairly easily. I unlocked bootloader using the htcdev method without an issue, and, following a guide, downloaded something called Rootboot to flash the phone. There was only one step to this portion, so I assumed it would be easy. Running the rootboot started rooting my phone, however after a couple of lines in the command prompt it said something about the adb, failed, and the phone was stuck in a boot loop with no roms on it at all. I stayed up all night with the damn thing attempting to fix it, and at one point, actually got it to load up the stock ROM from the computer using some combination of RUU's and fastboot commands. I have no clue how I did it, all I know is that it was not through adb sideload because the recovery I had at the time wouldn't work with adb sideload for whatever reason. It was the recovery that came with the All-In-One toolkit, for the AT&T / TELUS version. At this point I figured since the phone was working I would just install the VenomROM, and after a few hours of playing around with fastboot and the bootloader trying to get a ROM loaded, I figured I was familiar enough with all of them to load the ROM.
Which is what brings me to my current issue. I KNOW the boot.img is flashed to the device because I used the All-In-One Toolkit to do it, erased the cache, did it again using fastboot commands in the command prompt, erased the cache, and continued to use recovery to install the ROM. I got it to load and install, cleared the darvik cache, data, and cache, but when booting, the phone would get to the lock screen, upon which sliding to unlock, presented me with a white screen that says "htc" on it instead of a launcher. After a couple of seconds of waiting, it says, "setup has quit responding" and gives me the option to close or to wait. Either option results in the phone rebooting wherein I only see a black screen with the notification bar at the top displaying my battery and no internet/network connection. I have gone back and flashed the boot.img again and cleared cache, darvik cache, and data several times and just have no clue what I'm doing wrong to not get this phone to boot with the ROM. I can reflash at any point from my sideload.zip file and the installation process has an option to flash the kernel (boot.img) because it is included in the zip. Any help would be much appreciated. I highly doubt theres anything wrong with the ROM or boot.img, it is probably me just not doing it right.
I am using (or attempting to use) the 1.2.7 version of VenomXL+ on the HTC One X+ along with TWRP 2.5 as the recovery.
Hi patarrfwifwi,
This should help you getting your phone back, make sure your SDK/ADB tool is perfectly installed (see in my signature if you need a guide) on your computer, this is the manual procedure to achieved a custom recovery, installing root and transferring a ROM via sideload to your phone to allow an installation.
Download this recovery HERE
Move this file in your platform-tools folder
Press and hold the Shift key and right click on a empty space of that folder and select Open Command Window Here
In the command window with your phone in FASTBOOT USB mode
Type>fastboot flash recovery TWRP2500.img
(Success)
Type again>fastboot erase cache
(Success)
Unplug your USB cable
Hit one time Power
Select Recovery (Volume down)
Hit Power to Reboot in Recovery
Your phone should reboot in Recovery
(!! The following instruction are with TWRP Recovery installed !!)
Select Advanced -> ADB Sideload -> swipe to activate
Download this file SuperSU and transfer this file again in platform-tools folder
Press and hold the Shift key and right click on a empty space of that folder and select Open Command Window Here
Type>adb sideload SuperSU.zip (Enter)
(Success)
Once done select Install menu of the Recovery
Locate sideload.zip and select it.
Swipe to confirm.
You are done rooting your phone.
Stay in Recovery and delete the sideload.zip file
Select Advanced -> ADB Sideload -> swipe to activate
Download this file ViperXL+ 1.2.7 JB and transfer this file again in platform-tools folder
Press and hold the Shift key and right click on a empty space of that folder and select Open Command Window Here
Double click on the ViperXL+-1.2.7.zip file and locate the boot.img and drag it to the platform-tools folder.
Type>adb sideload ViperXL+-1.2.7.zip (Enter)
(Success)
Once done select Wipe menu and wipe (factory reset and format system)
Select Install menu of the Recovery
Locate sideload.zip and select it.
Swipe to confirm.
Aroma installer will start leave everything by default and install the ROM.
Once done select Reboot-> Bootloader
Make sure FASTBOOT USB is highlighted
In bootloader via the command window type>fastboot flash boot boot.img (Enter)
(Success)
At the prompt type>fastboot erase cache (Enter)
(Success)
Finally at the prompt>fastboot reboot (Enter)
Rebooting
Give your phone ~5-10 minutes to complete the installation.
Tell me how that went please.
Thank you very much for the extensive reply. I am going to start on this right away. Quick update: I tried installing a different ROM named elegancia and got the same problem at the lock screen with it saying system process not responding. Might be irrelevant at this point, but I thought I'd throw up the update.
Starting this now, I'll get back to you when I'm done.
Unfortunately, this ended in the same problem. White screen with htc, system process stopped running. boot loop.
The only differences between this and what I was doing is that I never had that SuperSU step before and I was running everything from the data folder of the All-In-One toolkit instead of the sdk.
Try fixing permissions in recovery.
sixcarnage said:
Try fixing permissions in recovery.
Click to expand...
Click to collapse
Ok, did that. It just enters a black screen with the notification bar at top, then goes black. The keys respond to hitting the lock/power button, but the notification bar goes away permanently, then phone goes back and reboots again.
What boot.img are you flashing? Is it the one inside the .zip?
sixcarnage said:
What boot.img are you flashing? Is it the one inside the .zip?
Click to expand...
Click to collapse
Yes
Try the one in the forum under the downloads. I know it's the stock but give it a shot.
Where would I find that?
If that doesn't work try the Beast Mode Kernel.
Download: http://db.tt/aGV3WhR2
Extract the boot.img from .zip and then flash the .zip in recovery.
Does this work?
---------- Post added at 10:39 PM ---------- Previous post was at 10:37 PM ----------
patarrfwifwi said:
Where would I find that?
Click to expand...
Click to collapse
Don't get cocky that was an accidental thanks
Here is the stock boot.img from the Viper thread
Download: http://www.androidfilehost.com/?fid=9390248398092764372
I don't really need a custom ROM, if I could just get the phone back to stock that would be good too. Basically, I don't care what I do to get it to work again, I just want to be able to use my phone. I've been out a cell since Sunday night and if going back to stock is easy and simple I'll just do that. If custom ROMs are the easiest option at this point I'll stick with that too; whatever gets my phone working the fastest.
Any luck with the above?
I flashed the boot.img from the beastmode, adb sideloaded the zip, installed the zip, did a wipe (darvik cache and whatnot) and after the Viper startup screen, it brought me to a screen that said upgrading apps (260 of them) and my hopes were up so much, but then it just started with the black screen. went into recovery and wiped the cache and darvik cache again, restarted, same problem with the htc screen.
I flashed the stock boot onto it and restarted. No luck,
I'm going to bed for the night. I'll be back on around 3 PM EST tomorrow.
patarrfwifwi said:
I'm going to bed for the night. I'll be back on around 3 PM EST tomorrow.
Click to expand...
Click to collapse
I'd go back to stock for now.
What I would do is get the att latest ruu and adb it to the phone to install. This happened to me and all I got was a black screen with the noti bar on top and nothing else. And then i send the latest ruu zip through adb and installed it. And now I have a working phone
Seems like we can't downgrade right now..
Sent from my SoftBank AQUOS PHONE Xx 203SH using XDA Premium
can you give me a link to this? i found the latest ruu, but its an exe file instead of a zip
RUU is always under an *.exe type file. It must be flash in bootloader mode (fastboot) via your computer with your phone plugged in.
Can you tell which HBOOT version you have (you can check this in bootloader mode)?
This is long, but it's nice for noobs because it's detailed. It's honestly kind of fun, I promise. I'm assuming you have WINDOWS. This is based off of the guide by torxx!. It's modified because some of the info is outdated (you don't have to flash the boot.mg separately, for example). If you are NOT a noob you can just look at the "overview" for each step.
UNLOCKING YOUR DEVICE WILL WIPE YOUR DEVICE. THIS IS A SECURITY FEATURE. BACKUP FIRST.
Part 1- gaining unlock token
Overview: go to htcdev.com and unlock bootloader
Be sure you've turned off fast boot option in power menu; usb debugging should be on (settings -> developer options).
Go to http://www.htc.com/www/software/htc-sync-manager/[1] and install HTC SYNC. Alternatively, if you know what you're doing, you can install these drivers:
x86 http://www.mediafire.com/?qabo1tue2v1ky75 x64 http://www.mediafire.com/?8dl8s3l9mr6ggr9
Go on http://www.htcdev.com[4] and create yourself an account on HTCDEV.
Download these adb/fastboot files: http://d-h.st/RvD
Make a new folder anywhere. We'll use C:/fastboot as an example.
Extract the zip downloaded to the new folder
Go Here http://www.htcdev.com/bootloader/[6] and select "All Other Supported Models" and "then begin unlock bootloader" (check the boxes, click proceed, all that good stuff). YOU CAN IGNORE THE DIRECTIONS THAT THEY TELL YOU (and follow this guide instead).
Power off your phone. Power your phone on by holding power and volume down.
Highlight 'Fastboot' the volume buttons then press power to "select".
Plug your phone into your PC and open a Command Prompt. (windows XP - Click Start > Run > type CMD in box then press OK; Windows 7 - Click Start > type CMD in search box then press Enter) Change directory to your folder where we put fastboot files by typing cd c:\fastboot for example.*
*Alternatively, you can just hold down shift and right click in the folder and select "open command window here". Neat huh?
Type this into your command prompt window: fastboot oem get_identifier_token
Select & copy the text as per step 9 on the HTCDev website
Paste your identifier token into the box at the bottom and submit
You Will Very Shortly Receive an email from HTCDev with a link to the second part of the instructions and your "Unlock_code.bin" attached
Download the "Unlock_code.bin" from the email and save it to the same folder that we extracted fastboot files
Type this into your command prompt window: fastboot flash unlocktoken Unlock_code.bin
The Display Will change on your phone, press Vol+ to accept and power to confirm.
Part 2
Overview: flash your recovery. Boot into recovery. Turn phone off if it boots into OS. Boot into back into recovery. You're done!
Download a recovery:
TWRP (the one I use): http://forum.xda-developers.com/showthread.php?t=2173870
CWM 2: http://forum.xda-developers.com/showthread.php?t=2172979
CWM: http://forum.xda-developers.com/showthread.php?t=2173863
Place the Recovery file to the folder where the fastboot.exe is.
Same thing as above- boot (volume down + power) into the bootloader and highlight 'Fastboot' the volume buttons then press power to "select".
Do the same thing as with the command prompt above. This time, however, you'll be typing:
fastboot flash recovery "name_of_the_recovery.img"
For example:
fastboot flash recovery openrecovery-twrp-2.5.0.0-m7.img
then type:
fastboot erase cache
From the menu, boot into recovery (use volume to move up and down, power to select). The phone might boot to the OS instead of recovery, don't worry!
Turn off phone then turn on (while holding volume down) to boot back into the bootloader.
TAMPERED shows up, boot into recovery and now your recovery should be working!
Part 3- obtaining root
Overview: flash a super tool
Download a super user tool for root:
SuperSU (I use this one): http://forum.xda-developers.com/showthread.php?t=1538053
SuperUser: http://download.clockworkmod.com/superuser/superuser.zip
Alternatively, download this: http://forum.xda-developers.com/showthread.php?t=2252959. This is a stock rooted rom for ATT. If you download and flash this instead of the super user tool, you're done. (This rom includes super user) Or you can download a custom rom such as this one: http://forum.xda-developers.com/showthread.php?t=2183023
Turn on your phone again (and disable usb debugging) and connect to computer, copy the .zip super user tool to a location you remember ON the phone.
Flash it with the Recovery: Power off your device and then hold the VOL DOWN + Power to boot into the Bootloader Navigate with VOL and Power to Recovery Now flash the .zip:
- install zip from sdcard
- choose zip from sdcard
- select the downloaded SuperSU/SuperUser zip file and flash it
- Reboot now
You're not out of the woods yet! The stock kernel is system write protected, so you still can't modify it (changes won't "stick"). You'll have to flash a custom rom or a kernel if you want stock instead.
I recommend these kernels: http://forum.xda-developers.com/showthread.php?t=2255900 or http://forum.xda-developers.com/showthread.php?t=2233665&highlight=menu
Download it.
Installing custom rom/kernel ("flashing a rom")
Overview: Download Rom, boot into recovery and wipe and then flash.
According to Shenye, even though your device is s-on, you can still flash boot now. So just do this:
Turn on your phone again (and disable usb debugging) and connect to computer, copy the .zip kernel/cutom rom to a location you remember ON the phone.
Flash it with the Recovery: Power off your device and then hold the VOL DOWN + Power to boot into the Bootloader Navigate with VOL and Power to Recovery Now flash the .zip:
- install zip from sdcard
- choose zip from sdcard
- select the downloaded SuperSU/SuperUser zip file and flash it
- Reboot now
I feel like this title should be changed to clarify that it's unlocking the bootloader, not the SIM lock.
Just wanted to say this tutorial was 100% dead on and what I used to unlock bootloader and root/rom my One.
Oddity - Did everything, I've got root but I -AM- out of the woods. Was installing bulletproof mod through recovery but it kept failing due to missing a MD5 file or something -- Trying to work that out through that thread atm but anyway, rebooted the phone a couple of times now and I still have root, Tit back up works OR are we talking about things like CPU clocking won't work since it can't rewrite?
Sticking this.
Excellent tutorial. One thing to add:
If you flash the TWRP recovery you link to, after TWRP boots for the first time, if you reboot into System, TWRP will offer to install SuperSU for you; no need to find another to flash. Once the system reboots, you can launch the GUI installer to finish the SU install (it will boot into TWRP and back one more time to do the actual flash).
Does anyone know if this will work on the Rogers HTC One?
Thank you. Followed this last night. Worked flawlessly. The only thing that threw me was rebooting into recovery. It took maybe 3 or 4 reboots for it to say "TAMPERED" at the top. When it didn't say tampered, it would not boot to recovery.
TELUS?
DannySmurf said:
Excellent tutorial. One thing to add:
If you flash the TWRP recovery you link to, after TWRP boots for the first time, if you reboot into System, TWRP will offer to install SuperSU for you; no need to find another to flash. Once the system reboots, you can launch the GUI installer to finish the SU install (it will boot into TWRP and back one more time to do the actual flash).
Click to expand...
Click to collapse
Did you happen do run this tutorial on a TELUS device?
Viceroy_N said:
Does anyone know if this will work on the Rogers HTC One?
Click to expand...
Click to collapse
Yes it does. I have a Rogers phone, and it worked perfectly.
richnanaimo said:
Did you happen do run this tutorial on a TELUS device?
Click to expand...
Click to collapse
No, I have a Rogers device. But the procedure should not be any different.
followed step by step and got an error that says submitted token wrong length
I'm on ubuntu 13.04 and I get stuck at getting the token. I type in fastboot oem get unlock_identifier_token and it says waiting for device. Tried it with sudo and it says error and sudo ./fastboot and it says no such command.
Sent from my HTC One using xda app-developers app
Having a really odd problem. I flash the twrp recovery per instructions. I try to reboot to recovery and it seems to try and then, blam, the att boot.
I have tried this from the bootloader, selecting Recovery, as well as from a booted stated using "adb reboot recovery".
Any hints for me? I originally had a silver One and today got my Black One replacement,. Had no issues on the original one. Hmm. Guess I will try CWM.
FYI: Yes I unlocked the bootloader and it says Unlocked in there
-I also notice that I seem to go right into fastboot, when I boot the bootloader. Now, I believe that is normal if you have the usb cable attached, but this happens regardless.
-flashed stock recovery back and can get into it. trying twrp again, renaming the file to "recovery.img" just because...and it worked on that stock recovery file
-Also, very hard to get into bootloader from powered off state. I may flash RUU_M7_UL_JB_50_Cingular and see if it helps me.
OK, maybe it is the phone or ATT has done something screwy on the latest. I can not even get the RUU install to pass inspection. Wants me to check the connection. I know all my stuff is in order, as I did this all on the previous one. grrr
-Just noticed mine does say Unlocked but it does not say Tampered.
-Crazy. I decided to get a new Unlock token and redo the unlock with it. Now, the bootloader finally says Tampered and I got into TWRP. I have no idea why, since I would think that if the original Unlock token was incorrect, it would not have unlocked the phone.
So, rather than providing worthwhile information for anyone else having problems, I think this post is probably deletable and that is fine by me should the powers so decide.
How would one go back to locking the device for a return?!?
Sent from my Nexus 4 using xda premium
tacotino said:
How would one go back to locking the device for a return?!?
Sent from my Nexus 4 using xda premium
Click to expand...
Click to collapse
fastboot oem lock
but, it will say relocked. nobody cares or seems to check. also, it will say tampered until you restore a stock ruu to flash. I used RUU_M7_UL_JB_50_Cingular.exe for mine when switching from silver to black. it is the right one for att. sorry, don't have the link to the download anymore.
great writeup! quick comment though, just helped my brother unlock his phone. i had a similar issue to @Barsky above so I decided to try to reflash the recovery. The first time I used the line fastboot erase cache after flashing the recovery and I think that's what caused it to not boot into recovery. The second time I flashed TWRP, I didn't enter that line and voila it worked on the first try!
can anyone post a mirror of the dev host files? devhost seems to be down.
nice...
help please
I seem to be stuck in recovery after installing super su/ rom. I messed up the order and did the rom then su. Any ideas on how I can get it to boot? I tried installing clean rom 2.5 and used the su file i found here ----> http://www.teamandroid.com/2013/03/17/root-htc-one-supersu-android-41-jelly-bean-tutorial/2/
any help is greatly appreciated... I just want my phone back
---------- Post added at 09:44 AM ---------- Previous post was at 09:36 AM ----------
also, i did hit factory reset under bootloader/fastboot screen (where it says tampered/unlocked),
mbroch89 said:
I seem to be stuck in recovery after installing super su/ rom. I messed up the order and did the rom then su. Any ideas on how I can get it to boot? I tried installing clean rom 2.5 and used the su file i found here ----> http://www.teamandroid.com/2013/03/17/root-htc-one-supersu-android-41-jelly-bean-tutorial/2/
any help is greatly appreciated... I just want my phone back
---------- Post added at 09:44 AM ---------- Previous post was at 09:36 AM ----------
also, i did hit factory reset under bootloader/fastboot screen (where it says tampered/unlocked),
Click to expand...
Click to collapse
I think the last bit was your problem. You can't factory reset from bootloader. Try to push twrp again in fastboot then load/flash clean romantic, then boot up. It already has root so you don't need to push su.
Sent from my HTC One X using xda app-developers app
So I tried to flash a rom and hit some problems, now when I try to restart my phone it gets stuck on the "verizon 4g lte" screen and wont load past there. When I open bootloader there are 3 warnings at the very top:
*** TAMPERED ***
*** RELOCKED ***
*** Security Warning ***
How can I get my phone back to stock? I need this IMMEDIATLY if possible!!
Also make it as simple as possible, I'm new to roms and roots and flashing.
BabyPenguin said:
So I tried to flash a rom and hit some problems, now when I try to restart my phone it gets stuck on the "verizon 4g lte" screen and wont load past there. When I open bootloader there are 3 warnings at the very top:
*** TAMPERED ***
*** RELOCKED ***
*** Security Warning ***
How can I get my phone back to stock? I need this IMMEDIATLY if possible!!
Also make it as simple as possible, I'm new to roms and roots and flashing.
Click to expand...
Click to collapse
You need to unlock the boot loader again. Flash a recovery img again.
Sent from my Rezound using xda app-developers app
tburns said:
You need to unlock the boot loader again. Flash a recovery img again.
Sent from my Rezound using xda app-developers app
Click to expand...
Click to collapse
What is a recovery img?
BabyPenguin said:
What is a recovery img?
Click to expand...
Click to collapse
as it was stated, you need to unlock your bootloader again. A recovery image is a image that we use to flash and wipe roms and the phone. Amon RA, TWRP and CW are the ones we can use for our phone. I personally use TWRP and Amon RA depending on my mood. You can find them here
http://forum.xda-developers.com/showthread.php?t=1425091
Towards the bottom of the list you will see recovery. You will need to flash one of those in order to flash a custom rom.
Also make sure to read the tutorials towards the bottom. before you start messing with your phone you should be familiar with everything. If you do something wrong and brick your phone, its hard to recover from if at all and you would have an expensive paper weight
clmowers said:
as it was stated, you need to unlock your bootloader again. A recovery image is a image that we use to flash and wipe roms and the phone. Amon RA, TWRP and CW are the ones we can use for our phone. I personally use TWRP and Amon RA depending on my mood. You can find them here
http://forum.xda-developers.com/showthread.php?t=1425091
Towards the bottom of the list you will see recovery. You will need to flash one of those in order to flash a custom rom.
Also make sure to read the tutorials towards the bottom. before you start messing with your phone you should be familiar with everything. If you do something wrong and brick your phone, its hard to recover from if at all and you would have an expensive paper weight
Click to expand...
Click to collapse
Alright, so I downloaded both the files here: http://forum.xda-developers.com/showthread.php?t=1339679
Two problems. First, I have no way of accessing my sd card now because it wont let me through my computer
Second, I don't know how to use these files and after reading the thread it still didn't help.
EDIT: After unlocking the only two notices on my hboot is
TAMPERED
and
UNLOCKED
EDIT2: I found my SD card adapter.
BabyPenguin said:
Alright, so I downloaded both the files here: http://forum.xda-developers.com/showthread.php?t=1339679
Two problems. First, I have no way of accessing my sd card now because it wont let me through my computer
Second, I don't know how to use these files and after reading the thread it still didn't help.
EDIT: After unlocking the only two notices on my hboot is
TAMPERED
and
UNLOCKED
EDIT2: I found my SD card adapter.
Click to expand...
Click to collapse
1. you need to download fastboot if you have not already. You can find that in the android sdk
2.) once fastboot is downloaded boot your phone into bootloader and select the fastboot option and plug your phone into your computer
3.) place the recovery image in the same directory as fastboot and use the command prompt (windows key +r then type cmd and hit enter)
4.) change directory to where fastboot is and run this command
fastboot flash recovery recovery.img
where recovery.img is the name of the recovery file that you downloaded
clmowers said:
1. you need to download fastboot if you have not already. You can find that in the android sdk
2.) once fastboot is downloaded boot your phone into bootloader and select the fastboot option and plug your phone into your computer
3.) place the recovery image in the same directory as fastboot and use the command prompt (windows key +r then type cmd and hit enter)
4.) change directory to where fastboot is and run this command
fastboot flash recovery recovery.img
where recovery.img is the name of the recovery file that you downloaded
Click to expand...
Click to collapse
Done, now what? Thanks for the help by the way!
BabyPenguin said:
Done, now what? Thanks for the help by the way!
Click to expand...
Click to collapse
yeah no problem.
If you go back into the bootloader and select recovery, this will bring you into the Amon Ra.
Download a rom from the forums, I personally like Neo's Roms, Infection 2.8.1 is a good choice. But download any rom and put it on your SD card.
1.) select USB-MS toggle and then select on of the options
2.) copy downloaded rom to mounted sdcard
3.) once copied, hit the power button to unmount and then return to the main menu
4.)select wipe from the main menu and then do each one of these 3 times
Wipe All data/factory reset
Wipe /data
Wipe /cache
Wipe /Dalvik-cache
Wipe /system
then go back to main menu and then select Fash zip menu and select where you placed your rom and then flash...once its flash go back to main menu and select Developers menu and selet reboot bootloader
open the rom using a zip program and pull the boot.img from the rom and place it in your fastboot directory
once you are in the bootloader it should go to fastboot usb automatically and then run these commands
fastboot flash boot boot.img
fastboot reboot
it should reboot and load your rom
clmowers said:
yeah no problem.
If you go back into the bootloader and select recovery, this will bring you into the Amon Ra.
Download a rom from the forums, I personally like Neo's Roms, Infection 2.8.1 is a good choice. But download any rom and put it on your SD card.
1.) select USB-MS toggle and then select on of the options
2.) copy downloaded rom to mounted sdcard
3.) once copied, hit the power button to unmount and then return to the main menu
4.)select wipe from the main menu and then do each one of these 3 times
Wipe All data/factory reset
Wipe /data
Wipe /cache
Wipe /Dalvik-cache
Wipe /system
then go back to main menu and then select Fash zip menu and select where you placed your rom and then flash...once its flash go back to main menu and select Developers menu and selet reboot bootloader
open the rom using a zip program and pull the boot.img from the rom and place it in your fastboot directory
once you are in the bootloader it should go to fastboot usb automatically and then run these commands
fastboot flash boot boot.img
fastboot reboot
it should reboot and load your rom
Click to expand...
Click to collapse
I have no idea why this isn't working
http://gyazo.com/2627f9963c95e7dc9a03cb118f139aac.png
I did your steps in order, but my phone has been stuck on rebooting... for over 15 minutes as you can see from the CMD. On my phone I just see the booting logo spinning.
I used this rom because I want jellybean: http://forum.xda-developers.com/showthread.php?t=2113140
Any ideas?
Also, what do I do with the MD5? I didn't use it.
BabyPenguin said:
I have no idea why this isn't working
http://gyazo.com/2627f9963c95e7dc9a03cb118f139aac.png
I did your steps in order, but my phone has been stuck on rebooting... for over 15 minutes as you can see from the CMD. On my phone I just see the booting logo spinning.
I used this rom because I want jellybean: http://forum.xda-developers.com/showthread.php?t=2113140
Any ideas?
Click to expand...
Click to collapse
the reboot step isnt 100% needed, its more for ease of use...just pull the battery and power on
Also did you flash the boot.img file?
---------- Post added at 07:22 AM ---------- Previous post was at 07:18 AM ----------
BabyPenguin said:
I have no idea why this isn't working
http://gyazo.com/2627f9963c95e7dc9a03cb118f139aac.png
I did your steps in order, but my phone has been stuck on rebooting... for over 15 minutes as you can see from the CMD. On my phone I just see the booting logo spinning.
I used this rom because I want jellybean: http://forum.xda-developers.com/showthread.php?t=2113140
Any ideas?
Also, what do I do with the MD5? I didn't use it.
Click to expand...
Click to collapse
Dont worry to much about the MD5,I havent used one if forever. Its basically just a security check to make sure that the file you downloaded didnt get corrupt. But with modern technology and internet, its less likely to mess up while downloading. Still possible, but not likely
clmowers said:
the reboot step isnt 100% needed, its more for ease of use...just pull the battery and power on
Also did you flash the boot.img file?
Click to expand...
Click to collapse
It's still just sitting on the boot screen.
If you didn't see my edit, there is an md5 file I can download, but I didn't use it because I don't know what to do with it.
BabyPenguin said:
It's still just sitting on the boot screen.
If you didn't see my edit, there is an md5 file I can download, but I didn't use it because I don't know what to do with it.
Click to expand...
Click to collapse
Just sent you a PM buds
maybe you can help me out quick im stuck on the lte logo also my bootloader is unlocked but when i open it to try and fix my problem its says i need an update. so i select update, it finishes, and makes me reboot which gets me stuck again.
i cant pick anything in the bootloader menu until i select yes or no for this update but both options require me to reboot after choosing then im back to stuck.
xcapeartist said:
maybe you can help me out quick im stuck on the lte logo also my bootloader is unlocked but when i open it to try and fix my problem its says i need an update. so i select update, it finishes, and makes me reboot which gets me stuck again.
i cant pick anything in the bootloader menu until i select yes or no for this update but both options require me to reboot after choosing then im back to stuck.
Click to expand...
Click to collapse
It sounds like you have a ph98img file on your sdcard. Remove the sdcard and Mount it in a PC and remove it. Then remount in the phone. Should allow to get into recovery and fastboot then
Sent from my ANDROFLY REZOUND using xda app-developers app
clmowers said:
It sounds like you have a ph98img file on your sdcard. Remove the sdcard and Mount it in a PC and remove it. Then remount in the phone. Should allow to get into recovery and fastboot then
Sent from my ANDROFLY REZOUND using xda app-developers app
Click to expand...
Click to collapse
thanks for the help, before i got your message i got around the issue in a different way just trying a few things. I figured out the phone would boot into recovery with no sd card in it but i couldnt flash the rom again without it installed so i put the sd in partially and then held the battery against the contacts with out inserting it completely then booted into recovery, push the sd in the rest of the way and i was golden for there.
but i happy that someone knew wat it was on the sd card that was giving me the problem ive got that deleted now thanks for the help
xcapeartist said:
thanks for the help, before i got your message i got around the issue in a different way just trying a few things. I figured out the phone would boot into recovery with no sd card in it but i couldnt flash the rom again without it installed so i put the sd in partially and then held the battery against the contacts with out inserting it completely then booted into recovery, push the sd in the rest of the way and i was golden for there.
but i happy that someone knew wat it was on the sd card that was giving me the problem ive got that deleted now thanks for the help
Click to expand...
Click to collapse
That works too, probably not the best thing for the phone, but it works, glad i could point you in the right direction
Ok... This is my 4th android phone.. And I love this phone... And only had it for a week.... and just now got it bricked.... here's what happen... Today I tried to flash a sense 4.1 rom, but im so new at this, and I'm half way done, and I went in a rush because I was nervous, and I accidentally press "install and keep data" and that was my mistake. I factory reset it b4 so I tried to flash it... So I thought it wouldn't be a problem. So I waited till the phone finish flashing. And when I rebooted the phone.... Nothing happened, just stuck on the white screen.... vibrating and etc... And I tried to restore all my data in clockworkmod recovery like I never even tried flashed it.. and it kept saying "won't mount sd card" and I tried to clear my cache/dalvik-cache, and like it still wont fix the issue. I even tried to restore wat I backup b4 I tried to flash it... and It was gone!!! Even my windows 8 laptop won't even detect my resound nor my sd card(unless its on a different android). But How can I fix my Rezound?!? plzzzz How can I fix this soft bricked issue? pllzzzzzzz help!!!
Im assuming you already have adb installed
Download this file
http://www.mediafire.com/download/oa2sjlvrecx0wdn/recovery-ra-vigor-3.16-gnm.img.zip
Extract the recovery img
Put it in the adb folder
Load into fastboot
Open up the terminal
Put "cd" then hit space
Drag and drop the adb folder into the terminal window then hit enter
Now use this command to flash that recovery "fastboot flash recovery recovery.img" (without the quotation marks)
Now go into recovery Find "format data system cache ect."
Go to format all to ext3 once that is done hit return
Flash your prefered rom from the flash menu and all that
Once you are done return to the main menu and go to "developer menu"
Then reboot to bootloader
Now go into your rom that you downloaded on your pc and find the rom now open it and get the boot.img
Copy the boot.img file to your adb folder
Open up terminal again and this time use the command "fastboot flash boot boot.img" in terminal its going to say sending then writing usually takes a couple of seconds
now just go to the reboot option and your rom should work
Now remember that since you are s on you need to get the boot.img file from EVERY rom you install and flash it thru the terminal in order to get your rom working
xkjonathanxk said:
Im assuming you already have adb installed
Download this file
http://www.mediafire.com/download/oa2sjlvrecx0wdn/recovery-ra-vigor-3.16-gnm.img.zip
Extract the recovery img
Put it in the adb folder
Load into fastboot
Open up the terminal
Put "cd" then hit space
Drag and drop the adb folder into the terminal window then hit enter
Now use this command to flash that recovery "fastboot flash recovery recovery.img" (without the quotation marks)
Now go into recovery Find "format data system cache ect."
Go to format all to ext3 once that is done hit return
Flash your prefered rom from the flash menu and all that
Once you are done return to the main menu and go to "developer menu"
Then reboot to bootloader
Now go into your rom that you downloaded on your pc and find the rom now open it and get the boot.img
Copy the boot.img file to your adb folder
Open up terminal again and this time use the command "fastboot flash boot boot.img" in terminal its going to say sending then writing usually takes a couple of seconds
now just go to the reboot option and your rom should work
Now remember that since you are s on you need to get the boot.img file from EVERY rom you install and flash it thru the terminal in order to get your rom working
Click to expand...
Click to collapse
If you are S-ON, you are likely not bricked, it's almost impossible to completely brick when you are S-ON.
Why do people keep telling occasional flashers that are S-ON to do this?!?!? It is the hard way, also don't use Amon Ra, is it outdated and known to cause issues with current ROMs, use TWRP or CWM recovery!!! Also, verify your ROM is specifically for the HTC Rezound, check the Developer threads here and make sure it is stable and widely used unless you really know what you are doing.
Although xkjonathanxk is on the right track, he is making more complicated than it needs to be...
- Download the first link in the first post of this thread and place it on the root of your SD card: [Tool] - 3/24 - CleanWIPE 1.0 - Wipe 5 or 10x before ROM install! - 1heffer Edition! (CleanWIPE formats all the necessary partitions for you, and prepares the phone for a new ROM)
- Download TWRP or CWM Rececovery (one of the first two links in post 1) and extract the recovery*.img and place it in the adb folder that contains fastboot.
- Download a tested and verified ROM of choice and place it on the root of your SD card
- Now, reboot into fastboot, remove battery and hold down Power and Vol Dn, once the menu comes up select Fastboot and press power, connect phone to PC
- In ADB enter the command "fastboot devices", if it shows a device continue, if not report back please
- Now enter the command "fastboot boot recovery.img" and TWRP (or CWM) should open on the device in a few seconds (replace recovery.img with whatever the name of the xxxx.img file is from TWRP or CWM archive)
- Install the CleanWIPE zip from above
- Install ROM zip image
- Reboot and enjoy the goodness
Remember to give the ROM some time to settle down on the first boot, and that the first boot can take a long time, like a painfully wrong "WTF did I do to ruin my device!" long time, but give it a solid 10 minutes before doing anything else.
@acejavelin
acejavelin said:
If you are S-ON, you are likely not bricked, it's almost impossible to completely brick when you are S-ON.
Why do people keep telling occasional flashers that are S-ON to do this?!?!? It is the hard way, also don't use Amon Ra, is it outdated and known to cause issues with current ROMs, use TWRP or CWM recovery!!! Also, verify your ROM is specifically for the HTC Rezound, check the Developer threads here and make sure it is stable and widely used unless you really know what you are doing.
Although xkjonathanxk is on the right track, he is making more complicated than it needs to be...
- Download the first link in the first post of this thread and place it on the root of your SD card: [Tool] - 3/24 - CleanWIPE 1.0 - Wipe 5 or 10x before ROM install! - 1heffer Edition! (CleanWIPE formats all the necessary partitions for you, and prepares the phone for a new ROM)
- Download TWRP or CWM Rececovery (one of the first two links in post 1) and extract the recovery*.img and place it in the adb folder that contains fastboot.
- Download a tested and verified ROM of choice and place it on the root of your SD card
- Now, reboot into fastboot, remove battery and hold down Power and Vol Dn, once the menu comes up select Fastboot and press power, connect phone to PC
- In ADB enter the command "fastboot devices", if it shows a device continue, if not report back please
- Now enter the command "fastboot boot recovery.img" and TWRP (or CWM) should open on the device in a few seconds (replace recovery.img with whatever the name of the xxxx.img file is from TWRP or CWM archive)
- Install the CleanWIPE zip from above
- Install ROM zip image
- Reboot and enjoy the goodness
Remember to give the ROM some time to settle down on the first boot, and that the first boot can take a long time, like a painfully wrong "WTF did I do to ruin my device!" long time, but give it a solid 10 minutes before doing anything else.
Click to expand...
Click to collapse
I really appreciate your help and everything. So i thank you. But Like i said im running windows 8, it wont detect my rezound or my sd card, the only time the pc is able to detect the sd card is when im able to mount my sd card to CWM. But it really wont detect it.... help me again
Multidex24 said:
I really appreciate your help and everything. So i thank you. But Like i said im running windows 8, it wont detect my rezound or my sd card, the only time the pc is able to detect the sd card is when im able to mount my sd card to CWM. But it really wont detect it.... help me again
Click to expand...
Click to collapse
Ubuntu Live CD... Windows not required.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app
Dont know how to work ubuntu.. help again
acejavelin said:
Ubuntu Live CD... Windows not required.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app
Click to expand...
Click to collapse
lol its the good thing i know how to make a dual os between win8 and ubuntu, but heres another problem, i dont even know how to work ubuntu...
i think my pc can detect the rezound. But idek how to work ubuntu, plzzzz help!!
Multidex24 said:
lol its the good thing i know how to make a dual os between win8 and ubuntu, but heres another problem, i dont even know how to work ubuntu...
i think my pc can detect the rezound. But idek how to work ubuntu, plzzzz help!!
Click to expand...
Click to collapse
For the things you need to do, its not much different than Windows. Download and install adb, copy images to same places, and the commands are pretty much the same. If you can dualboot you obviously have some knowledge of such things.
If this is all do difficult, just grab a thumb drive, put mini-adb, recovery.img, and your ROM on it and go to a buddies computer with Win7 for 20 minutes and get it done that way.
I know this seems like a huge, potentially fatal problem, but it is minor...
Another thought I had... Download TWRP, go into CWM recovery and copy the TWRP file and ROM to the sd card, and FLASH TWRP recovery ZIP with CWM recovery, reboot into recovery and you will then be on TWRP and you can use TWRP's HTC Dumlock to flash the ROM and the boot.img without a PC at all... In theory, it should work.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app