[Q] problem with recovery and boot - HTC One X+

hi guys
i've unlocked my HTC ONE X + international!
but now i can't go further the HTC logo
i tried fastboot, flashing boot and recovering recover.img. but nothing go right.

Some questions:
Which rom did you try to flash?
What method did you use to flash it? (e.g. Hasoon's all in one tool/through recovery/sideload)
Did you make sure to flash your kernel (boot.omg) separately?
Did you perform a full wipe before flashing?
Can you enter the bootloader by holding volume-down while powering the phone on?
Can you use adb or fastboot to interact with the phone? e.g.
Code:
$ adb reboot bootloader
or
$ fastboot devices
Sent from my cellular telephone using xda premium

o_O said:
Some questions:
Which rom did you try to flash?
What method did you use to flash it? (e.g. Hasoon's all in one tool/through recovery/sideload)
Did you make sure to flash your kernel (boot.omg) separately?
Did you perform a full wipe before flashing?
Can you enter the bootloader by holding volume-down while powering the phone on?
Can you use adb or fastboot to interact with the phone? e.g.
Code:
$ adb reboot bootloader
or
$ fastboot devices
Sent from my cellular telephone using xda premium
Click to expand...
Click to collapse
after i unlocked the phone i've used fastboot to fastboot recovery.img
and that's all i did .
now i have low battery

Boot into bootloader by holding volume-down and restarting the phone (if you don't know how to do that, hold the power button until the capacitive lights flash).
Then, try flashing a recovery image. You can get twrp from the thread in the One X+ Original Android Development forum. I think you already have the platform tools (adb and fastboot).
The command to flash a recovery is:
Code:
$ fastboot flash recovery recovery.img
This is assuming your recovery filename is "recovery.img" and that it's in the same directory as your command prompt when you run the command.
Sent from my cellular telephone using xda premium

o_O said:
Boot into bootloader by holding volume-down and restarting the phone (if you don't know how to do that, hold the power button until the capacitive lights flash).
Then, try flashing a recovery image. You can get twrp from the thread in the One X+ Original Android Development forum. I think you already have the platform tools (adb and fastboot).
The command to flash a recovery is:
Code:
$ fastboot flash recovery recovery.img
This is assuming your recovery filename is "recovery.img" and that it's in the same directory as your command prompt when you run the command.
Sent from my cellular telephone using xda premium
Click to expand...
Click to collapse
thanks bro )))
but now it says there is no any zip file
is there any methods to "put custom rom inside" the phone???

tyomaus said:
thanks bro )))
but now it says there is no any zip file
is there any methods to "put custom rom inside" the phone???
Click to expand...
Click to collapse
If you've gotten the recovery installed, then you can sideload the rom onto the phone. I can give you instructions to do that with TWRP as your recovery. With your phone connected to your computer, enter the recovery from the bootloader. Choose the "Advanced" button, and then "ADB Sideload" and then swipe to start the sideload process.from your command line on your computer, you can now start the sideload process:
Code:
$ adb sideload name-of-rom-zip-file.zip
Obviously you would need to put the actual name of your rom's zip file and make sure your zip is in the correct directory to be picked up by the command. You should see the rom begin to upload to your phone, and when it's done, it will automatically flash.
I've found that sometimes sideload can take a little while to detect the phone but usually it detects it immediately. If it's taking a while, try running the following command and then do the sideload again; it might help:
Code:
$ adb kill-server
$ adb sideload name-of-rom-zip-file.zip
Don't forget that because we haven't gotten S-OFF for our device yet, we need to flash the kernel separately. Just open the rom zip file, and extract "boot.img". Then you need to enter the bootloader and flash that to your phone with this command:
Code:
$ fastboot flash boot boot.img
Hopefully that helps to sort your phone out.

thanks for help! )))
, MAN u r the best!!!! thanks a lot ! ))))

No problem! Glad to help.

