Related
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.
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
Hello everyone! I'm new to HTC and Android phones in general. I have a problem with my Rogers HTC Evo 3D, but I unlocked it.
The problem is that it won't turn on. All I see is the HTC logo with a white background and then a black screen. Then it repeats. This began happening after I updated through Wifi to 4.0.3. It powers down and will no longer start up again. I've researched on this topic but am unable to find a fix for this issue.
So on the HBOOT screen I see
UNLOCKED
SHOOTER_U PVT SHIP S-ON RL
HBOOT-1.49.0008
eMMC-boot
Jul 15 2011, 14:39:25
HBOOT
FASTBOOT
RECOVERY
FACTORY RESET
SIMLOCK
IMAGE CRC
So I can't go into recovery or factory reset at all. In the recovery I just get an android phone with a red exclamation mark. For the Factory Reset, the phone just switches off.
I've tried to change the S-ON to S-OFF but revolutionary has the 'waiting for device' issue which I saw many people were having.
I wasn't even able to get a backup when the update happened. -_-
Any help?
RUU
have access to the bootloader? Rogers operates on a CDMA network? ok so look for the correct network packets RUU, I have GSM and packet looks like this PG86IMG.zip, throw it on the card and then turn on the phone in bootloader "white background and android at the bottom of fellows" package should she run, search for your network, see here http://forum.xda-developers.com/showthread.php?t=1447839
Or install recovery.img via fastboot if you boodloader is UNLOCKED, download CWM recovery or 4ext ,rename to recovery.img ,put in android fastboot and adb folder ,next go to folder in windows CMD ,"cd c:/android" and connect phone in fastboot mode
HBOOT
FASTBOOT <--------------------------
RECOVERY
FACTORY RESET
SIMLOCK
IMAGE CRC
and in WIN cmd flash recovery from folder , "fastboot flash recovery recovery.img" and download system in zip and install in recovery ,
Rogers runs on GSM.
So basically I download a RUU file and rename it to PG86IMG.zip?
Does the RUU file stuff apart from the Carrier matter? There are like 5 or 6 rogers ones on the androidfiles.org website.
I tried the second method and tried using the wipe all data option. All I could see was a hat(?) with an arrow. No loading bar or anything. Is this how it's supposed to be? Does the phone have to be connected to my PC?
Sorry about the double post, but I didn't know that I could use the camera button as well. Now I'm in the process of wiping everything and doing a factory reset.
EDIT
Nope doesn't work. Still stuck in the boot loop. -_-
Thanks for the help!
Anyone able to help? Can't I just wipe everything off of my phone, including operating system, then reinstall it through my computer? Is there a backup available online?
I helped a person out earlier with the same exact issue. Find a stock rooted rom.Than put it on the sd card.Keep a copy on the desktop as well.
Boot into recovery. Cd c:\adb or android, you can name it spongebob as long as the right files are in it.So cd c:\adb than adb reboot recovery.Or pull the battery and hold volume down and power until your in the bootloader.
Next install the zip file with the stock rooted rom.Than once installed pull the battery and put it back in.go back to the bootloader, plug the phone back in.Than select fastboot and press power.
Next go back to the rom on the desktop open the rom look for the boot.img, put it in the adb folder thats in the c drive.Than in cmd type cd c:\adb
Than type
fastboot flash boot boot.img
Next go back to recovery wipe the cache, davilk cache and do the factory data/reset.
Than reboot normally the bootloop should end and it should boot up normally after a few minutes.
Back to business after becoming softbricked.Hit the thanks button if i helped!
Sent from my SPH-D710VMUB using XDA Premium HD app
worldwidehustling said:
I helped a person out earlier with the same exact issue. Find a stock rooted rom.Than put it on the sd card.Keep a copy on the desktop as well.
Boot into recovery. Cd c:\adb or android, you can name it spongebob as long as the right files are in it.So cd c:\adb than adb reboot recovery.Or pull the battery and hold volume down and power until your in the bootloader.
Next install the zip file with the stock rooted rom.Than once installed pull the battery and put it back in.go back to the bootloader, plug the phone back in.Than select fastboot and press power.
Next go back to the rom on the desktop open the rom look for the boot.img, put it in the adb folder thats in the c drive.Than in cmd type cd c:\adb
Than type
fastboot flash boot boot.img
Next go back to recovery wipe the cache, davilk cache and do the factory data/reset.
Than reboot normally the bootloop should end and it should boot up normally after a few minutes.
Back to business after becoming softbricked.Hit the thanks button if i helped!
Sent from my SPH-D710VMUB using XDA Premium HD app
Click to expand...
Click to collapse
Thank you! I followed the instructions and got through everything but my phone is still stuck in a bootloop though.
Could it be the fact that I have S-ON? I tried to obtain S-OFF but Revolutionary keeps on giving me the waiting for device.
EDIT
Ok so now I was able to use Revolutionary to 'connect' with my phone. Now I end up with an error like this.
Found your device: /sbin/sh: getprop: not found (/sbin/sh: getprop: not-/sbin/sh: getprop: not, Android: /sbin/sh: getprop: not, ROM version: /sbin/sh: )
Your device: /sbin/sh: getprop: not, with HBOOT /sbin/sh: getprop: not is not supported at this time. Press <almost> any key to exit.
I do know my HTC Evo 3D is supported though. -_-
Honestly it would be easier if you
p.m. me.I can answer and ask questions faster.If needed i can remote into your pc.
Sent from my SPH-D710VMUB using XDA Premium HD app