My phone is stuck on the white screen where it says HTC one powered by android. When I plug it in the charger the led doesn't turn on. It's s-off, unlocked and rooted. I recently got a oneplus and I did a factory reset on the m8 and left it in the box with about 60% battery left. Power and volume down doesn't work. Haven't tried adb cause I'm at work. Is there an explanation as to why my m8 just won't go past the white screen?
sent from my One and only
cjbart1009 said:
My phone is stuck on the white screen where it says HTC one powered by android. When I plug it in the charger the led doesn't turn on. It's s-off, unlocked and rooted. I recently got a oneplus and I did a factory reset on the m8 and left it in the box with about 60% battery left. Power and volume down doesn't work. Haven't tried adb cause I'm at work. Is there an explanation as to why my m8 just won't go past the white screen?
sent from my One and only
Click to expand...
Click to collapse
Did you try a "hard reset" ? Hold Volume UP + Power Button for at least 10 seconds it should hard reboot the phone, can then immediately press Volume Down + Power to boot into bootloader.
BerndM14 said:
Did you try a "hard reset" ? Hold Volume UP + Power Button for at least 10 seconds it should hard reboot the phone, can then immediately press Volume Down + Power to boot into bootloader.
Click to expand...
Click to collapse
Let me try
sent from my One and only
BerndM14 said:
Did you try a "hard reset" ? Hold Volume UP + Power Button for at least 10 seconds it should hard reboot the phone, can then immediately press Volume Down + Power to boot into bootloader.
Click to expand...
Click to collapse
So I'm able to get into recovery. Tried rebooting there and sent me back to the white screen. Tried wiping but it failed.
sent from my One and only
cjbart1009 said:
So I'm able to get into recovery. Tried rebooting there and sent me back to the white screen. Tried wiping but it failed.
sent from my One and only
Click to expand...
Click to collapse
Do you have adb installed? Maybe you could do a logcat and just share the .txt file.
Code:
adb logcat -v long > booterror.txt
(Or whatever you want to name it...)
It'll make a logcat and output it to folder where your adb is located. Enter the code and hit enter then start the device it'll start recording from the bootloader. We can check if maybe it tosses out some errors for you. Just hit CTRL + C to stop the log when satisfied.
Else you can try a restore from a nandroid backup, seeing as you already did a factory reset and probably wiped all your data
BerndM14 said:
Do you have adb installed? Maybe you could do a logcat and just share the .txt file.
Code:
adb logcat -v long > booterror.txt
(Or whatever you want to name it...)
It'll make a logcat and output it to folder where your adb is located. Enter the code and hit enter then start the device it'll start recording from the bootloader. We can check if maybe it tosses out some errors for you. Just hit CTRL + C to stop the log when satisfied.
Else you can try a restore from a nandroid backup, seeing as you already did a factory reset and probably wiped all your data
Click to expand...
Click to collapse
Is it possible to just flash another ROM?
sent from my One and only
cjbart1009 said:
Is it possible to just flash another ROM?
sent from my One and only
Click to expand...
Click to collapse
Well yeah you can do that too, I just figured you wanted to know what the problem was, hence why you said:
Is there an explanation as to why my m8 just won't go past the white screen?
Click to expand...
Click to collapse
It's fine either way though Yes you can just flash another ROM.
BerndM14 said:
Well yeah you can do that too, I just figured you wanted to know what the problem was, hence why you said: It's fine either way though Yes you can just flash another ROM.
Click to expand...
Click to collapse
Thanks for your help. I can't flash anything right now because I'm at work. Can I flash a ROM via adb?
sent from my One and only
cjbart1009 said:
Thanks for your help. I can't flash anything right now because I'm at work. Can I flash a ROM via adb?
sent from my One and only
Click to expand...
Click to collapse
Yes, here is a guide to some flashing Flashing Guide - Android
Near the bottom you can see flashing for fastboot.
ROM Flashing
Obtain a ROM of your choice, and note the location on your computer.
reboot your device into fastboot mode via one of the following options.
adb reboot bootloader (requires USB debugging to be turned on).
power off the device then back on with 'vol up' + power button.
Wipe your device.
Code:
fastboot -w
Click to expand...
Click to collapse
Update your ROM.
Code:
fastboot update </path/to/your/RomFile.zip>
Click to expand...
Click to collapse
Your phone will update and automatically reboot into the new ROM.
Click to expand...
Click to collapse
Edit: Personally I haven't done it like that.
BerndM14 said:
Yes, here is a guide to some flashing Flashing Guide - Android
Near the bottom you can see flashing for fastboot.
Edit: Personally I haven't done it like that.
Click to expand...
Click to collapse
Or can I push the file into my phone using fast boot? Since I can't get into the home screen.
sent from my One and only
cjbart1009 said:
Or can I push the file into my phone using fast boot? Since I can't get into the home screen.
sent from my One and only
Click to expand...
Click to collapse
You can use adb commands in recovery mode.
BerndM14 said:
You can use adb commands in recovery mode.
Click to expand...
Click to collapse
/sbin/sh: exec: line 1: logcat: not found
this is what showed on my logcat
cjbart1009 said:
/sbin/sh: exec: line 1: logcat: not found
this is what showed on my logcat
Click to expand...
Click to collapse
I tried flashing another ROM and it failed. I wasn't able to get into fast boot mode.
sent from my One and only
cjbart1009 said:
/sbin/sh: exec: line 1: logcat: not found
this is what showed on my logcat
Click to expand...
Click to collapse
From where did you try to run this, within the recovery? Also you were in adb folder I assume
I tried flashing another ROM and it failed. I wasn't able to get into fast boot mode.
sent from my One and only
Click to expand...
Click to collapse
Did it say why it failed?
If you're going with another ROM, wipe again, flash the boot.img(extracted from ROM) first then boot into recovery and flash again.
BerndM14 said:
From where did you try to run this, within the recovery? Also you were in adb folder I assume
Did it say why it failed?
If you're going with another ROM, wipe again, flash the boot.img(extracted from ROM) first then boot into recovery and flash again.
Click to expand...
Click to collapse
Yeah it was within recovery but I didn't do side load. I was in the adb folder. Every time I try to wipe it fails as well. It says it can't mount data. Every time I hold power and volume up it just tasked me to the HTC screen
sent from my One and only
cjbart1009 said:
Yeah it was within recovery but I didn't do side load. I was in the adb folder. Every time I try to wipe it fails as well. It says it can't mount data. Every time I hold power and volume up it just tasked me to the HTC screen
sent from my One and only
Click to expand...
Click to collapse
I don't know... Maybe try this solution.
http://forum.xda-developers.com/showpost.php?p=54885875&postcount=23
Read the thread, sounds like a similar problem.
BerndM14 said:
I don't know... Maybe try this solution.
http://forum.xda-developers.com/showpost.php?p=54885875&postcount=23
Read the thread, sounds like a similar problem.
Click to expand...
Click to collapse
I managed to mount data. When I try to push to sdcard it won't mount on it.
sent from my One and only
cjbart1009 said:
I managed to mount data. When I try to push to sdcard it won't mount on it.
sent from my One and only
Click to expand...
Click to collapse
Even to the external SD Card? And Sideloading it?
BerndM14 said:
Even to the external SD Card? And Sideloading it?
Click to expand...
Click to collapse
I haven't tried the side load option. But when I go to mount and try to click SD card it won't let me
sent from my One and only
cjbart1009 said:
I haven't tried the side load option. But when I go to mount and try to click SD card it won't let me
sent from my One and only
Click to expand...
Click to collapse
Did you mount data with adb?
Try again maybe. Place your ROM in the adb folder, open command window in adb folder. Have phone connected to computer and of course booted into recovery mode.
adb shell
mount data
adb push D:\custom_rom.zip /data/
Wait until the push finised, and restart your device to recovery again with "adb reboot-bootloader"
mount data
mount /data /sdcard
Locate the ROM .Zip file you wish to flash.
Have you tried some of the other methods in that flashing guide I linked? You could also try and reformat the SD Card and see if it won't fix whatever problem it has, of course remove the ROM first if you have it on there.
Related
Hi..
Hopefully someone can help me..
I previously had ClockworkMod 2.5.0.1 installed and desided to change to Amon RA recovery 2.0.0, since I couldn't backup my ext4 partitions.
I've got RCMixHD 3.0b1 installed, but since I flashed another recovery it installed a new superuser - This superuser didn't work properly, as I had to "allow" all the time, everytime I needed root (try backing up with MyBackup Root eh'?).
Then someone told me to re-flash my current ROM without wipe, so I tried that..
But... I got an error after the ROM installed a bit and then tried wiping to restore my nandroid.
This unfortunately didn't work, as I got somekind of mount error.
Now, everytime I try wipe, install or anything from my SD Card in recovery I get the following error:
E:Can't mount /dev/block/mmcblk0p1 (or /dev/block/mmcblk0)
(No such file or directory)
E:Can't mount /sdcard
Click to expand...
Click to collapse
I tried re-partitioning my card, which didn't work, now I don't know what to do, already been phone-less for a day now =/
I can't flash another recovery with unrEVOked, as I can't get past the damn "HTC"-screen.
EDIT: Using "Clear storage" in FASTBOOT just made it reboot all the time @ "HTC"
Any sugestions will do, please help.
- Neo3000x
try formatting / partitioning via nokia ( i did the same on my 5800xm running c6 firmware and it fixed the card ) hope it helps and hope you have access to a 5800 with c6 firmware
Post title edited to remove swearing. Please do not swear on the forums.
Thanks
Format it in Sd Crad reader
I already tried formatting it through gParted, RA Recovery and Windows, no luck yet..
When I boot into fastboot, I see that it's loading the .zips, but not in recovery
Okay...
Anything will do, currently I have a phone that does absolutely nothing, besides showing me the HTC logo..
Should I install a RUU and the root it afterwards?
What happens when you connect your phone to the computer? It actually sounds like a USB brick!
Hallydamaster
hallydamaster said:
What happens when you connect your phone to the computer? It actually sounds like a USB brick!
Hallydamaster
Click to expand...
Click to collapse
Without pressing the button it boots over and over, trying to install Qualcomm CDMA Technologies MSM driver.
Tried to do the unbrick of USB and got "Device not found" in adb all the time..
Did I do something wrong? Installed the usb-driver from unrEVOked to connect.
Neo3000x said:
Tried to do the unbrick of USB and got "Device not found" in adb all the time..
Did I do something wrong? Installed the usb-driver from unrEVOked to connect.
Click to expand...
Click to collapse
Seems to me this is what we call an USB Brick
Have a look here http://forum.xda-developers.com/showthread.php?t=691187or here http://android.modaco.com/content/htc-desire-desire-modaco-com/309939/usb-brick-rickrolled-b0rked-fixed/
leinad said:
Seems to me this is what we call an USB Brick
Have a look here http://forum.xda-developers.com/showthread.php?t=691187or here http://android.modaco.com/content/htc-desire-desire-modaco-com/309939/usb-brick-rickrolled-b0rked-fixed/
Click to expand...
Click to collapse
So.. Can I fix it 100% myself or do I actually have to send it in for fixing?
EDIT: Aren't my warranty gone, since I ****ed this up myself btw?
Neo3000x said:
So.. Can I fix it 100% myself or do I actually have to send it in for fixing?
Click to expand...
Click to collapse
Can you still get into Recovery?
Also...
Do you have Insurance on it? If you Do Try going that Route, just tell them You got a FC and it
Shut Off on its Own!!
Good Luck!
Sent from my HERO200 using XDA App
Neo3000x said:
So.. Can I fix it 100% myself or do I actually have to send it in for fixing?
EDIT: Aren't my warranty gone, since I ****ed this up myself btw?
Click to expand...
Click to collapse
I think you can fix it by yourself, following these totos.
I can still get into recovery yes, but I really can't do that much in there, as it won't mount the damn SD card.
Neo3000x said:
I can still get into recovery yes, but I really can't do that much in there, as it won't mount the damn SD card.
Click to expand...
Click to collapse
I'm gonna upload a SU Zip for you, I want you to try that! I had the Same Issue but not as Drastic and I Flashed this and it fixed everything! Gimme 5mins. To Find it!! OKAY TRY THIS... I'LL KEEP MY FINGERS CROSSED FOR YOU!!
Sent from my HERO200 using XDA App
PMGRANDS said:
I'm gonna upload a SU Zip for you, I want you to try that! I had the Same Issue but not as Drastic and I Flashed this and it fixed everything! Gimme 5mins. To Find it!! OKAY TRY THIS... I'LL KEEP MY FINGERS CROSSED FOR YOU!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
Okay, ty..
But, what should I do with it? How to flash it when I can't access my SD card?
Neo3000x said:
Okay, ty..
But, what should I do with it? How to flash it when I can't access my SD card?
Click to expand...
Click to collapse
See Sh.t, I Misunderstood you I Thought you were able to Flash Zips, But they Weren't Fully Installing Because of the Mount Problem... You Don't happen to have a Micro Sdcard Adapter do you? On the Adapter there's a LITTLE WHITE SWITCH to the Left of the M in the word Micro... that Switch was Responsible for me Getting the Same Reading... the Dev/Block/Whatever Else? Can't Remember, but all I did was take the Sdcard out of my phone and flick that Stupid Little Switch the Opposite way and All of a Sudden I was Back in Business!
Sent from my HERO200 using XDA App
Neo3000x said:
I can still get into recovery yes, but I really can't do that much in there, as it won't mount the damn SD card.
Click to expand...
Click to collapse
I you can still get into recovery, you can also still get into bootloader and fastboot:
power off, then power on while holding 'back' button => You should get into bootloader
When in bootloader, you choose 'fastboot' => first choice in the list of four
You then connect you USB cable => You should see a message like 'fastboot usb' in red.
On you PC, open a terminal window and go to your fastboot directory (directory where you should have installed the Google SDK)
Then, you type the following command in your terminal window:
Code:
fastboot oem enableqxdm 0
This should reenable your SD card.
At that stage, you are back with a working phone, but the USB is not yet working properly. You'll have to reflash your 'misc' partition with a correct mtd0.img.
The tutos I showed you in a previous reply explains the procedure to follow.
hope this will help.
leinad said:
I you can still get into recovery, you can also still get into bootloader and fastboot:
power off, then power on while holding 'back' button => You should get into bootloader
When in bootloader, you choose 'fastboot' => first choice in the list of four
You then connect you USB cable => You should see a message like 'fastboot usb' in red.
On you PC, open a terminal window and go to your fastboot directory (directory where you should have installed the Google SDK)
Then, you type the following command in your terminal window:
Code:
fastboot oem enableqxdm 0
This should reenable your SD card.
At that stage, you are back with a working phone, but the USB is not yet working properly. You'll have to reflash your 'misc' partition with a correct mtd0.img.
The tutos I showed you in a previous reply explains the procedure to follow.
hope this will help.
Click to expand...
Click to collapse
yay, that worked and my phone is running!
Got a locations.apk fc when it booted, but still..
So, you're saying that I still need to do something to be completely unbricked?
Neo3000x said:
yay, that worked and my phone is running!
Got a locations.apk fc when it booted, but still..
So, you're saying that I still need to do something to be completely unbricked?
Click to expand...
Click to collapse
Ya ... Your phone is working, but, when you plug your USB cable, your PC does not detect it, is'it ?
All depends now on the following points :
Is your phone s-off or not ? Is your current ROM rooted or not ?
Ok, asked a friend to erase pics on my phone as was going to sell it, to him, but he basically went into recovery, and erased every file, result stuck on white htc screen. I can press the power button and the volume up and down, buttons to gain access to hbot, recovery etc, but their is nothing to flash and restore in recovery, and last rom i had is endevour rom, any suggestions please thanks.
marvi0 said:
Ok, asked a friend to erase pics on my phone as was going to sell it, to him, but he basically went into recovery, and erased every file, result stuck on white htc screen. I can press the power button and the volume up and down, buttons to gain access to hbot, recovery etc, but their is nothing to flash and restore in recovery, and last rom i had is endevour rom, any suggestions please thanks.
Click to expand...
Click to collapse
Remember your software version?
Locked or unlocked bootloader?
Never use volume up + power! - some have reported it can brick your device , it's always volume down + power.
Sent from my HTC One X using XDA Premium HD app
chrisjcks said:
Remember your software version?
Locked or unlocked bootloader?
Never use volume up + power! - some have reported it can brick your device , it's always volume down + power.
Sent from my HTC One X using XDA Premium HD app
Click to expand...
Click to collapse
Bootloader unlocked and running a custom rom Endeavoru.
Well, if you don't know what ROM it was, best to just pick one and install it.
Make sure you are on clockworkmod 5.8.4.0, then flash ROM and boot.img.
BenPope said:
Well, if you don't know what ROM it was, best to just pick one and install it.
Make sure you are on clockworkmod 5.8.4.0, then flash ROM and boot.img.
Click to expand...
Click to collapse
Might sound a bit scilly, but how do I flash, when I cannot get past that screen, htc screen, assuming the only way to flash, is to actually turn phone past this white screen to place rom on phone?.
Hold power and volume down. Should hit the bootloader.
With the latest recovery, you can mount as card as USB and then copy ROM to phone from pc.
BenPope said:
Hold power and volume down. Should hit the bootloader.
With the latest recovery, you can mount as card as USB and then copy ROM to phone from pc.
Click to expand...
Click to collapse
Unfortunately, it won't allow me to mount sd card as usb, any more suggestions please, on how to get out of this unpleasant situation.
marvi0 said:
Unfortunately, it won't allow me to mount sd card as usb, any more suggestions please, on how to get out of this unpleasant situation.
Click to expand...
Click to collapse
..."with the latest", that'll be clockworkmod 5.8.4.0
marvi0 said:
Unfortunately, it won't allow me to mount sd card as usb, any more suggestions please, on how to get out of this unpleasant situation.
Click to expand...
Click to collapse
Ben is correct,
Flash clockworkmod touch
then you can mount your USB.
-----
Get Android SDK installed on your PC,
Put phone into fastboot USB
Flash clockworkmod touch via adb
Clockworkmod touch - http://db.tt/VF9J2eo8
Fastboot flash recovery CWM.img
Enter recovery, mount USB storage.
All of the above is done whilst phone is plugged into PC
don't flash anything on low battery
Sent from my Nexus 7 using XDA Premium HD app
thanks guys, but am struggling to flash the latest clockword, as having trouble renaming it as required.
marvi0 said:
thanks guys, but am struggling to flash the latest clockword, as having trouble renaming it as required.
Click to expand...
Click to collapse
Renaming it? - not sure what you mean here.
Plug phone into PC
Put phone into fastboot USB (power + volume down then select fastboot with then power button )
Place CWM.img inside the same folder as adb, fastboot etc within your android SDK installation
Open command prompt on PC
Default installation commands are:
CD c:/Android-SDK/platform-tools
fastboot flash recovery CWM.img
If you installed android SDK to a location of your choice, you will haven to change the first command to that location.
Etc.
Sent from my Nexus 7 using XDA Premium HD app
chrisjcks said:
Renaming it? - not sure what you mean here.
Plug phone into PC
Put phone into fastboot USB (power + volume down then select fastboot with then power button )
Place CWM.img inside the same folder as adb, fastboot etc within your android SDK installation
Open command prompt on PC
Default installation commands are:
CD c:/Android-SDK/platform-tools
fastboot flash recovery CWM.img
If you installed android SDK to a location of your choice, you will haven to change the first command to that location.
Etc.
Sent from my Nexus 7 using XDA Premium HD app
Click to expand...
Click to collapse
Thanks, so basically, I have to remain, the file, cmw.img first?
marvi0 said:
Thanks, so basically, I have to remain, the file, cmw.img first?
Click to expand...
Click to collapse
Just type the name of the Clockworkmod recovery file you downloaded, it should be recovery-clockwork-touch-5.8.4.0-endeavoru.img if you have downloaded the latest version.
No harm in renaming it but no need either. As it's a long filename, in most recent versions of Windows, you can type the first few letters then hit TAB and Windows should bring up the correct filename.
Code:
fastboot flash recovery recovery-clockwork-touch-5.8.4.0-endeavoru.img
marvi0 said:
Thanks, so basically, I have to remain, the file, cmw.img first?
Click to expand...
Click to collapse
I tried to make it simple for you
http://db.tt/VF9J2eo8
Download that, its already renamed to CWM.img to make it simple for you.
The commands for command prompt if you installed Android SDK to its default location are:
CD c:/Android-SDK/platform-tools
fastboot flash recovery CWM.img
The top command is the location of your fastboot, adB etc within Android-SDK, this is the location you place cwm.IMG that you downloaded above.
You run the 2 commands above after you've put your phone into fastboot USB
Sent from my Nexus 7 using XDA Premium HD app
thanks guys, i think am getting somewhere now, as am now getting a low battery error, so charging my phone, hope its charging, cause its sat at that white screen, with the red charging light on, so i hope its charging, will let it charge for a few hours, then try again, but really wanted to do it tonight, any idea, how long it takes to charge?, under this condition.
marvi0 said:
thanks guys, i think am getting somewhere now, as am now getting a low battery error, so charging my phone, hope its charging, cause its sat at that white screen, with the red charging light on, so i hope its charging, will let it charge for a few hours, then try again, but really wanted to do it tonight, any idea, how long it takes to charge?, under this condition.
Click to expand...
Click to collapse
I suggest charging your phone whilst you still can, don't be impatient - low battery is the cause of most problems on XDA when people flash.
Sent from my Nexus 7 using XDA Premium HD app
thanks guys, it worked, phone is alive much appreciated.
I'm a noob too.But let me just share with you,
1. Hold vol down and power button to get into bootloader.
2. Once in,select fastboot then choose recovery.
You should be able to see clockworkmod recovery or TWRP,whichever you installed.But to install them you'll need to do it through fastboot on the command prompt (for Windows) or terminal bash (for MasOS).Make sure you have the recovery.img stored in your computer first before proceeding.If you're not sure about this,then maybe you can Google search it first and I'll guarantee it'll take you back to XDA.
Sorry cos I don't have the links to share.But I hope this reply can enlighten you a bit.Good luck!
stomplunacy said:
I'm a noob too.But let me just share with you,
1. Hold vol down and power button to get into bootloader.
2. Once in,select fastboot then choose recovery.
You should be able to see clockworkmod recovery or TWRP,whichever you installed.But to install them you'll need to do it through fastboot on the command prompt (for Windows) or terminal bash (for MasOS).Make sure you have the recovery.img stored in your computer first before proceeding.If you're not sure about this,then maybe you can Google search it first and I'll guarantee it'll take you back to XDA.
Sorry cos I don't have the links to share.But I hope this reply can enlighten you a bit.Good luck!
Click to expand...
Click to collapse
Rather old news, this was solved about 3 months ago
Hi,
I'm pretty new to this so I'm just going to state my issue and hopefully I can get some help!
I recently rooted this phone and installed the Viper2 rom for the HTC one x.
I realized that mobile data doesn't work on this rom for me so I decided to "restore" using clockwork and hoping to restore my phone to the "Stock"
So I went through clock work -> restore -> restore back to previous date-> after that I rebooted.
After rebooting, the phone is stuck at the HTC screen. I cannot access anything else except the "power" + "down button volume screen".
Thanks again for the help!
flash boot.img located in clockwardmod/backups folder on sdcard, you can mount USB storage in recovery.
tomascus said:
flash boot.img located in clockwardmod/backups folder on sdcard, you can mount USB storage in recovery.
Click to expand...
Click to collapse
Thanks for the reply! Can you explain to me how you would do that? I'm not too sure what you mean. Like what do I input in the CMD command prompt?
bhsu28 said:
Thanks for the reply! Can you explain to me how you would do that? I'm not too sure what you mean. Like what do I input in the CMD command prompt?
Click to expand...
Click to collapse
the boot.img is in the backup.zip file, then type:
Code:
fastboot flash boot path/to/boot.img
Code:
fastboot erase cache
reboot and you're done
matt95 said:
the boot.img is in the backup.zip file, then type:
Code:
fastboot flash boot path/to/boot.img
Code:
fastboot erase cache
reboot and you're done
Click to expand...
Click to collapse
I downloaded the OneXRoot files. Do I go
cd Downloads
cd OneXRoot
fast boot path/to/boot.imp
fastboot erase cache?
Also my phone says battery level is too low to flash and when i plug in my USB it doesn't charge....
bhsu28 said:
I downloaded the OneXRoot files. Do I go
cd Downloads
cd OneXRoot
fast boot path/to/boot.imp
fastboot erase cache?
Also my phone says battery level is too low to flash and when i plug in my USB it doesn't charge....
Click to expand...
Click to collapse
power off the phone and charge it then, and repeat again later...what root files? haven't you restored a previous backup?
matt95 said:
power off the phone and charge it then, and repeat again later...what root files? haven't you restored a previous backup?
Click to expand...
Click to collapse
For some reason when I power off the phone and plug in the charger, it doesn't charge..
I tried to fastboot flash path/to/boot.img and it says "error: cannot load path/to/boot.img"
Yes I have a previous backup in my clockwork, I have tried restoring it and then starting my phone and it doesn't work.
bhsu28 said:
For some reason when I power off the phone and plug in the charger, it doesn't charge..
I tried to fastboot flash path/to/boot.img and it says "error: cannot load path/to/boot.img"
Yes I have a previous backup in my clockwork, I have tried restoring it and then starting my phone and it doesn't work.
Click to expand...
Click to collapse
of course it isn't working, you need to flash its boot.img first...you can find the boot.img in the backup folder on your phone, copy it to your computer and retry
matt95 said:
of course it isn't working, you need to flash its boot.img first...you can find the boot.img in the backup folder on your phone, copy it to your computer and retry
Click to expand...
Click to collapse
Sorry I don't know if this is a stupid question, but I can't even access files on my phone because it's stuck and the USB driver doesn't load onto the computer.
bhsu28 said:
Sorry I don't know if this is a stupid question, but I can't even access files on my phone because it's stuck and the USB driver doesn't load onto the computer.
Click to expand...
Click to collapse
go into recovery and mount usb
matt95 said:
go into recovery and mount usb
Click to expand...
Click to collapse
Thanks! I will try that and let you know. Where do I drag the boot.img file to?
matt95 said:
go into recovery and mount usb
Click to expand...
Click to collapse
When I tried that it says E:Unable to open ums lunfile (No such file or directory)
bhsu28 said:
When I tried that it says E:Unable to open ums lunfile (No such file or directory)
Click to expand...
Click to collapse
you need to reflash the recovery, download the CWM then type
Code:
fastboot flash recovery path/to/recovery.img
matt95 said:
you need to reflash the recovery, download the CWM then type
Code:
fastboot flash recovery path/to/recovery.img
Click to expand...
Click to collapse
I tried using this link http://www.theandroidsoul.com/how-to-install-official-clockworkmod-cwm-recovery-on-one-x/
to recover the CWM. What should I do next?
bhsu28 said:
I tried using this link http://www.theandroidsoul.com/how-to-install-official-clockworkmod-cwm-recovery-on-one-x/
to recover the CWM. What should I do next?
Click to expand...
Click to collapse
what said before, go into recovery and mount usb and see if that works now
matt95 said:
what said before, go into recovery and mount usb and see if that works now
Click to expand...
Click to collapse
It still doesn't work. Still shows up the same error.
I've tried backup and restore -> "restore to previous version" still doesn't work.
bhsu28 said:
It still doesn't work. Still shows up the same error.
I've tried backup and restore -> "restore to previous version" still doesn't work.
Click to expand...
Click to collapse
ok, you should try charging your phone, sometimes the recovery gives these errors cause there's battery low... so you can't charge battery while it is powered off?
matt95 said:
ok, you should try charging your phone, sometimes the recovery gives these errors cause there's battery low... so you can't charge battery while it is powered off?
Click to expand...
Click to collapse
Yeah I can charge it now. It works.
So i rooted my phone through the onexroot website.
What i've been doing before is loading my rom and if something doesn't work/ I just restore and it restores back to the last time i restored it.
but this time I was on the ViperX rom for a day or so and I tried to restore it again like usual but it didn't work this time. Just to give you some background if it wasn't clear earlier.
Thanks again for putting the time in to help me. It's a new phone and I really want it to work again.
bhsu28 said:
Yeah I can charge it now. It works.
So i rooted my phone through the onexroot website.
What i've been doing before is loading my rom and if something doesn't work/ I just restore and it restores back to the last time i restored it.
but this time I was on the ViperX rom for a day or so and I tried to restore it again like usual but it didn't work this time. Just to give you some background if it wasn't clear earlier.
Thanks again for putting the time in to help me. It's a new phone and I really want it to work again.
Click to expand...
Click to collapse
can you tell me which was exactly the version of the rom that you are trying to restore?
matt95 said:
can you tell me which was exactly the version of the rom that you are trying to restore?
Click to expand...
Click to collapse
I don't exactly remember but I'm just trying to restore back to the factory form. Does that help? Cause i think it was around version 4.0.1?
Hello !
Here's my prob :
I installed CWM Recovery on my OUYA, and then i wanted to flash a ROM via recovery.
Unfortunately, i've done a full wipe while in recovery, and restarted the console.
Now it's turning on, with the power button on, black screen, and identifyed as an MTP USB device.
I tried the alt + Sysreq + i trick, but it doen't seems to work here ...
Any chance to get it back to life in other way ?
Keep trying alt + sysreq + i trick my takes about 50 times before the light on the ouya flashes then i have to hit the home key some times to see anything
imerrn said:
Keep trying alt + sysreq + i trick my takes about 50 times before the light on the ouya flashes then i have to hit the home key some times to see anything
Click to expand...
Click to collapse
What timing of button's hitting have you used ?
The light of the OUYA is flashing when in recovery mode ?
ElMeteK said:
What timing of button's hitting have you used ?
The light of the OUYA is flashing when in recovery mode ?
Click to expand...
Click to collapse
Try these timings. I had the same issue and these worked for me. The keyboard trick is currently your only hope.
I keep pressing alt + sysreq + i keys at the same time takes me about 30 times to get to recovery the light will flash one time then i know im in recovery some times iget the ouya smile with a ! mark some time a black screen then i press home button to get to recovery push the home button again it goes away i have done about three ouya.
Problem solved.
My ouya doesn't loved my Microsoft Keyboard...
I used a generic on, and it works directly
Ouya saved
Another advice : if it doesn't work, try another keyboard !
Ouya Bricked Need Help Reward For The Fixer
Here is my Issue I installed The CWM and flashed over a few ROMS but really wanted to try out the CM10. I had all my files backed up but some how they were all deleted and when I turn on my machine I get the Cyanogen boot loop and I can do the keyboard trick print screen/ Alt / I but there is no files to recover and I have no way to load any ROM directly to my internal nand flash unless there is something I am missing.
I am so upset I with thy would have put a sd card slot on this thing. Can anyone help me to try to recover putting any stock ROM back on my machine or is there a way to get my PC to read my device to load the ROM to my internal HD?
Please any help and instructions would be greatly appreciated.
I need some serious help here. Thanks to anyone who can get me back up and running again I will even send the person who has the solution one of my devices that run XBMC like a champ. Here is my site for anyone who is up for the challenge. www.xbmcandroidtv.com the EXOON Q2 Plus is the device I will send to the person who solves my dilemma.
I have tried the keyboard trick but all I get it to do is load into CWM and there is nothing to load. Am I doing something wrong?
Thanks in advance and eager to get my OUYA back up and running.
labossiere said:
Here is my Issue I installed The CWM and flashed over a few ROMS but really wanted to try out the CM10. I had all my files backed up but some how they were all deleted and when I turn on my machine I get the Cyanogen boot loop and I can do the keyboard trick print screen/ Alt / I but there is no files to recover and I have no way to load any ROM directly to my internal nand flash unless there is something I am missing.
I am so upset I with thy would have put a sd card slot on this thing. Can anyone help me to try to recover putting any stock ROM back on my machine or is there a way to get my PC to read my device to load the ROM to my internal HD?
Please any help and instructions would be greatly appreciated.
I need some serious help here. Thanks to anyone who can get me back up and running again I will even send the person who has the solution one of my devices that run XBMC like a champ. Here is my site for anyone who is up for the challenge. www.xbmcandroidtv.com the EXOON Q2 Plus is the device I will send to the person who solves my dilemma.
I have tried the keyboard trick but all I get it to do is load into CWM and there is nothing to load. Am I doing something wrong?
Thanks in advance and eager to get my OUYA back up and running.
Click to expand...
Click to collapse
You have to fastboot the "boot.img" supplied with CM10. I had the same issue so pm me if you need help.:good:
Never, ever ever ever ever ever wipe the boot.img, if you want to be safe, never replace it either, you can always 'fastboot boot boot.img" it.
Sent from my SAMSUNG-SGH-I317 using xda premium
at what point does your Ouya connect back to your pc so you can do a fastboot command? do you have to be in CWM?
glitchhawk said:
at what point does your Ouya connect back to your pc so you can do a fastboot command? do you have to be in CWM?
Click to expand...
Click to collapse
You can do it from CWM, but you don't have to be there. Depends on what you've done to your system. If you flashed CM10 and now it's detected as an MTP device your best bet is to reboot into recovery and 'adb reboot bootloader' then use fastboot commands. That's what worked for me.
BUS DR1V3R said:
You can do it from CWM, but you don't have to be there. Depends on what you've done to your system. If you flashed CM10 and now it's detected as an MTP device your best bet is to reboot into recovery and 'adb reboot bootloader' then use fastboot commands. That's what worked for me.
Click to expand...
Click to collapse
ok, cuz im basically in the same boat as everyone else. i flashed CM10 and now its hanging at the CM boot screen. so i guess its time to sit there and tap keys for hours lol.
BUS DR1V3R said:
You can do it from CWM, but you don't have to be there. Depends on what you've done to your system. If you flashed CM10 and now it's detected as an MTP device your best bet is to reboot into recovery and 'adb reboot bootloader' then use fastboot commands. That's what worked for me.
Click to expand...
Click to collapse
in stock recovery am i suppose to go into sideload sub menu? my pc doesn't detect the ouya in the main recovery menu
glitchhawk said:
in stock recovery am i suppose to go into sideload sub menu? my pc doesn't detect the ouya in the main recovery menu
Click to expand...
Click to collapse
How does the Ouya show up in device manager? Is there an exclamation point beside it?
If the drivers are fine then try mounting /data in recovery.
BUS DR1V3R said:
How does the Ouya show up in device manager? Is there an exclamation point beside it?
If the drivers are fine then try mounting /data in recovery.
Click to expand...
Click to collapse
sorry, how do i mount it? the only options i have in stock recovery is
Reboot system now
Apply update from ADB (if i go into this menu i have the driver installed on pc and it comes up adb composite device)
wipe data/factory reset
wipe cache partition
glitchhawk said:
sorry, how do i mount it? the only options i have in stock recovery is
Reboot system now
Apply update from ADB (if i go into this menu i have the driver installed on pc and it comes up adb composite device)
wipe data/factory reset
wipe cache partition
Click to expand...
Click to collapse
Ah, stock recovery.... You could go into Apply Update From ADB. Then type "adb reboot bootloader" then you can type "fastboot boot boot.img" to boot successfully into CM10.
You can put the boot.img for CM10 in the same folder as fastboot.exe to make things easier.
BUS DR1V3R said:
Ah, stock recovery.... You could go into Apply Update From ADB. Then type "adb reboot bootloader" then you can type "fastboot boot boot.img" to boot successfully into CM10.
You can put the boot.img for CM10 in the same folder as fastboot.exe to make things easier.
Click to expand...
Click to collapse
well this is lame.. it keeps telling me Error: Closed
glitchhawk said:
well this is lame.. it keeps telling me Error: Closed
Click to expand...
Click to collapse
What keeps telling you that? What are you doing? I need more information.
BUS DR1V3R said:
What keeps telling you that? What are you doing? I need more information.
Click to expand...
Click to collapse
I put the Ouya on sideload from adb.
Then i open adb on my pc, check to make sure it finds the Ouya and then i try to adb reboot bootloader. and that error comes up. if i try to load an .img file from the same place it just says <waiting for device> and doesn't ever move.
glitchhawk said:
I put the Ouya on sideload from adb.
Then i open adb on my pc, check to make sure it finds the Ouya and then i try to adb reboot bootloader. and that error comes up. if i try to load an .img file from the same place it just says <waiting for device> and doesn't ever move.
Click to expand...
Click to collapse
If it says <waiting for device> then its probably a driver issue with fastboot. When you reboot into the bootloader go into device manager and check the driver again. I also had this issue.
Hello all- I'm in desperate need for some help! When I was attempting to wipe data on my HTC One I accidentally clicked on every single option Ugggh! I'm a moron! Can anyone please let me know how I can flash the phone to get it working again? (The phone is unlocked & S-Off is that helps at all? ) I'm using the latest TWRP but I can't even seem to get to recovery any longer either
So much thanks to anyone that can help...I'll be happy to send a donation to whom ever can help me get my phone up and running again as well-
Scoob
scooby-snack said:
Hello all- I'm in desperate need for some help! When I was attempting to wipe data on my HTC One I accidentally clicked on every single option Ugggh! I'm a moron! Can anyone please let me know how I can flash the phone to get it working again? (The phone is unlocked & S-Off is that helps at all? ) I'm using the latest TWRP but I can't even seem to get to recovery any longer either
So much thanks to anyone that can help...I'll be happy to send a donation to whom ever can help me get my phone up and running again as well-
Scoob
Click to expand...
Click to collapse
Can you get to fastboot ?
^^^^^^what he said. Check to see if you can get into fastboot. Use the power button and volume option. Once there, see if you can select recovery. I'm not sure if twrp has an adb sideload option, but philz does. If not, mount system, adb push Rom.zip /sdcard/Rom.zip then unmount system. Back out so you can click on the install file on sdcard option and viola...
Sent from my Lunar Ecliptic One.
brymaster5000 said:
^^^^^^what he said. Check to see if you can get into fastboot. Use the power button and volume option. Once there, see if you can select recovery. I'm not sure if twrp has an adb sideload option, but philz does. If not, mount system, adb push Rom.zip /sdcard/Rom.zip then unmount system. Back out so you can click on the install file on sdcard option and viola...
Sent from my Lunar Ecliptic One.
Click to expand...
Click to collapse
Yes I should be able to get into Fastboot... Once there how do I go about pushing the Rom to the phone? I know how to mount the phone... just not sure how to push the file to the phone? Really appreciate the help
Scoob
scooby-snack said:
Yes I should be able to get into Fastboot... Once there how do I go about pushing the Rom to the phone? I know how to mount the phone... just not sure how to push the file to the phone? Really appreciate the help
Scoob
Click to expand...
Click to collapse
Use the ADB command he mentioned in his post.
Put your ROM file in the same folder as ADB
adb push your_rom_filename.zip /sdcard/
the push command's syntax is
adb push <source path / file> <destination path>
brymaster5000 said:
^^^^^^what he said. Check to see if you can get into fastboot. Use the power button and volume option. Once there, see if you can select recovery. I'm not sure if twrp has an adb sideload option, but philz does. If not, mount system, adb push Rom.zip /sdcard/Rom.zip then unmount system. Back out so you can click on the install file on sdcard option and viola...
Sent from my Lunar Ecliptic One.
Click to expand...
Click to collapse
TWRP does have sideload feature.. when i try to do the adb sideload command it just comes back saying cant read the file i'm attempting to load.
It also appears that S-Off is now "On"
Am I screwed now that S Off is showing On?
Scoob
scooby-snack said:
TWRP does have sideload feature.. when i try to do the adb sideload command it just comes back saying cant read the file i'm attempting to load.
It also appears that S-Off is now "On"
Am I screwed now that S Off is showing On?
Scoob
Click to expand...
Click to collapse
Maybe...what hboot version?
Sent from my Lunar Ecliptic One.
brymaster5000 said:
Maybe...what hboot version?
Sent from my Lunar Ecliptic One.
Click to expand...
Click to collapse
1.57 - Is that Bad>?
scooby-snack said:
1.57 - Is that Bad>?
Click to expand...
Click to collapse
Yes. S-on is bad at 1.57
I don't know what it restricts in your recovery, but you are not going to be able to do any of the easy fixes, like flashing an RUU, I believe it restricts you from flashing your recovery partition through fastboot also......not sure, since I never put my phone back to s-on. Maybe someone more pro than I can help. idk. S-off should stay s-off through pretty much anything I know of, minus sending a terminal command through adb/fastboot to set it to on.