o_O said:
No problem! Glad to help.
Click to expand...
Click to collapse
hi, i have one more problem (((
i've installed custom ROM, but only AOKP is working but not properly, after installing says there is no SD card ((
others stuck in loading screen.

This is because the default location of your SD card has changed from /data/media to /data/media/0. You can fix it by simply moving the contents of /data/media to /data/media/0.
Code:
$ adb remount
$ adb shell
# mv /data/media /data/0
# mkdir /data/media
# mv /data/0 /data/media/
Make sure you copy the commands exactly, including the slashes and that should have the contents of your SD card accessible again.

o_O said:
This is because the default location of your SD card has changed from /data/media to /data/media/0. You can fix it by simply moving the contents of /data/media to /data/media/0.
Code:
$ adb remount
$ adb shell
# mv /data/media /data/0
# mkdir /data/media
# mv /data/0 /data/media/
Make sure you copy the commands exactly, including the slashes and that should have the contents of your SD card accessible again.
Click to expand...
Click to collapse
thannks MAN, but it does not work (((
i tried to install OrDroid and it flies normally, however i'd like to use CM 10 4.2.2 which stuck in loading logo
maybe there is something i do wrong?!

tyomaus said:
thannks MAN, but it does not work (((
i tried to install OrDroid and it flies normally, however i'd like to use CM 10 4.2.2 which stuck in loading logo
maybe there is something i do wrong?!
Click to expand...
Click to collapse
every rom needs the correct boot.img/kernel to work. did you flash blade kernel for CM 10.1? did you wipe/factory reset your phone in recovery before you flashed CM 10?

Exactly what reaper90 said, the first thing you should check when you get a bootloop is the kernel.
A lot of other phones don't require you to flash the kernel separately, but those phones have S-OFF available to them. Since we're stuck with S-ON (for now), the boot partition is locked and can't be written to from the phone. So you have to flash the img containing the kernel + ramdisk separately. Also note that max has done three different versions of the BLADE kernel, so you need to ensure that you're grabbing the correct one.
Check max's post here: http://forum.xda-developers.com/showpost.php?p=34962464&postcount=1
Edit: Just another couple of things:
1. Like reaper90 said, doing a full wipe really helps when switching between roms. Usually you can get away without wiping if you're installing a new version of the SAME rom, but to be on the safe side I personally wipe everything when I flash a different rom.
2. If you're certain that you've done everything correctly, and it's still not working, try clearing your cache and dalvik cache from the recovery. Occasionally that can fix minor problems.

cool
reaper90 said:
every rom needs the correct boot.img/kernel to work. did you flash blade kernel for CM 10.1? did you wipe/factory reset your phone in recovery before you flashed CM 10?
Click to expand...
Click to collapse
thank you MAN!!! it's working! :good:

yourthebest
o_O said:
Exactly what reaper90 said, the first thing you should check when you get a bootloop is the kernel.
A lot of other phones don't require you to flash the kernel separately, but those phones have S-OFF available to them. Since we're stuck with S-ON (for now), the boot partition is locked and can't be written to from the phone. So you have to flash the img containing the kernel + ramdisk separately. Also note that max has done three different versions of the BLADE kernel, so you need to ensure that you're grabbing the correct one.
Check max's post here: http://forum.xda-developers.com/showpost.php?p=34962464&postcount=1
Edit: Just another couple of things:
1. Like reaper90 said, doing a full wipe really helps when switching between roms. Usually you can get away without wiping if you're installing a new version of the SAME rom, but to be on the safe side I personally wipe everything when I flash a different rom.
2. If you're certain that you've done everything correctly, and it's still not working, try clearing your cache and dalvik cache from the recovery. Occasionally that can fix minor problems.
Click to expand...
Click to collapse
nothing to say, just HUGE THANKS!!! )))

i have more questions, one of them is - how can i rollback stock ROM for my HOX+? i've bought it in UAE!
is it possible to install original ROM, if so where can i find one for my HOX+ ?
thanks in advance !

Sure, it's possible, and you have a couple of options depending on how "stock" you want to go.
If you just want to go back to a Sense rom, you can go to the One X+ Android Development forum and download any of the international roms from there. You would need to flash Elite kernel or hXORe kernel, which can also be found in that forum, and the process for flashing the rom and kernel is exactly the same as the AOKP/CM roms you already tried.
If you specifically need to get back to STOCK, then it's a little more complicated. You need to run a RUU (Rom Update Utility) for your device, which will put the original software back on your phone, but you need to remember to re-lock your bootloader before you run it, or it will fail. You can download the correct RUU for your device here (http://androidfiles.org/ruu/?developer=ENRC2B).
I would hazard a guess that you can find the right version by matching the radio version on your phone to the radio version on the RUU, along with your geographic location. You can find your phone's radio version by going to settings > about phone > baseband version. A quick explanation behind that logic is that a normal rom-flash won't touch your phone's radio, so you're likely to still have the same radio version that your phone shipped with.
WARNING, however, messing with your radio can brick your device so please please make sure you have the right one before you flash. I'm not sure which is the correct one for your device and the only RUUs I've ever flashed were way back in the early Windows Mobile days, so hopefully someone else here can give you better direction on that point.
Finally, if I were to give my opinion, you're better off taking a rom from the Android Development forum. I'm a die-hard AOSP fan, but I've flashed and played with the roms in there and our Sense devs have done a great job with the X+. The only reason I'd go back to stock is if I had to for warranty purposes.

tyomaus said:
i have more questions, one of them is - how can i rollback stock ROM for my HOX+? i've bought it in UAE!
is it possible to install original ROM, if so where can i find one for my HOX+ ?
thanks in advance !
Click to expand...
Click to collapse
As already said, I'd recommend installing a stock like custom rom, for example Android Revolution HD, it's very close to stock. You can find stock kernel/boot.img in the thread and if you want it as close to stock as possible you can just leave out all the tweaks options in aroma installer.

reaper90 & thank u BROS! )))

Related

[Q] Stuck in HTC startup screen while booting

Well, I have to ask for help right here because Goole/Yahoo/Wiki DIDN'T help. Although it's a bit long but please read it
Here's my problem:
At the last time that my phone is still being functional, I was playing the game "Contract Killer" and "Facebook", "Internet" were running in the background.
Suddenly, it shut off with showing "power off...(Sth like that). This is obviously a normal situation when the battery is out of power. I took it to charge as usual and went to sleep.
Next day, I waked up and tried to boot up my HTC EVO 3D...
First time: Stuck in the startup screen without playing the HTC opening sound track( The phone used to be in Silent Mode)
Second time: I pulled out the battery and put it back and boot again. Still stuck in the startup screen but this time it play the HTC opening sound track...
I've got a lot data in the internal memory and I've never BACKUP before.....
Is there anyway that can boot up my phone without losing the data???
Oh...my phone has never been rooted.
Anyone know the problem??? (
I dunno, kinda sounds like a Hard Reset/Factory Reset is in order. Did you take the battery out for a while and then try to reboot?
There's no way unless u can take to service provider an have them extract it
Sent from my PG86100 using XDA App
i had that kind of a problem once but i was on a CUSTOM ROM so i'm not sure it will work for you and I'M NOT SAYING this method is THE SAFEST.
so 1st thing i did was.. i panic'd... 2nd, i started googling and when all the signs pointed me to a boot up problem i opened the zipped rom, i extracted the boot.img, connected the phone to the pc in fastboot mode and flashed the boot image. after that it started with no problems, all my data was there. what do anyone else suggest? would it be okay to flash boot.img (stock one) on a stock rom?
I would suggest the following:
If rooted with custom recovery:
1. Pull out the battery
2. Replace the battery, and access recovery and do nandroid backup, you will only need the user data.
3. wipe, wipe, wipe
4. install the ROM you had and let it boot
5. reboot in to recovery and restore you DATA ONLY
If not rooted:
1. Install custom recovery
2. go to rooted instructions
IF this doesn't work you can get the .img files from the forums of the ROM you had or stock if that was what you had and only install the boot.img and system.img and try to see if you get the phone to boot with your data in there.
let me know if anything helps.
PS. There is a great risk that you won't be able to recovery your apps data but lets try and hope for the best.
This sounds like a battery, cable, or AC adapter problem to me. You can get a cheap replacement battery on eBay for a few bucks and see how that works out. Also try different wall pieces, micro USB cables, and power outlets.
If none of that has worked, then you more than likely have a corrupted boot image. You can mount the EMMC (internal flash storage) onto a Linux distribution (like Ubuntu or Fedora) via usb and copy your data to a safe place like a flash drive or HDD. Then do an RUU (there are tutorials on this in the development thread) to restore the phone to stock, then of course pull whatever is needed from the data you saved.
Now if absolutely none of this has worked at all, you have malfunctioning hardware. Your only option at this point is to go to a Sprint store to have your data transferred over to a new replacement phone.
Hope this helped mate.
Sent from a Shooter running Android 4.0.3 via XDA Premium.
megabiteg said:
I would suggest the following:
If rooted with custom recovery:
1. Pull out the battery
2. Replace the battery, and access recovery and do nandroid backup, you will only need the user data.
3. wipe, wipe, wipe
4. install the ROM you had and let it boot
5. reboot in to recovery and restore you DATA ONLY
If not rooted:
1. Install custom recovery
2. go to rooted instructions
IF this doesn't work you can get the .img files from the forums of the ROM you had or stock if that was what you had and only install the boot.img and system.img and try to see if you get the phone to boot with your data in there.
let me know if anything helps.
PS. There is a great risk that you won't be able to recovery your apps data but lets try and hope for the best.
Click to expand...
Click to collapse
First of all, thanks for helping~ I would like to know that will my data lose if install the custom recovery? Seems like a huge risk...
Besides, I am a little confused about using the .img to boot my phone.......
MikeyCriggz said:
This sounds like a battery, cable, or AC adapter problem to me. You can get a cheap replacement battery on eBay for a few bucks and see how that works out. Also try different wall pieces, micro USB cables, and power outlets.
If none of that has worked, then you more than likely have a corrupted boot image. You can mount the EMMC (internal flash storage) onto a Linux distribution (like Ubuntu or Fedora) via usb and copy your data to a safe place like a flash drive or HDD. Then do an RUU (there are tutorials on this in the development thread) to restore the phone to stock, then of course pull whatever is needed from the data you saved.
Hope this helped mate.
Sent from a Shooter running Android 4.0.3 via XDA Premium.
Click to expand...
Click to collapse
I was once using Nokia N900, and it is very easy to flash the rom meanwhile i can keep everything in the emmc remain unchanged! Since ANDROID is based on Linux, I am sure your way will be damn work! Any software or environment would i need to do these stuffs? Thx at all!!
:
All in all, I do care the messages in the phone only. That is what i really want.
Nokiawithandroid said:
All in all, I do care the messages in the phone only. That is what i really want.
Click to expand...
Click to collapse
Well if you can somehow get ADB access to your phone you can try to backup the following file:
/data/data/com.android.providers.telephony/databases/mmssms.db
This is there database that contains all your messages (SMS / MMS).
Flashing the boot.img file is easy, if you have the phone in fastboot (and it indicates the usb connection on the phone too) then you can just flash this way:
fastboot flash boot [location of boot.img]\boot.img
You will not loose any personal data, there that the partition affected by the boot.img is not the same as the one affected by /data. This also apply to the recovery section of the phone, in case you want to load a custom recovery:
fastboot flash recovery [location of recovery.img]\recovery.img
Hope this helps, if you need any more help let us know.
HELLO?
megabiteg said:
Well if you can somehow get ADB access to your phone you can try to backup the following file:
/data/data/com.android.providers.telephony/databases/mmssms.db
This is there database that contains all your messages (SMS / MMS).
Flashing the boot.img file is easy, if you have the phone in fastboot (and it indicates the usb connection on the phone too) then you can just flash this way:
fastboot flash boot [location of boot.img]\boot.img
You will not loose any personal data, there that the partition affected by the boot.img is not the same as the one affected by /data. This also apply to the recovery section of the phone, in case you want to load a custom recovery:
fastboot flash recovery [location of recovery.img]\recovery.img
Hope this helps, if you need any more help let us know.
Click to expand...
Click to collapse
How can i get to access my phone by ADB?
I am totally new for all these...
Nokiawithandroid said:
How can i get to access my phone by ADB?
I am totally new for all these...
Click to expand...
Click to collapse
This can get you acquainted with ADB
http://forum.xda-developers.com/showthread.php?t=1241935
Props to Droidzone for putting it all together.
If not rooted:
1. Install custom recovery
2. go to rooted instructions
IF this doesn't work you can get the .img files from the forums of the ROM you had or stock if that was what you had and only install the boot.img and system.img and try to see if you get the phone to boot with your data in there.
Can i do the above things while i can't get connect USB with my phone - -?
Nokiawithandroid said:
If not rooted:
1. Install custom recovery
2. go to rooted instructions
IF this doesn't work you can get the .img files from the forums of the ROM you had or stock if that was what you had and only install the boot.img and system.img and try to see if you get the phone to boot with your data in there.
Can i do the above things while i can't get connect USB with my phone - -?
Click to expand...
Click to collapse
If you remove the battery off your phone and then you reinsert it back, press PWR+Vol UP to access the bootloader.
While in the Bootloader access fastboot and ensure to have the USB connected. from there, you can run any fastboot command you need, like loading custom recoveries or anything else.
WOW! I am approaching the target. To be clear, fastboot command stands for using ADB access?
AND:"While in the Bootloader access fastboot and ensure to have the USB connected. from there, you can run any fastboot command you need, like loading custom recoveries or anything else." means my phone can connect the computer by using "press PWR+Vol UP to access the bootloader"??? The bloody bootoader??
I am sure i'm almost there!!!!! THANKSSWSSSS
Nokiawithandroid said:
WOW! I am approaching the target. To be clear, fastboot command stands for using ADB access?
AND:"While in the Bootloader access fastboot and ensure to have the USB connected. from there, you can run any fastboot command you need, like loading custom recoveries or anything else." means my phone can connect the computer by using "press PWR+Vol UP to access the bootloader"??? The bloody bootoader??
I am sure i'm almost there!!!!! THANKSSWSSSS
Click to expand...
Click to collapse
Fastboot is a different command center from it counterpart adb. From fastboot you use only commands related to the flashing img files and more.
Just use fastboot /? From the command prompt to see a quick help of all what fastboot can do for you, but the main thing you'll need from this command is the ability yo flash a new boot, and maybe system image to get your phone back up and running.
Sent from my PG86100 using Tapatalk
megabiteg said:
Fastboot is a different command center from it counterpart adb. From fastboot you use only commands related to the flashing img files and more.
Just use fastboot /? From the command prompt to see a quick help of all what fastboot can do for you, but the main thing you'll need from this command is the ability yo flash a new boot, and maybe system image to get your phone back up and running.
Sent from my PG86100 using Tapatalk
Click to expand...
Click to collapse
Oh..damn.....the voyage is lengthy
What equipment/environment do i need?
My target: 1)Back up the Message Database 2) Run this bloody phone.
Difficulties: 1)S-ON 2)command 3) environment 4) Flashing a new (boot?image?)
megabiteg said:
Fastboot is a different command center from it counterpart adb. From fastboot you use only commands related to the flashing img files and more.
Just use fastboot /? From the command prompt to see a quick help of all what fastboot can do for you, but the main thing you'll need from this command is the ability yo flash a new boot, and maybe system image to get your phone back up and running.
Sent from my PG86100 using Tapatalk
Click to expand...
Click to collapse
Any thread for that?

