SOLVED: Stuck in fastboot with low battery. Use this BATCH file! - HTC One X

You have a problem when you have ALL of the following conditions met:
1. Your battery level is below 3.68 V (3680 mV) (about 10% charged).
2. You have a custom recovery on the recovery partition AND a custom ROM on the system partition.
3. You have just re-locked your bootloader and you can't re-unlock it because your battery is too low (less than 10%).
Here's the problem: If you want to use a RUU, you need about 30% battery. But, if you have less than that, you need to charge it. But the problem is, you can't charge it because you can't boot your phone into either recovery or the ROM itself in order to accept a charge. A re-locked bootloader will NOT allow you to boot either into the custom recovery or the custom ROM. And, you cannot charge your phone in fastboot. Additionally, you cannot re-unlock your bootloader because your phone has even less than 10% charge (3.68 V). If you have between 10% and 30%, then simply re-unlock your bootloader and boot into recovery and charge as normal to a level somewhere above 30% if you want to flash an RUU. But, if your battery is below 10%, then you will need to bring it back above 10% with the script below.
So you need the following script which power cycles your phone repeatedly in order to turn off your screen long enough to accept a charge. Once you reach 3.68 V, which is 10% charge, you're through the woods, so to speak, as you can then, re-unlock your bootloader.
Run the following script as a batch file while your phone is in USB fastboot mode.
Here is the script:
Code:
" @echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"

floepie said:
My battery is low and is in bootloader/flashboot mode. I've relocked the bootloader in preparation to flash the newest RUU. The bootloader won't allow the phone to boot with its custom ROM.
I have the phone plugged in and I can't turn the screen off. The LED is showing red, but is the phone actually charging in order to either flash the RUU or re-unlock the bootloader?
Is there a way to see the battery status? I hope I'm not screwed here.
Click to expand...
Click to collapse
You need to reunlock and flash this recovery http://forum.xda-developers.com/showthread.php?t=1594819 to charge the device then re lock and run ruu. Just give it about a half an hour or so on charge.

lmftmf said:
You need to reunlock and flash this recovery http://forum.xda-developers.com/showthread.php?t=1594819 to charge the device then re lock and run ruu. Just give it about a half an hour or so on charge.
Click to expand...
Click to collapse
Thanks but I can't reunlock with the *.bin. It fails with the report that battery is too low!
Any other ideas?

floepie said:
Thanks but I can't reunlock with the *.bin. It fails with the report that battery is too low!
Any other ideas?
Click to expand...
Click to collapse
Uhh ohh. Tat not goood. Refer to this thread http://forum.xda-developers.com/showthread.php?t=1609190
Setsuna666 said:
IMPORTANT: You must flash the new version of ClockWorkMod in order to be able to recharge the phone while off and from recovery. So, flash the new recovery and this problem will NOT happen.
Click to expand...
Click to collapse

I can't get into CWM (even the latest) with a locked bootloader.

SOLVED!
This little bad boy of a batch file saved my life. I was in a situation where my phone had a custom ROM with a re-locked bootloader and a low battery. The battery cannot be charged while in fastboot, and there was too little charge to re-unlock the bootloader. If you have a custom ROM with a custom recovery (CWM) and a locked bootloader, you cannot get into recovery.
In any case, if you create a batch file with the following contents, you can make your phone continually boot indefinitely, which allows the screen to be off sufficiently long enough between boots that the battery begins to charge. And, when voltage apparently approaches 3.68V, you have enough charge to re-unlock the bootloader and charge normally without the phone's screen in fastboot continually on.
" @echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Source: http://forum.xda-developers.com/showthread.php?t=1643483

floepie said:
This little bad boy of a batch file saved my life. I was in a situation where my phone had a custom ROM with a re-locked bootloader and a low battery. The battery cannot be charged while in fastboot, and there was too little charge to re-unlock the bootloader. If you have a custom ROM with a custom recovery (CWM) and a locked bootloader, you cannot get into recovery.
In any case, if you create a batch file with the following contents, you can make your phone continually boot indefinitely, which allows the screen to be off sufficiently long enough between boots that the battery begins to charge. And, when voltage apparently approaches 1.68V, you have enough charge to re-unlock the bootloader and charge normally without the phone's screen in fastboot continually on.
" @echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Source: http://forum.xda-developers.com/showthread.php?t=1643483
Click to expand...
Click to collapse
you can charge the battery in the "HTC QUIETLY BRILLIANT" screen, this is not necessary.

wolfraim said:
you can charge the battery in the "HTC QUIETLY BRILLIANT" screen, this is not necessary.
Click to expand...
Click to collapse
Uh, no. Can you remove your post? You can't get to that screen when the following conditions are met: low battery, a newly re-locked bootloader, custom recovery/ROM. The locked bootloader prevents you getting beyond fastboot. Read my source, and you will see other threads where this batch file was posted and where you can't get past an immediate fastboot screen.

floepie said:
This little bad boy of a batch file saved my life. I was in a situation where my phone had a custom ROM with a re-locked bootloader and a low battery. The battery cannot be charged while in fastboot, and there was too little charge to re-unlock the bootloader. If you have a custom ROM with a custom recovery (CWM) and a locked bootloader, you cannot get into recovery.
In any case, if you create a batch file with the following contents, you can make your phone continually boot indefinitely, which allows the screen to be off sufficiently long enough between boots that the battery begins to charge. And, when voltage apparently approaches 1.68V, you have enough charge to re-unlock the bootloader and charge normally without the phone's screen in fastboot continually on.
" @echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Source: http://forum.xda-developers.com/showthread.php?t=1643483
Click to expand...
Click to collapse
thanks