Need help getting RUU Stock back on phone.

(SOLVED)i downloaded the RUU from HTC Dev Site and i have no clue on ow to install it.
this is the guide it came with any ideas?
--Please follow below command to download the official android toolchain: (arm-eabi-4.6)
git clone https://android.googlesource.com/platform/prebuilt
NOTE: the tool ¡¥git¡¦ will need to be installed first; for example, on Ubuntu, the installation command would be: apt-get install git
--Modify the .bashrc to add the toolchain path, like bellowing example:
PATH=/usr/local/share/toolchain-eabi-4.6/bin:$PATH
--Start
$make ARCH=arm CROSS_COMPILE=$TOP/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi- ap37_android_defconfig
$make ARCH=arm CROSS_COMPILE=$TOP/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/bin/arm-eabi- -j12
$TOP is an absolute path to android JB code base
--Clean
$make clean
--Files path
> arch/arm/boot/zImage
> Please remember to update kernel modules also by the following commands before full function testing
adb remount
adb push ./drivers/scsi/scsi_wait_scan.ko system/lib/modules/
adb push ./drivers/net/wireless/bcmdhd_4334/bcmdhd.ko system/lib/modules/
adb push ./drivers/net/usb/raw_ip_net.ko system/lib/modules/
adb push ./drivers/usb/class/cdc-acm.ko system/lib/modules/
adb push ./drivers/usb/serial/baseband_usb_chr.ko system/lib/modules/
adb push ./crypto/tcrypt.ko system/lib/modules/
adb push ./arch/arm/mach-tegra/baseband-xmm-power2.ko system/lib/modules/
adb shell "chmod 0644 system/lib/modules/"
adb reboot
omg someone please help me i just want my phone back to the way it was when it was brand new, i tried getting the RUU but its in a TAR file and theres hundreds of files i don't understand why this is so complicated never have i been so confused on an android device..
Do you know how to use ADB command window?
Lucky Thirteen said:
Do you know how to use ADB command window?
Click to expand...
Click to collapse
Yes i do, i have Rooted a HTC Desire Z, HTC Desire C, Nexus 7, and Samsung Galaxy S3, i have never had such a problem like this ever been sitting on my pc for 2 days trying to figure out whats wrong.
I can help you if you tell me what is your problem.
Is your phone unlocked, rooted and custom recovery installed? Which recovery? I already now that you have an ENRC2B International version.
Lucky Thirteen said:
I can help you if you tell me what is your problem.
Is your phone unlocked, rooted and custom recovery installed? Which recovery? I already now that you have an ENRC2B International version.
Click to expand...
Click to collapse
thank you! it is unlocked, S-on, the whole phone has been wiped now, it all started yesterday morning when i wanted to stop the lag while playing games so i flashed the elite kernel big mistake as i had stock rom.. didn't know it would cause all this problems... so then i side loaded ARHD and it installed and everything but the phone says there is still no OS.. i forgot to flash the ARHD boot.img first being that i'm s-on, so i don't know if that screwed things up? any way i want to go back to Stock Rom im with Telus Android 4.1.1. i went to HTC Dev Site and got this only RUU for it
evitare-jb-3.1.10-262c6aa.tar but it's in the TAR format so i downloaded 7-zip to view the files and theres hundreds of files im so confused.
Are you telling me that your phone is a TELUS version?
In Bootloader under ***Unlocked***
Is it written EVITARE_UL?
Lucky Thirteen said:
Are you telling me that your phone is a TELUS version?
In Bootloader under ***Unlocked***
Is it written EVITARE_UL?
Click to expand...
Click to collapse
Yes..
Alright!
This is where you have made all wrong. AHRD is only available for the International version. On your phone you can only install any custom ROM tagged AT&T/TELUS.
Which Recovery you have? TWRP?
To fix your issue tell me which ROM you want and I will write you a guide on how to get out of this situation.
There is a Venom full tweaked and customized.
Elegancia Stock and full y modded.
Blackout Mongoose a good mix of stock and customization with an optimized kernel.
Lucky Thirteen said:
Alright!
This is where you have made all wrong. AHRD is only available for the International version. On your phone you can only install any custom ROM tagged AT&T/TELUS.
Which Recovery you have? TWRP?
To fix your issue tell me which ROM you want and I will write you a guide on how to get out of this situation.
There is a Venom full tweaked and customized.
Elegancia Stock and full y modded.
Blackout Mongoose a good mix of stock and customization with an optimized kernel.
Click to expand...
Click to collapse
really omg.. i thought at&t was america only and int. was for canada... i hear everyone is on this venom or viper rom, i just want something fast, with sense and wont lag games with the T3 chip, what
would you recommend?
You wanna try Venom ROM? No problem!
Give me 15 minutes to write you a guide to install this on your phone. For now download this Venom ROM HERE. Once done sideload this ROM to your phone.
Lucky Thirteen said:
You wanna try Venom ROM? No problem!
Give me 15 minutes to write you a guide to install this on your phone. For now download this Venom ROM HERE. Once done sideload this ROM to your phone.
Click to expand...
Click to collapse
cool thank you so much! im going crazy without my phone. gonna have lots of fun when i get my OUYA..
Lets do this!
Download the required boot.img for this ROM HERE
Move this file in your platform-tools folder
Press and hold the Shift key and right click on a empty space of that platform-tools folder and select Open Command Window Here
Reboot in bootlader and in the command window with your phone in FASTBOOT USB mode
Type>fastboot flash boot Venom_boot.img
(Success)
Type again>fastboot erase cache
(Success)
Unplug your USB cable
Hit one time Power
Select Recovery (Volume down)
Hit Power to Reboot in Recovery
Your phone should reboot in Recovery
(!! The following instruction are with TWRP Recovery installed !!)
Select Wipe menu, then select Factory reset (swipe), select System (swipe)
Go back to the Install menu and select it.
Locate sideload.zip and select it.
Swipe to confirm.
Probably Aroma installer will start, simply follow the on-screen instructions and complete the installation.
Confirm the Rebooting option.
Give your phone ~5-10 minutes to complete the installation.
Lets start with this, if something is not clear, don't hesitate to ask, I will stay online.
Lucky Thirteen said:
Lets do this!
Download the required boot.img for this ROM HERE
Move this file in your platform-tools folder
Press and hold the Shift key and right click on a empty space of that platform-tools folder and select Open Command Window Here
Reboot in bootlader and in the command window with your phone in FASTBOOT USB mode
Type>fastboot flash boot Venom_boot.img
(Success)
Type again>fastboot erase cache
(Success)
Unplug your USB cable
Hit one time Power
Select Recovery (Volume down)
Hit Power to Reboot in Recovery
Your phone should reboot in Recovery
(!! The following instruction are with TWRP Recovery installed !!)
Select Wipe menu, then select Factory reset (swipe), select System (swipe)
Go back to the Install menu and select it.
Locate sideload.zip and select it.
Swipe to confirm.
Probably Aroma installer will start, simply follow the on-screen instructions and complete the installation.
Confirm the Rebooting option.
Give your phone ~5-10 minutes to complete the installation.
Lets start with this, if something is not clear, don't hesitate to ask, I will stay online.
Click to expand...
Click to collapse
Finally! I can't thank you enough! after the fast boot flash image i pretty much knew how to do the rest i appreciate it! and now i know when it says AT&T its also ment for Telus Canada and Not Int.
Is your phone alive now?
If all is good now for you, can you edit the title of your thread and this tag to it : [SOLVED]Need help getting RUU Stock back on phone

Help!!! My Rezound got bricked!! :'(

Ok... This is my 4th android phone.. And I love this phone... And only had it for a week.... and just now got it bricked.... here's what happen... Today I tried to flash a sense 4.1 rom, but im so new at this, and I'm half way done, and I went in a rush because I was nervous, and I accidentally press "install and keep data" and that was my mistake. I factory reset it b4 so I tried to flash it... So I thought it wouldn't be a problem. So I waited till the phone finish flashing. And when I rebooted the phone.... Nothing happened, just stuck on the white screen.... vibrating and etc... And I tried to restore all my data in clockworkmod recovery like I never even tried flashed it.. and it kept saying "won't mount sd card" and I tried to clear my cache/dalvik-cache, and like it still wont fix the issue. I even tried to restore wat I backup b4 I tried to flash it... and It was gone!!! Even my windows 8 laptop won't even detect my resound nor my sd card(unless its on a different android). But How can I fix my Rezound?!? plzzzz How can I fix this soft bricked issue? pllzzzzzzz help!!!
Im assuming you already have adb installed
Download this file
http://www.mediafire.com/download/oa2sjlvrecx0wdn/recovery-ra-vigor-3.16-gnm.img.zip
Extract the recovery img
Put it in the adb folder
Load into fastboot
Open up the terminal
Put "cd" then hit space
Drag and drop the adb folder into the terminal window then hit enter
Now use this command to flash that recovery "fastboot flash recovery recovery.img" (without the quotation marks)
Now go into recovery Find "format data system cache ect."
Go to format all to ext3 once that is done hit return
Flash your prefered rom from the flash menu and all that
Once you are done return to the main menu and go to "developer menu"
Then reboot to bootloader
Now go into your rom that you downloaded on your pc and find the rom now open it and get the boot.img
Copy the boot.img file to your adb folder
Open up terminal again and this time use the command "fastboot flash boot boot.img" in terminal its going to say sending then writing usually takes a couple of seconds
now just go to the reboot option and your rom should work
Now remember that since you are s on you need to get the boot.img file from EVERY rom you install and flash it thru the terminal in order to get your rom working
xkjonathanxk said:
Im assuming you already have adb installed
Download this file
http://www.mediafire.com/download/oa2sjlvrecx0wdn/recovery-ra-vigor-3.16-gnm.img.zip
Extract the recovery img
Put it in the adb folder
Load into fastboot
Open up the terminal
Put "cd" then hit space
Drag and drop the adb folder into the terminal window then hit enter
Now use this command to flash that recovery "fastboot flash recovery recovery.img" (without the quotation marks)
Now go into recovery Find "format data system cache ect."
Go to format all to ext3 once that is done hit return
Flash your prefered rom from the flash menu and all that
Once you are done return to the main menu and go to "developer menu"
Then reboot to bootloader
Now go into your rom that you downloaded on your pc and find the rom now open it and get the boot.img
Copy the boot.img file to your adb folder
Open up terminal again and this time use the command "fastboot flash boot boot.img" in terminal its going to say sending then writing usually takes a couple of seconds
now just go to the reboot option and your rom should work
Now remember that since you are s on you need to get the boot.img file from EVERY rom you install and flash it thru the terminal in order to get your rom working
Click to expand...
Click to collapse
If you are S-ON, you are likely not bricked, it's almost impossible to completely brick when you are S-ON.
Why do people keep telling occasional flashers that are S-ON to do this?!?!? It is the hard way, also don't use Amon Ra, is it outdated and known to cause issues with current ROMs, use TWRP or CWM recovery!!! Also, verify your ROM is specifically for the HTC Rezound, check the Developer threads here and make sure it is stable and widely used unless you really know what you are doing.
Although xkjonathanxk is on the right track, he is making more complicated than it needs to be...
- Download the first link in the first post of this thread and place it on the root of your SD card: [Tool] - 3/24 - CleanWIPE 1.0 - Wipe 5 or 10x before ROM install! - 1heffer Edition! (CleanWIPE formats all the necessary partitions for you, and prepares the phone for a new ROM)
- Download TWRP or CWM Rececovery (one of the first two links in post 1) and extract the recovery*.img and place it in the adb folder that contains fastboot.
- Download a tested and verified ROM of choice and place it on the root of your SD card
- Now, reboot into fastboot, remove battery and hold down Power and Vol Dn, once the menu comes up select Fastboot and press power, connect phone to PC
- In ADB enter the command "fastboot devices", if it shows a device continue, if not report back please
- Now enter the command "fastboot boot recovery.img" and TWRP (or CWM) should open on the device in a few seconds (replace recovery.img with whatever the name of the xxxx.img file is from TWRP or CWM archive)
- Install the CleanWIPE zip from above
- Install ROM zip image
- Reboot and enjoy the goodness
Remember to give the ROM some time to settle down on the first boot, and that the first boot can take a long time, like a painfully wrong "WTF did I do to ruin my device!" long time, but give it a solid 10 minutes before doing anything else.
@acejavelin
acejavelin said:
If you are S-ON, you are likely not bricked, it's almost impossible to completely brick when you are S-ON.
Why do people keep telling occasional flashers that are S-ON to do this?!?!? It is the hard way, also don't use Amon Ra, is it outdated and known to cause issues with current ROMs, use TWRP or CWM recovery!!! Also, verify your ROM is specifically for the HTC Rezound, check the Developer threads here and make sure it is stable and widely used unless you really know what you are doing.
Although xkjonathanxk is on the right track, he is making more complicated than it needs to be...
- Download the first link in the first post of this thread and place it on the root of your SD card: [Tool] - 3/24 - CleanWIPE 1.0 - Wipe 5 or 10x before ROM install! - 1heffer Edition! (CleanWIPE formats all the necessary partitions for you, and prepares the phone for a new ROM)
- Download TWRP or CWM Rececovery (one of the first two links in post 1) and extract the recovery*.img and place it in the adb folder that contains fastboot.
- Download a tested and verified ROM of choice and place it on the root of your SD card
- Now, reboot into fastboot, remove battery and hold down Power and Vol Dn, once the menu comes up select Fastboot and press power, connect phone to PC
- In ADB enter the command "fastboot devices", if it shows a device continue, if not report back please
- Now enter the command "fastboot boot recovery.img" and TWRP (or CWM) should open on the device in a few seconds (replace recovery.img with whatever the name of the xxxx.img file is from TWRP or CWM archive)
- Install the CleanWIPE zip from above
- Install ROM zip image
- Reboot and enjoy the goodness
Remember to give the ROM some time to settle down on the first boot, and that the first boot can take a long time, like a painfully wrong "WTF did I do to ruin my device!" long time, but give it a solid 10 minutes before doing anything else.
Click to expand...
Click to collapse
I really appreciate your help and everything. So i thank you. But Like i said im running windows 8, it wont detect my rezound or my sd card, the only time the pc is able to detect the sd card is when im able to mount my sd card to CWM. But it really wont detect it.... help me again
Multidex24 said:
I really appreciate your help and everything. So i thank you. But Like i said im running windows 8, it wont detect my rezound or my sd card, the only time the pc is able to detect the sd card is when im able to mount my sd card to CWM. But it really wont detect it.... help me again
Click to expand...
Click to collapse
Ubuntu Live CD... Windows not required.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app
Dont know how to work ubuntu.. help again
acejavelin said:
Ubuntu Live CD... Windows not required.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app
Click to expand...
Click to collapse
lol its the good thing i know how to make a dual os between win8 and ubuntu, but heres another problem, i dont even know how to work ubuntu...
i think my pc can detect the rezound. But idek how to work ubuntu, plzzzz help!!
Multidex24 said:
lol its the good thing i know how to make a dual os between win8 and ubuntu, but heres another problem, i dont even know how to work ubuntu...
i think my pc can detect the rezound. But idek how to work ubuntu, plzzzz help!!
Click to expand...
Click to collapse
For the things you need to do, its not much different than Windows. Download and install adb, copy images to same places, and the commands are pretty much the same. If you can dualboot you obviously have some knowledge of such things.
If this is all do difficult, just grab a thumb drive, put mini-adb, recovery.img, and your ROM on it and go to a buddies computer with Win7 for 20 minutes and get it done that way.
I know this seems like a huge, potentially fatal problem, but it is minor...
Another thought I had... Download TWRP, go into CWM recovery and copy the TWRP file and ROM to the sd card, and FLASH TWRP recovery ZIP with CWM recovery, reboot into recovery and you will then be on TWRP and you can use TWRP's HTC Dumlock to flash the ROM and the boot.img without a PC at all... In theory, it should work.
Sent from my HTC Aria (Liberty) running CM 7.2 using xda app-developers app