floepie said:
This little bad boy of a batch file saved my life. I was in a situation where my phone had a custom ROM with a re-locked bootloader and a low battery. The battery cannot be charged while in fastboot, and there was too little charge to re-unlock the bootloader. If you have a custom ROM with a custom recovery (CWM) and a locked bootloader, you cannot get into recovery.
In any case, if you create a batch file with the following contents, you can make your phone continually boot indefinitely, which allows the screen to be off sufficiently long enough between boots that the battery begins to charge. And, when voltage apparently approaches 1.68V, you have enough charge to re-unlock the bootloader and charge normally without the phone's screen in fastboot continually on.
" @echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Source: http://forum.xda-developers.com/showthread.php?t=1643483
Click to expand...
Click to collapse
Hi, sorry for my english but is translated by google.
Even I have the problem of the battery, I can not do any flash (recovery, ruu etc.).
I created the batch file by copying exactly what you've written, no ", correct?
I started the file and I get continuous
<Waiting for device>
battery-voltage: 2749mV
finished. total time: 0.153s
rebooting into bootloader ...
every time the phone goes off and reads:
<Waiting for device>
battery-voltage: 2749mV
finished. total time: 0.153s
rebooting into bootloader ...
FAILED (status read failed (Too many links))
finished. total time: 0.238s
<Waiting for device>
again after 1 minute.
Is this normal? the file I do go for 1 or 2 hours continuously?
thank you

Yes, the batch file forces the phone to continue to boot over and over again, and you will see the voltage increasing over time. But, you have enough battery to re-unlock the bootloader. Just go to htcdev.com to re-unlock it, or just flash an RUU to update your radio.
Why are you running this batch file when you have enough battery power?
This batch file is only for those whose battery is low and therefore cannot re-unlock the bootloader and have a cutom ROM with a relocked bootloader.

floepie said:
Yes, the batch file forces the phone to continue to boot over and over again, and you will see the voltage increasing over time. But, you have enough battery to re-unlock the bootloader. Just go to htcdev.com to re-unlock it, or just flash an RUU to update your radio.
Click to expand...
Click to collapse
the voltage increases or fluctuates? exampe 2785 - 2888 - 2985 - 2788 etc.
the message:
rebooting into bootloader ...
FAILED (status read failed (Too many links))
finished. total time: 0.238s
<Waiting for device>
is normal?
floepie said:
Why are you running this batch file when you have enough battery power?
Click to expand...
Click to collapse
I have the problem of battery low, I can not flash the recovery or unlock the bootloader.

Oh, you are right. You're battery is too low. You need to charge it until your voltage reaches 3.68 V (3680 mV). The phone should keep powering off and on, and your voltage will go up, but not at *every* boot. It should take about an hour or so? So, yes, the phone will boot a lot of times, but it's the only way out. Just keep the batch running and keep checking every 10 minutes or so.
As for the batch file, I'm pretty certain the quotation marks (" ") are NOT needed.

floepie said:
Oh, you are right. You're battery is too low. You need to charge it until your voltage reaches 3.68 V (3680 mV). The phone should keep powering off and on, and your voltage will go up, but not at *every* boot. It should take about an hour or so? So, yes, the phone will boot a lot of times, but it's the only way out. Just keep the batch running and keep checking every 10 minutes or so.
As for the batch file, I'm pretty certain the quotation marks (" ") are NOT needed.
Click to expand...
Click to collapse
ok.
keep it going for 1 or 2 hours until it reaches 3.68V
can you attach your batch file? please.
Thank you for now, let you know if it reaches 3.68V

There you go. Change the extension to *.bat from *.txt

same prob exactly
hey guys i saw this while am searching for a fix i have the same **** on my one x i tired almost everything out there but only this didnt yet and its my last hope hope it works
i need more info bout this batch i downloaded it ext, edit to .bat paste it in the adb folder
then copied whts inside it and post it in cmd and heres wht its looks like
is it okay like this ?! should i just leave it and wait !?

plzzz help my phone voltage is getting lower :S :S :S wht did i do wrong :S

floepie said:
Oh, you are right. You're battery is too low. You need to charge it until your voltage reaches 3.68 V (3680 mV). The phone should keep powering off and on, and your voltage will go up, but not at *every* boot. It should take about an hour or so? So, yes, the phone will boot a lot of times, but it's the only way out. Just keep the batch running and keep checking every 10 minutes or so.
As for the batch file, I'm pretty certain the quotation marks (" ") are NOT needed.
Click to expand...
Click to collapse
after 1 hour the voltage does not increment, but change always
battery-voltage: 2768mV
battery-voltage: 2747mV
battery-voltage: 2993mV
battery-voltage: 2980mV
battery-voltage: 2970mV
battery-voltage: 2956mV
battery-voltage: 2796mV
and so on.
It's normal?

well for me its increasing now i reached 3370v now
are u leaving your phone or u keep pasting whts writting in the batch !?

sallam5010 said:
well for me its increasing now i reached 3370v now
are u leaving your phone or u keep pasting whts writting in the batch !?
Click to expand...
Click to collapse
just does not work for me?

Related

[Q] Boot loop, can't charge, none of the TUTs working