[Q] Padfone X T00D, "Can't Load Invalid boot image" Solution?

Hello,
I just purchased this phone knowing that it has this problem and I am trying to fix it but I do not know much about the original firmware or anything except of the following:
SKU: 6233A, MFG: 2014/05/30, HW: R1.6
I need to restore the Firmware and preferably be able to use the Dock Station (reason I bought it).
I also like to use it with T-Mobile and do not know if these phones are locket to ATT or not.
I am not a developer but have good technical knowledge.
Any advice will be appreciated.
Thank you
Mike
MH928 said:
Hello,
I just purchased this phone knowing that it has this problem and I am trying to fix it but I do not know much about the original firmware or anything except of the following:
SKU: 6233A, MFG: 2014/05/30, HW: R1.6
I need to restore the Firmware and preferably be able to use the Dock Station (reason I bought it).
I also like to use it with T-Mobile and do not know if these phones are locket to ATT or not.
I am not a developer but have good technical knowledge.
Any advice will be appreciated.
Thank you
Mike
Click to expand...
Click to collapse
Hopefully you can enter in to fastboot mode.
Try to reflash this ATT_userdebug rom from TWRP recovery, and then restore this backup.
1. Turn on the fastboot mode(vol up + power), plug in the cable to PC, open CMD, Boot in to twrp(fastboot boot recoveryyouchoose.img) and use "adb push filename.zip /sdcard"
2. install .zip then reboot
3. boot up, then boot back to TWRP recovery, make a backup.
4. boot up, copy the downloaded backup, boot back to recovery
5. restore it.
hope it works
paleszgergo said:
Hopefully you can enter in to fastboot mode.
Try to reflash this ATT_userdebug rom from TWRP recovery, and then restore this backup.
1. Turn on the fastboot mode(vol up + power), plug in the cable to PC, open CMD, Boot in to twrp(fastboot boot recoveryyouchoose.img) and use "adb push filename.zip /sdcard"
2. install .zip then reboot
3. boot up, then boot back to TWRP recovery, make a backup.
4. boot up, copy the downloaded backup, boot back to recovery
5. restore it.
hope it works
Click to expand...
Click to collapse
The second link (to restore) redirects to another Thread but most of the links there do not work, can you send me a direct link to the file?
MH928 said:
The second link (to restore) redirects to another Thread but most of the links there do not work, can you send me a direct link to the file?
Click to expand...
Click to collapse
I think he meant these for the second link.
http://forum.xda-developers.com/showpost.php?p=60403709&postcount=34
Edit: you must use twrp to flash these backups after user debug.
Justatechie said:
I think he meant these for the second link.
http://forum.xda-developers.com/showpost.php?p=60403709&postcount=34
Edit: you must use twrp to flash these backups after user debug.
Click to expand...
Click to collapse
Yeah, thats what i mean!
Please help. the same problem. Invalid boot. TWRP recovery i have already. please help step by step...
(why invalid boot? i flashed new recovery from Quarx to a boot partition )
Sirocco.ukr.lviv said:
Please help. the same problem. Invalid boot. TWRP recovery i have already. please help step by step...
(why invalid boot? i flashed new recovery from Quarx to a boot partition )
Click to expand...
Click to collapse
Is your Bootloader unlocked?
Justatechie said:
Is your Bootloader unlocked?
Click to expand...
Click to collapse
Locked bootloader. Where i can see for sure?
When VolUp+Power i can see this window
I need adb driver.
TWRP that i have on this phone is old one ported from nexus device and it can't see SD card.
Sirocco.ukr.lviv said:
Locked bootloader. Where i can see for sure?
When VolUp+Power i can see this window
I need adb driver.
TWRP that i have on this phone is old one ported from nexus device and it can't see SD card.
Click to expand...
Click to collapse
To find out, you have to put your phone into fastboot.
To do that power down your phone, then hold volume up and power button at the same time. There, the asus logo will pop up like normal and hang on that screen to show that you are in fastboot mode.
Open up command prompt and verify your device is connected, by typing in fastboot devices.
If it shows up good then all you have to do is type in fastboot oem device-info.
If it says device unlocked: true that means your BL is unlocked.
If its not, you have to download crowlock from the cm12 thread and flash it.
It works better with cwm but since you are stuck its worth a shot to flash it under old twrp.
Then check the BL status again, if its good great.
You could restore your device from some backups posted or if you could find a boot.img from the stock image, you could use the new version of twrp to flash the boot image under image flashing.
This is the adb/fastboot driver I use http://forum.xda-developers.com/showthread.php?t=2588979
Justatechie you are only one who help. i appreciate it. god bless you!
i've done it. unlocked already. i watched bootloop so i wiped everything. what rom to install?
del
Nice to hear that.
Well it depends if you want to install one or you want to keep it stock.
For keeping it stock unfortunately you must restore from backups posted.
If its custom well Cm is a good way, just the dock does not work, but it will work hopefully soon when the developer receives it soon.
Justatechie said:
Nice to hear that.
Well it depends if you want to install one or you want to keep it stock.
For keeping it stock unfortunately you must restore from backups posted.
If its custom well Cm is a good way, just the dock does not work, but it will work hopefully soon when the developer receives it soon.
Click to expand...
Click to collapse
My asus padfone x T00D with full wipes identifies like T00N (padfone s) and reboots on first welcome screen on your rom...
please see video:
https://www.youtube.com/watch?v=aMB9Ctvrk0Q
Sirocco.ukr.lviv said:
My asus padfone x T00D with full wipes identifies like T00N (padfone s) and reboots on first welcome screen on your rom...
please see video:
https://www.youtube.com/watch?v=aMB9Ctvrk0Q
Click to expand...
Click to collapse
Dont worry about the asus_toon, it will turn back into padfone x when you are finally able to restore to the at&t factory rom
What is very strange,is that you cannot wipe certain things, I guess It may be due to a tampered bootloader. (something must have tripped it up)
My bootloader is unlocked but not tampered.
But the reason why it says ASUS_T00N is because you installed cm or miui and it changed build prop and the partitions. (all of quarx roms are built from the pfs source but work on the pfx too) its not a big deal don't worry.
Have you tried any other recoveries, perhaps the older version of twrp Here
Try booting them through fastboot using the fastboot boot filename.img (of the recovery file that should be located inside a folder containg fastboot/adb files)
See if they can wipe cache data(no media) and system. Remember, booting from fastboot is just temporary
Then try flashing a rom, doesnt matter what it has to be but it should work after its done. Maybe flash without gapps, it could sometimes cause a random problem and besides you can always install it later.
I never had to use fastboot to wipe cache either because well I could do that in recovery, plus its safer