Hi,
This is how it all started:
1. Got an HTC One X 1.26
2. Unlocked and rooted it using CWM recovery - unfortunately the old version that doesn't charge the battery while in the bootloader!
3. Got OTA update
4. Re-rooted because of loss of root after OTA
5. Tried to start from scratch and run the 1.28 RUU because I had some issues after the OTA
6. The RUU failed because I forgot to re-lock, so after waiting for 20 min while RUU.exe was running I disconnected the phone from USB
7. I re-locked, but by then the battery was so low that neither RUU nor the stock recovery succeeded.
Since then I'm in the reboot loop, so whenever the phone is plugged into either a charger or a USB connection to the PC it turns on and cannot be turned off.
I have scanned all relevant tutorials for help on what to do on low battery:
- http://forum.xda-developers.com/showpost.php?p=25080910&postcount=1
- http://forum.xda-developers.com/showthread.php?p=25329939&highlight=original#post25329939
But none of the tricks worked: Repeated rebooting, repeated rebooting into the bootloader, repeated powering off, all of them tried for > 30min, nothing seems to charge the battery (I have checked with 'fastboot getvar battery-voltage', which didn't really move away from 3680 mv significantly). Thus, not enough power for fastboot to flash the stock recovery.
I even tried to "trick" the phone by charging in using the 5 pins on the back. The charging actually worked, but the phone still turned itself on.
So...is it a brick? Any other ideas? If I had any clue how to do it I'd simply modify the fastboot executable to disable the low battery check if that was possible...
Thanks,
snooper77
Edit: This tip didn't work either: http://forum.xda-developers.com/showthread.php?t=1598336
Hi all,
Very good news: I managed to resurrect my phone Here's what I did:
I realized that the phone would indeed recharge when rebooted to the bootloader - very slowly but steadily. So I wrote the following batch file and ran it overnight:
Code:
@echo off
:start
fastboot reboot-bootloader
fastboot reboot-bootloader
fastboot reboot-bootloader
fastboot reboot-bootloader
fastboot reboot-bootloader
rem ping /n 6 localhost >nul
fastboot getvar battery-voltage
goto start
I had ~3960 mV in the battery by then, which was enough to fastboot and then later RUU!
Thanks to everyone in this forum and especially the disaster recovery threads!
snooper77
Hi snooper , this is great news !! can you explin me how you did it ?
I try your batch file but it does not work for me ,PLZ help i have the same problem
Hi again snooper !! i did some change to your batch file and it is working
i have started at 3504mV and after an hour i have 3665 , so mybe it will work
and i wont have to threw it after all , thats what i did:
@echo off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
Thanks , Thanks
I wonder why my original script didn't work for you, after all, you only deleted a few lines...anyway, did you manage to get it up to ~3.9 V?
Battery and bootloop
snooper77 said:
I wonder why my original script didn't work for you, after all, you only deleted a few lines...anyway, did you manage to get it up to ~3.9 V?
Click to expand...
Click to collapse
Thanks a lot it seems to work for me, I was quite desperate. Can't wait to reflash to get my One X back to life. Thought I bricked it tot:good:aly

Flashing new recovery leaves old one and cannot perform fastboot oem lock

EDIT:
Or if anybody knows where I can look for help on this I would really appreciate it.
Hi,
I am searching yesterday and today to solve my problem but no locuk so far.
Yesterday the phone rebooted and since then is staying on "HTC quietly..."
I tried to flash ROM again that was already on my sdcard but recovery said "Bad zip".
Now I cannot access /sdcard from recovery. "Error mounting"
When "fastboot oem lock" I am getting this message:
... INFOLock successfully...
FAILED (status read failed (Too many links))
And then phone reboot and stays at "HTC quitely...."
Flashing boot.img and recovery.img goes OK but the recovery stays the same.
And I have "Low battery level cannot flash". but i can manage to charg the phone a bit.
This is what I have:
HOX Tegra3
hboot 1.39
CWM recovery v5.8.4.0
IC 15.0.1
Does anybody know more about it.
Thank you
EDIT:
Or if anybody knows where I can look for help on this I would really appreciate it.
Re: fastboot oem lock returns error...?
Why do you want to lock the bootloader ?
2 options to charge
1 put the phone inside the recovery, it will charge there
2 put this file in the fastboot folder and boot the phone into the bootloader/fastboot usb mode and execute the bat file ! It will continuously reboot the phone and charge it little by little
http://db.tt/aLqeTpPO
Mr Hofs said:
Why do you want to lock the bootloader ?
2 options to charge
1 put the phone inside the recovery, it will charge there
2 put this file in the fastboot folder and boot the phone into the bootloader/fastboot usb mode and execute the bat file ! It will continuously reboot the phone and charge it little by little
http://db.tt/aLqeTpPO
Click to expand...
Click to collapse
Thank you but charging is not my main issue. Rather that my phone keeps staying on htc quietly... and that i cannot access sd card.
Re: fastboot oem lock returns error...?
Locking the bootloader will not help you, keep the bootloader unlocked and reflash the recovery, try it again after that
Also erase cache afterwards
Fastboot flash recovery recovery.img
Fastboot erase cache
Mr Hofs said:
Locking the bootloader will not help you, keep the bootloader unlocked and reflash the recovery, try it again after that
Also erase cache afterwards
Fastboot flash recovery recovery.img
Fastboot erase cache
Click to expand...
Click to collapse
I did that...no matter what i flash it says OK but nothing is changed.
I tried flashing other recovery ... nothing.
Thank you.
It seams that I have to take it to a service...
Re: fastboot oem lock returns error...?
Strange ???
try this tool: http://forum.xda-developers.com/showthread.php?t=1924003
It has commands which might help you...
Thank you all
Thank you all for your time.
I did everything, including reinstalling drivers and trying all again, and could not solve it.
I took it to the store hoping they will not mind "unlocked" status.
When I get it back I'll be posting it here if someone can benefit from that info.
Cheers:fingers-crossed:

[Q]Too many issues?

First of all I'm new to this forum so Hello! second of all I'm also new to rooting and custom ROM's.
So today after 3 days of trying to unlock my HTC One X by htcdev.com i finally submitted my identifier token and i got the Unlock_code.bin
I downloaded Android Revolution HD 18.1, I also downloaded the CWM v5.8.4.0 and installed it on my phone.
After that i followed the instructions on how to install the Revolution HD 18.1, after doing all the steps on my phone it told me it was succesfully installed and i had to reboot the system. So i did it, then the part comes where i'm getting stuck. It was rebooting my htc , and it wouldn't go further then the opening screen HTC quietly brilliant it was stuck there. trying to put my phone on and off and on and off, same problem. Now i can only go in the boot-loader menu and in recovery menu and that's it. I re-lock my phone again to update firmware. NOW I HAVE ONLY ACESS TO BOOT MENU AND BATTERY IS ALSO NOT CHARGING I PUT IT ON CHARGING FOR 5, 6 HOURS. WHEN EVER I TRY TOO UNLOCK BOOT LOADER IT SAYS BATTER LOW
I did a lot of research on how to fix my problem, unfortunately nothing helped. (Maybe cuz I'm a noob and new to this)
I tried almost every thing but nothing help
Can someone please help me with this, i've been trying it all day now and i'm giving up the hope.
Some information at the hboot menu of my HTC one X
SHIP S-ON RL
HBOOT-1.31
CPLD-None
MICROP-None
RADIO-2.1204.135.20
eMMC-bootmode: disabled
CPU-bootmode : disabled
1. How to charge my HOX battery as it remain low after long time charging and not allow me to do anything.
2. Before ARHD 18.1 i am running with rom skydragon. please help
Sorry about some information i post above my cell phone is hardly on for10 or 15 sec so i put some information as i remember now here is the exact information.
ENDEAVORU PVT SHIP S-ON RL
HBOOT-1.39.0000
CPLD-None
MICROP-None
RADIO-5.1204.162.29
eMMC-bootmode: disabled
CPU-bootmode : disabled
HW SECURE BOOT : ENABLE
MODE PATH : OFF
DEC 17 2012, 13:59:37
If any one from you guys help me will appreciate.
My phone is rooted but re lock. so i am not able to go in recovery mood. and phone directly go too fast boot mood.
Secondly it is not charging i put it on charging for long time the red led light is not stable and continue blinking. So i am not able to run any command as it say : Battery level is too low to flash. before flashing with ARHD 18.1 battery is normal. please help. I am so sick of any one come with good recommendation. Regards in advanced.
flash the boot.img witch came with your rom zip charge your battery in recovery
thanks if i helpped
too flash the boot img go to bootloader then fastboot
and put the boot.img from the rom zip to the fastboot folder and type
'fastboot flash boot boot.img'
then 'fastboot erase cache'
then it should work fine
thank me if i helped
How to charge in recovery
The5alodi said:
flash the boot.img witch came with your rom zip charge your battery in recovery
thanks if i helpped
too flash the boot img go to bootloader then fastboot
and put the boot.img from the rom zip to the fastboot folder and type
'fastboot flash boot boot.img'
then 'fastboot erase cache'
then it should work fine
thank me if i helped
Click to expand...
Click to collapse
Dear i put cell on charging for long time but when i switched it red line say fast mode low battery status. when ever i try to run any command it says. Failed.( remote battery low). my device is rooted but its relocked so i am not able to go in recovery.
http://forum.xda-developers.com/showthread.php?t=1609190
this will defiantly help
This'll help even more. It will reboot your phone over and over again and it will eventually charge.
http://forum.xda-developers.com/showthread.php?t=1658084&highlight=batch
Sent from my One X
Stiill not get it
The5alodi said:
http://forum.xda-developers.com/showthread.php?t=1609190
this will defiantly help
Click to expand...
Click to collapse
The psot is good but not work for me the main problem is still there: when ever i connect it to pc the cell phone remain on for 30 sec and then restart.I put it charge for long time but still it sucks. i try to unlock boot loader and image recovery the message display in cmd " remote device low battery". I attached the image please see.
syed124 said:
The psot is good but not work for me the main problem is still there: when ever i connect it to pc the cell phone remain on for 30 sec and then restart.I put it charge for long time but still it sucks. i try to unlock boot loader and image recovery the message display in cmd " remote device low battery". I attached the image please see.
Click to expand...
Click to collapse
leave it on the bootloader to charge
Leaving it in the bootloader will drain the phone, it does not charge there.
Use the bat script in the right way ? Place this
http://db.tt/aLqeTpPO
In the fastboot folder on the pc, put the phone in the bootloader/fastboot usb mode
Right click the .bat file and select it to run as administrator ! That's the only way to charge the batt up. Leave it for an hour and you should be able to unlock it and flash a custom recovery from where you can charge the up to more power
Thanks and whta next dear
TToivanen said:
This'll help even more. It will reboot your phone over and over again and it will eventually charge.
http://forum.xda-developers.com/showthread.php?t=1658084&highlight=batch
Sent from my One X
Click to expand...
Click to collapse
Thank u it's work for me i am in recovery mode and unlock as i indicated above the detail of my HOX. what should i do next i have ARHD18.1 zip and CWN super-su v0.87 zip on my sd. But why it stuck on quitely brilliant screen. detail is as follow
ENDEAVORU PVT SHIP S-ON RL
HBOOT-1.39.0000
CPLD-None
MICROP-None
RADIO-5.1204.162.29
eMMC-bootmode: disabled
CPU-bootmode : disabled
HW SECURE BOOT : ENABLE
MODE PATH : OFF
DEC 17 2012, 13:59:37
Don't touch the supersu.zip, it is unnecessary.
1. Wipe/factory reset
2. Flash the ARHD.zip
3. Flash the boot.img from the ARHD.zip "fastboot flash boot boot.img"
Yep the rom is pre rooted so you can skip that
TToivanen said:
Don't touch the supersu.zip, it is unnecessary.
1. Wipe/factory reset
2. Flash the ARHD.zip
3. Flash the boot.img from the ARHD.zip "fastboot flash boot boot.img"
Click to expand...
Click to collapse
Yesterday i do the same but i stuck on screen. please see the details above about h-boot an d radio. Should i need to install firmware and kindly will you be please specific. will be great full to you.
I am Confuse
Mr Hofs said:
Yep the rom is pre rooted so you can skip that
Click to expand...
Click to collapse
How to charge in recovery and secondly how to fast boot after flashing with ARHD confuse
You flashed cwm recovery 5.4.8.0 ? If you are in the recovery and you see the led burning is okey, of not leave the cable on the phone and on the pc and reboot the recovery
Like fastboot command but instead fastboot you type
Adb reboot recovery
It reboots the recovery and the led should go on !
And if you want to go to the bootloader from the recovery you type
Adb reboot bootloader
syed124 said:
Yesterday i do the same but i stuck on screen. please see the details above about h-boot an d radio. Should i need to install firmware and kindly will you be please specific. will be great full to you.
Click to expand...
Click to collapse
No need to flash firmware.
syed124 said:
How to charge in recovery and secondly how to fast boot after flashing with ARHD confuse
Click to expand...
Click to collapse
1. Download HTC drivers and install them. Choose one of the following 32 BIT 64 BIT
2. Download the attached fastboot files. Extract them to a folder on your PC where they are easily accessible.
3. Extract the boot.img from ARHD.zip to the folder too.
4. Hold SHIFT and click RIGHT mouse button anywhere in that folder. Select "open command prompt here".
5. Type
Code:
fastboot flash boot boot.img
and
Code:
fastboot erase cache
How to charge in recovery
TToivanen said:
No need to flash firmware.
1. Download HTC drivers and install them. Choose one of the following 32 BIT 64 BIT
2. Download the attached fastboot files. Extract them to a folder on your PC where they are easily accessible.
3. Extract the boot.img from ARHD.zip to the folder too.
4. Hold SHIFT and click RIGHT mouse button anywhere in that folder. Select "open command prompt here".
5. Type
Code:
fastboot flash boot boot.img
and
Code:
fastboot erase cache
Click to expand...
Click to collapse
sir actually i charge my battery to 3.68 to unlock the boot. my cell phone battery is still down. i wipe data and factory set. and flash with ARHD18.1 it,s complete and says fully done. but when i do the command as u mention above it's says remote battery low. my question is how i put my HOX in recovery charging that i can get cell charge to perform the above commands u said. remember i out my cell phone in batch command charging so right know it is 3580mv. kindly give me the procedure that i put cell in recovery charging and kindly tell me what happen when me flash battery status option in recovery.
Just boot to recovery and it should charge. The led will not light but it does charge.
You can use the batch script too if you want.
Sent from my One X
TToivanen said:
Just boot to recovery and it should charge. The led will not light but it does charge.
You can use the batch script too if you want.
Sent from my One X
Click to expand...
Click to collapse
Last night i boot into recovery and put my cell phone on charge but it's not charge battery is as usuall low. i am running with clockwork mood recovery v5.8.2.7. In reccovery it remain own for some time than powerd off but not charging.
syed124 said:
Last night i boot into recovery and put my cell phone on charge but it's not charge battery is as usual low. i am running with clockwork mood recovery v5.8.2.7. In recovery it remain own for some time than powered off but not charging.
Click to expand...
Click to collapse
I get it i am running lin low recovery 5.8.2.7. can you tell me how much battery is require to run cwm 5.8.4. and how to charge my HoX to get the battery of desired level please help. i am trying it from 4 days and i am getting sick. i am really sick. headache and running in fever. so please can you guide me will be really really grateful to you.
use this batch
http://db.tt/aLqeTpPO
Place it in the fastboot folder and put the phone in fastboot usb mode and then run the .bat file.
It will continuously reboot the phone and charge it little by littl, leave it like that for an hour or so and then flash this recovery
http://db.tt/Krlm4dPs
Sent from my HTC One X using xda premium

Please help!

Hello,
So there we go. I was on ARHD 21 ROM for a while, decided to try PARANOID ANDROID. So i did full wipe (except SD), flashed boot.iso from PA ROM ZIP, then i installed ROM and GAPPS. After that i wiped cache and dalvik. Rebooted, everything worked well, except PA tools was not working correctly. So i decided to flash ROM again with SUPERWIPE.ZIP file from ARHD thread. So what i did:
1. Did full wipe except SD from CWM
2. Flashed superwipe.zip
After flashing was completed, phone rebooted. I saw HTC quietly brilliat logo and nothing more. Now i can go to bootloader, but when i click RECOVERY, phone just reboots and that is it Tried to flash older CWM via one click tool from hasoon2000, TWRP. Same story, when i trying to get to recovery, phone just reboots.
Could someone help me? Thanks.
And other strange thing, when i plug phone to usb or charger it turnes on automaticly. When i turning it off (but leaving for charge or usb) it just restarts and turns on again. (seeing HTC boot start logo). I think it is bad.
Nope, i can not turn my phone OFF. It restarts.
redh4t said:
Nope, i can not turn my phone OFF. It restarts.
Click to expand...
Click to collapse
I had this trouble once my battery was almost empty.
There is an a dos application that quick restart device so that it can charge look in the hox forum.
here the link
http://forum.xda-developers.com/showthread.php?t=1658084
also for for the wipe script you used i think that it also wipe boot.img / recovery.img so first recharge your phone with the link i gave before after 2 hours of restarting it should be
enough so that you can insta boot and recovery again.
Run this script when your in fastboot. Volume down+power just in case
Bloodbreed said:
I had this trouble once my battery was almost empty.
There is an a dos application that quick restart device so that it can charge look in the hox forum.
here the link
http://forum.xda-developers.com/showthread.php?t=1658084
Click to expand...
Click to collapse
Can you help me find it? I should look in Q/A forum? Please?
redh4t said:
Can you help me find it? I should look in Q/A forum? Please?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1658084
Copy paste the script of this treath to notepad and the save it as a bat file then put the bat file in adb folder , start your phone in fastboot mode and finaly start this bat file hope it helps.
That's for windows dunno if it works on mac or linux.
Bloodbreed said:
http://forum.xda-developers.com/showthread.php?t=1658084
Copy paste the script of this treath to notepad and the save it as a bat file then put the bat file in adb folder , start your phone in fastboot mode and finaly start this bat file hope it helps.
Click to expand...
Click to collapse
Page Not Found of this thread
redh4t said:
Page Not Found of this thread
Click to expand...
Click to collapse
This is from floepie thread its a copy paste from it
SOLVED: Stuck in fastboot with low battery. Use this BATCH file!
You have a problem when you have ALL of the following conditions met:
1. Your battery level is below 3.68 V (3680 mV) (about 10% charged).
2. You have a custom recovery on the recovery partition AND a custom ROM on the system partition.
3. You have just re-locked your bootloader and you can't re-unlock it because your battery is too low (less than 10%).
Here's the problem: If you want to use a RUU, you need about 30% battery. But, if you have less than that, you need to charge it. But the problem is, you can't charge it because you can't boot your phone into either recovery or the ROM itself in order to accept a charge. A re-locked bootloader will NOT allow you to boot either into the custom recovery or the custom ROM. And, you cannot charge your phone in fastboot. Additionally, you cannot re-unlock your bootloader because your phone has even less than 10% charge (3.68 V). If you have between 10% and 30%, then simply re-unlock your bootloader and boot into recovery and charge as normal to a level somewhere above 30% if you want to flash an RUU. But, if your battery is below 10%, then you will need to bring it back above 10% with the script below.
So you need the following script which power cycles your phone repeatedly in order to turn off your screen long enough to accept a charge. Once you reach 3.68 V, which is 10% charge, you're through the woods, so to speak, as you can then, re-unlock your bootloader.
Run the following script as a batch file while your phone is in USB fastboot mode.
Here is the script:
Code:
*********************************************Copy this @ECHO to " ********************************** into notepad.
" @ECHO off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Bloodbreed said:
This is from floepie thread its a copy paste from it
SOLVED: Stuck in fastboot with low battery. Use this BATCH file!
You have a problem when you have ALL of the following conditions met:
1. Your battery level is below 3.68 V (3680 mV) (about 10% charged).
2. You have a custom recovery on the recovery partition AND a custom ROM on the system partition.
3. You have just re-locked your bootloader and you can't re-unlock it because your battery is too low (less than 10%).
Here's the problem: If you want to use a RUU, you need about 30% battery. But, if you have less than that, you need to charge it. But the problem is, you can't charge it because you can't boot your phone into either recovery or the ROM itself in order to accept a charge. A re-locked bootloader will NOT allow you to boot either into the custom recovery or the custom ROM. And, you cannot charge your phone in fastboot. Additionally, you cannot re-unlock your bootloader because your phone has even less than 10% charge (3.68 V). If you have between 10% and 30%, then simply re-unlock your bootloader and boot into recovery and charge as normal to a level somewhere above 30% if you want to flash an RUU. But, if your battery is below 10%, then you will need to bring it back above 10% with the script below.
So you need the following script which power cycles your phone repeatedly in order to turn off your screen long enough to accept a charge. Once you reach 3.68 V, which is 10% charge, you're through the woods, so to speak, as you can then, re-unlock your bootloader.
Run the following script as a batch file while your phone is in USB fastboot mode.
Here is the script:
Code:
*********************************************Copy this @ECHO to " ********************************** into notepad.
" @ECHO off
:start
fastboot getvar battery-voltage
fastboot reboot-bootloader
ping /n 6 localhost >nul
goto start
"
Click to expand...
Click to collapse
I am really noob at this .. Using just one click tool. No idea how to use this bath file ...
And my phone is at 66% battery right now
redh4t said:
And my phone is at 66% battery right now
Click to expand...
Click to collapse
Solved it. Wiped recovery cache from One X One Click. Worked.
redh4t said:
I am really noob at this .. Using just one click tool. No idea how to use this bath file ...
Click to expand...
Click to collapse
Ok one click tool won t help you this time.
I uploaded the needed files. I presume you know how to unzip something from zipped files.
So in this zip is a adb folder just unzip it to your desktop for exeample,
then start your phone in fastboot mode, hold vol down+power until you get into bootloader mode.
From there you ll see fastboot and other option (the vol keys are for changing the option an power button will activate the option).
So chose fastboot and then press power and connect phone to pc.
Then in the adb folder that you just extracted from zip file you'll find a file called recharge.bat just double click on it.
A black dos windows will pop up and constantly restart your phone so that it can charge a bit
(may be strange but normal because normal restart use more battery becauseof htc logo and vibration of phone while starting phone).
After one hour or so it should be over 30% from there normaly you can reacces recovery and flash an other rom.Just unplug the phone from cable and close dos windows.
After you flashed your new rom, you also have to flash boot of your phone use your one click tool for this.This boot file is in your
rom file that you downloaded look for a file called boot.img and put it into the one click folder after that just use one click tool to flash
boot.
Hope it helps, i tried to explain it very noob friendly.
redh4t said:
Solved it. Wiped recovery cache from One X One Click. Worked.
Click to expand...
Click to collapse
how do you know it s 66% ?
also you can try if your phone is really at 66% to reflash recovery by using the one click tool.
Bloodbreed said:
how do you know it s 66% ?
also you can try if your phone is really at 66% to reflash recovery by using the one click tool.
Click to expand...
Click to collapse
There is battery meter in one click tool. Everything works great now. Thanks.

[Q] Red Triangle and Exclamation point - won't boot and PC won't recognize

I was S-Off and rooted with Roadrunner. I went ahead and accepted 4.4 OTA fully expecting to lose S-Off and Root.
What I got was a phone that can't recognize the SD card, and won't boot past the white HTC screen (does it twice then shuts down to red triangle and exclamation point. I've tried to get to the main white admin. screen (vol. up and power) but no luck. I have go to a blue screen offering:
a reboot system - doesn't work
apply from SD card - phone can't find it
apply from phone storage - can find no files
apoply from cache - can't find any files
wipe data factory reset - did that and still nothing
wipe cache partition - didn't know what this would end up doing so I haven't tried it.
At the bottom of the screen in green it states :
Mount SDCARD Failed 1 time through 5 times.
Cannon mount SD Card (no such file or directory)
Write host_mode: 0 Done
I only wanted to get to 4.4, S-Off, unlocked, and rooted to get rid of bloatware. I've rooted before but i'm pretty much a noob (I've been reading here for 2+ years) but am lost understanding programmer language.
Can anyone help me? I'm lost as this is my only phone (I don't have a land line)
Thank you
Look at the following thread, may be this can help
http://forum.xda-developers.com/showthread.php?t=2662787
Dugoutdog said:
I was S-Off and rooted with Roadrunner. I went ahead and accepted 4.4 OTA fully expecting to lose S-Off and Root.
What I got was a phone that can't recognize the SD card, and won't boot past the white HTC screen (does it twice then shuts down to red triangle and exclamation point. I've tried to get to the main white admin. screen (vol. up and power) but no luck. I have go to a blue screen offering:
a reboot system - doesn't work
apply from SD card - phone can't find it
apply from phone storage - can find no files
apoply from cache - can't find any files
wipe data factory reset - did that and still nothing
wipe cache partition - didn't know what this would end up doing so I haven't tried it.
At the bottom of the screen in green it states :
Mount SDCARD Failed 1 time through 5 times.
Cannon mount SD Card (no such file or directory)
Write host_mode: 0 Done
I only wanted to get to 4.4, S-Off, unlocked, and rooted to get rid of bloatware. I've rooted before but i'm pretty much a noob (I've been reading here for 2+ years) but am lost understanding programmer language.
Can anyone help me? I'm lost as this is my only phone (I don't have a land line)
Thank you
Click to expand...
Click to collapse
Dugoutdog said:
I was S-Off and rooted with Roadrunner. I went ahead and accepted 4.4 OTA fully expecting to lose S-Off and Root.
What I got was a phone that can't recognize the SD card, and won't boot past the white HTC screen (does it twice then shuts down to red triangle and exclamation point. I've tried to get to the main white admin. screen (vol. up and power) but no luck. I have go to a blue screen offering:
a reboot system - doesn't work
apply from SD card - phone can't find it
apply from phone storage - can find no files
apoply from cache - can't find any files
wipe data factory reset - did that and still nothing
wipe cache partition - didn't know what this would end up doing so I haven't tried it.
At the bottom of the screen in green it states :
Mount SDCARD Failed 1 time through 5 times.
Cannon mount SD Card (no such file or directory)
Write host_mode: 0 Done
I only wanted to get to 4.4, S-Off, unlocked, and rooted to get rid of bloatware. I've rooted before but i'm pretty much a noob (I've been reading here for 2+ years) but am lost understanding programmer language.
Can anyone help me? I'm lost as this is my only phone (I don't have a land line)
Thank you
Click to expand...
Click to collapse
Did you try and update while having a custom recovery and/or Rom installed? Also bootloader is power+volume down. The ota won't effect s off or locked status. Just get to fastboot and boot to RUU mode and run stock RUU. Then take updates to 4.4.2
Just a little more info Gizmoe please
Gizmoe said:
Did you try and update while having a custom recovery and/or Rom installed? Also bootloader is power+volume down. The ota won't effect s off or locked status. Just get to fastboot and boot to RUU mode and run stock RUU. Then take updates to 4.4.2
Click to expand...
Click to collapse
I wrote of my problem in middle of night and blanked on getting to bootloader. I am there now. Fastboot takes me to Fastboot USB. RUU mode isn't an option under fastboot just bootloader, reboot, reboot bootloader, and power down. My PC is not recognizing the phone. I was running stock ROM. I don't recall doing anything special as far as recovery since that would be beyond my learning curve.
Dugoutdog said:
I wrote of my problem in middle of night and blanked on getting to bootloader. I am there now. Fastboot takes me to Fastboot USB. RUU mode isn't an option under fastboot just bootloader, reboot, reboot bootloader, and power down. My PC is not recognizing the phone. I was running stock ROM. I don't recall doing anything special as far as recovery since that would be beyond my learning curve.
Click to expand...
Click to collapse
Can you send fastboot commands like
Code:
Fastboot devices
And see your device listed?
PS: to above
Also just noticed my phone is now saying UNLOCKED which it wasn't before. Just S-Off through roadrunner (and still S-Off). . My contract was up on Friday and called Verizon to get unlock info but they said they didn't supply that info. I needed to go to a third party (figures).
Dugoutdog said:
Also just noticed my phone is now saying UNLOCKED which it wasn't before. Just S-Off through roadrunner (and still S-Off). . My contract was up on Friday and called Verizon to get unlock info but they said they didn't supply that info. I needed to go to a third party (figures).
Click to expand...
Click to collapse
Did you read my other post. Can you confirm if you have fastboot connectivity? RUU mode is a command not a list option.
gizmoe
I can get to the FASTBOOT USB command with bootloader, reboot, reboot bootloader, and power down. My PC made a nolise as if it recognized and connected to the phone but it is not listed.
Dugoutdog said:
I can get to the FASTBOOT USB command with bootloader, reboot, reboot bootloader, and power down. My PC made a nolise as if it recognized and connected to the phone but it is not listed.
Click to expand...
Click to collapse
You have connectivity then. It's not going to list it in " my computer" unless its booted into Rom. Just use this thread
http://forum.xda-developers.com/showthread.php?p=46286588
To flash RUU. Don't do relock or s on just flash the stock RUU.
This is where I'm lost again
If I can't see it in my computer then where do I type the codes? I'm very appreciative of your help but I'm in uncharted waters here.
Dugoutdog said:
If I can't see it in my computer then where do I type the codes? I'm very appreciative of your help but I'm in uncharted waters here.
Click to expand...
Click to collapse
Use cmd prompt. Did you setup adb/fastboot when you used rumrunners? In command prompt with phone plugged in while on boot loader screen type fastboot devices. If you see a serial number returned you are connected. Typing fastboot oem rebootRUU will put the phone into RUU mode where you can flash the decrypted RUU.
my sub-directory
Gizmoe said:
Use cmd prompt. Did you setup adb/fastboot when you used rumrunners? In command prompt with phone plugged in while on boot loader screen type fastboot devices. If you see a serial number returned you are connected. Typing fastboot oem rebootRUU will put the phone into RUU mode where you can flash the decrypted RUU.
Click to expand...
Click to collapse
So far so good. It returned FA37GS912166 fastboot.
Typing as directed it returned
<bootloader> Start Verify: 0
OKAY [0.050s]
finished. total time 0.050s
I have a black screen on my device with a white htc showing. Now I just don't know where to get the stock RUU. I went to nosroms.com but page is gone. Went to htc1guru.com and found this one there.
RUU Zip M7 WL JB 50 VZW 1.10.605.10 Decrypted
File Size: 1.1 GiB - Downloads: 1170
MD5: 2704d492d580887e2741c8a6b7fd620e
Comments: modelid: PN0731000
cidnum: VZW__001
It's downloading but REAL slow. Might be done by the time I hear back from you regarding folder.
Dugoutdog said:
So far so good. It returned FA37GS912166 fastboot.
Typing as directed it returned
<bootloader> Start Verify: 0
OKAY [0.050s]
finished. total time 0.050s
I have a black screen on my device with a white htc showing. Now I just don't know where to get the stock RUU. I went to nosroms.com but page is gone. Went to htc1guru.com and found this one there.
RUU Zip M7 WL JB 50 VZW 1.10.605.10 Decrypted
File Size: 1.1 GiB - Downloads: 1170
MD5: 2704d492d580887e2741c8a6b7fd620e
Comments: modelid: PN0731000
cidnum: VZW__001
It's downloading but REAL slow. Might be done by the time I hear back from you regarding folder.
Click to expand...
Click to collapse
In santods thread at bottom of post #2 look for the decrypted ones. You can download whichever one. I would use the most current and then let it update to kit Kat from software update on phone.
http://forum.xda-developers.com/showthread.php?p=46506621
now waiting
Gizmoe said:
In santods thread at bottom of post #2 look for the decrypted ones. You can download whichever one. I would use the most current and then let it update to kit Kat from software update on phone.
http://forum.xda-developers.com/showthread.php?p=46506621
Click to expand...
Click to collapse
Waiting for download to finish and getting ready for work. It will be close to see if I get it done before I have to leave. If not will finish at 3:00am when I get home and get back to you either way.
almost home
Gizmoe said:
In santods thread at bottom of post #2 look for the decrypted ones. You can download whichever one. I would use the most current and then let it update to kit Kat from software update on phone.
http://forum.xda-developers.com/showthread.php?p=46506621
Click to expand...
Click to collapse
Ok. Have santods file "RUU Zip M7_WL_JB_50_VZW_1.10.605.10_decrypted". I can't remember....do I leave it zipped? If unzipped what file do I use??? recovery_signed.img? If left zipped where must the directory be located? if unzipped where do the files have to be?
I won't forget a big thanks when this is done but thanks for getting me this far. Awaiting your reply.
Dugoutdog said:
Ok. Have santods file "RUU Zip M7_WL_JB_50_VZW_1.10.605.10_decrypted". I can't remember....do I leave it zipped? If unzipped what file do I use??? recovery_signed.img? If left zipped where must the directory be located? if unzipped where do the files have to be?
I won't forget a big thanks when this is done but thanks for getting me this far. Awaiting your reply.
Click to expand...
Click to collapse
Just leave it zipped. Rename to RUU. Then put it in same directory you are in while using cmd prompt. Then type fastboot oem rebootRUU. Once phone is on black screen with silver letters type fastboot flash zip RUU.zip it will do some stuff and then fail saying to flush the image. Just repeat the fastboot flash zip RUU.zip again and it will succeed. You then will be complete stock. Then you should have no problems updating to kitkat either.
Command Error
Gizmoe said:
Just leave it zipped. Rename to RUU. Then put it in same directory you are in while using cmd prompt. Then type fastboot oem rebootRUU. Once phone is on black screen with silver letters type fastboot flash zip RUU.zip it will do some stuff and then fail saying to flush the image. Just repeat the fastboot flash zip RUU.zip again and it will succeed. You then will be complete stock. Then you should have no problems updating to kitkat either.
Click to expand...
Click to collapse
I'm getting a {ERR} command error.
entered " fastboot oem rebootRUU.zip" also tried fastboot oem rebootRUU", "fastboot oem reboot RUU", and "fastboot oem reboot RUU.zip" in case you forgot the space between reboot and RUU.
It is in the directory where the fastboot.exe is located. It is a zipped folder called RUU.zip.
I called in SL for tonight as I really want to get this done tonight. Too much at stake.
Dugoutdog said:
I'm getting a {ERR} command error.
entered " fastboot oem rebootRUU.zip" also tried fastboot oem rebootRUU", "fastboot oem reboot RUU", and "fastboot oem reboot RUU.zip" in case you forgot the space between reboot and RUU.
It is in the directory where the fastboot.exe is located. It is a zipped folder called RUU.zip.
I called in SL for tonight as I really want to get this done tonight. Too much at stake.
Click to expand...
Click to collapse
First type fastboot devices and make sure its connected. Phone needs to be in fast boot mode. Screen should read fastboot usb in red letters. Then type exactly
Fastboot oem rebootRUU
Then
Fastboot flash zip RUU.zip
RUU.zip needs to be in the same directory cmd is reading.
Something is happening . . . . . "sending zip"
resent as failed like you said.
failed as you stated . . . resent. It also said failed resend immediately. something is gyrating.
OK. at bottom of command prompt it says "Successful OKAY 249.248s" Finished total time 312.192 sec.
My phone has HTC in white small letters and a solid green bar below it.
Before I screw anything from this point, what do I do now? Just press the power button?

Categories

Resources