How can I unpack or flash this ROM?

I'm using an Empire ElectroniX D709 tablet, running Android 4.0.4. It's an old low-spec device, and I'm planning to use this device to improve my Android hacking skills.
I've asked the manufacturers to send me the stock ROM, which they did. Pretty cool!
The problem is that there's no flashing tool or instructions included, and the staff I spoke with did not know how to flash it either.
So now I'm on my own, with a big image file I don't know how to flash.
I tried to start a development thread at the Miscelleaneous Android Development section, but because I have almost no posts, I can't post there. So maybe this is a good place to ask. How can I flash or unpack this image?
You can find the ROM here: http://www.needrom.com/download/empire-electronics-d709/
Exeleration-G said:
I'm using an Empire ElectroniX D709 tablet, running Android 4.0.4. It's an old low-spec device, and I'm planning to use this device to improve my Android hacking skills.
I've asked the manufacturers to send me the stock ROM, which they did. Pretty cool!
The problem is that there's no flashing tool or instructions included, and the staff I spoke with did not know how to flash it either.
So now I'm on my own, with a big image file I don't know how to flash.
I tried to start a development thread at the Miscelleaneous Android Development section, but because I have almost no posts, I can't post there. So maybe this is a good place to ask. How can I flash or unpack this image?
You can find the ROM here: http://www.needrom.com/download/empire-electronics-d709/
Click to expand...
Click to collapse
You have to manually flash them using fastboot. Look up how to get fastboot and move the image(s) to the folder were fastboot.exe is located. Boot into your bootloader either via adb reboot bootloader or by physically doing it from the device. Now here is where most people fail. At the end of the file name, before the .img, it should be either boot, fastboot, recovery or system. If it is system, then do fastboot flash system nameofthesystemimg.img and if it is boot, you get the idea.
Thank you. Fastboot is a good idea. Problem is that I don't know which partition this .img file belongs to. I have the feeling that this file contains every partition, yet I'm not sure how to split it up so that I can flash each partition.
Exeleration-G said:
Thank you. Fastboot is a good idea. Problem is that I don't know which partition this .img file belongs to. I have the feeling that this file contains every partition, yet I'm not sure how to split it up so that I can flash each partition.
Click to expand...
Click to collapse
Will you mind sharing the whole file name? If it is an all partition img you can do fastboot flash all (I think). Just type fastboot and see the all option in the help menu.
Sent using a ks01lte (gt-i9506) running cm 13
RAZERZDAHACKER said:
Will you mind sharing the whole file name? If it is an all partition img you can do fastboot flash all (I think). Just type fastboot and see the all option in the help menu.
Sent using a ks01lte (gt-i9506) running cm 13
Click to expand...
Click to collapse
The full file name is D709_n.img. Theres an option fastboot flashall indeed.
Right now, I'm trying to get the device into fastboot, without success. Things I've tried until now:
Code:
adb reboot-bootloader
adb reboot bootloader
adb reboot fastboot
Every time, the device restarts and just enters the normal mode. I can get into stock recovery, but there's no option to restart to bootloader there.
Exeleration-G said:
The full file name is D709_n.img. Theres an option fastboot flashall indeed.
Right now, I'm trying to get the device into fastboot, without success. Things I've tried until now:
Code:
adb reboot-bootloader
adb reboot bootloader
adb reboot fastboot
Every time, the device restarts and just enters the normal mode. I can get into stock recovery, but there's no option to restart to bootloader there.
Click to expand...
Click to collapse
Hmmm, if you type adb devices, do you see your device there? If not, search online for drivers. If that does not work, google your device and how to get it to fastboot.
RAZERZDAHACKER said:
Hmmm, if you type adb devices, do you see your device there? If not, search online for drivers. If that does not work, google your device and how to get it to fastboot.
Click to expand...
Click to collapse
Yes, it's fully recognized, and I can adb in it just fine. I also get an adb prompt in recovery mode that lets me control the device. The only problem right now is getting this thing to fastboot.
Update
After googling its model number (crane-evb), I found out that this device can be flashed using LiveSuite (described here). It's nice to see the device back in its factory condition. Now I need to find a way to extract the partitions.
[QRCODE][/QRCODE]
Exeleration-G said:
Update
After googling its model number (crane-evb), I found out that this device can be flashed using LiveSuite (described here). It's nice to see the device back in its factory condition. Now I need to find a way to extract the partitions.
Click to expand...
Click to collapse
YaY! I was going to say that in stock recovery there is this option called update via adb or something but now that it is working, there is no need for that.

Categories

Resources