• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root [TOOL] Warp 4G CWM Flasher

Same thing..

It would be great if you could try out the iso tool. It must work based on the number of downloads and lack of complaints, but still no feedback.

edit: I will mess with the existing linux install more once i know if the iso works.
 
has anyone tried actually flashing the flashable?

Yep I just tried it and no go it will not flash it to my phone, by just putting it on the sd card only and flashing it.

Is there no way of getting this as a flash able? It is so much easier to just added it to your sd card and install it.
 
Yep I just tried it and no go it will not flash it to my phone, by just putting it on the sd card only and flashing it.

Is there no way of getting this as a flash able? It is so much easier to just added it to your sd card and install it.

The flashable CWM does work, but it will only flash from cwm recovery...not stock recovery. The only way to get it to flash in stock recovery is if we had ZTE's private keys to sign the zip. We don't have those lol
 
The flashable CWM does work, but it will only flash from cwm recovery...not stock recovery. The only way to get it to flash in stock recovery is if we had ZTE's private keys to sign the zip. We don't have those lol

Oh OK I was wondering why we didn't have it that way. Anyway I tried the other way of installing it and says it did but then when I went to go in CWM all I got was the stock recovery. I just tried it again and I did make a back up but I am trying now to get back into to CWM to make sure it's there still. I will post in a few I have it still.

Thanks for the info above.
 
Are you using the bootable ISO from the OP? If so, does your device boot into cwm after you start the script?

No I put it on my flash drive and loaded it from there. When it was done it showed CWM on my phone screen and when it rebooted it, I tried to go back to CWM and it went back to stock recovery.
 
No I put it on my flash drive and loaded it from there. When it was done it showed CWM on my phone screen and when it rebooted it, I tried to go back to CWM and it went back to stock recovery.

If you are willing to help me troubleshoot I am sure we can get it working. Put the flashable cwm on your sdcard just in case. Boot to your usb drive again, plug in your device, and click on the black icon in the bottom left to open a terminal. Type the following:
Code:
adb reboot bootloader
fastboot boot warplte_cwm.img
At this point your device will boot to cwm, but it is not installed. The script got you this far before. If you just want to get cwm installed and be finished, you can flash the flashable cwm from your sdcard now. If you want to help me troubleshoot the installer and figure out why it didn't work for you let me know :)
 
If you are willing to help me troubleshoot I am sure we can get it working. Put the flashable cwm on your sdcard just in case. Boot to your usb drive again, plug in your device, and click on the black icon in the bottom left to open a terminal. Type the following:
Code:
adb reboot bootloader
fastboot boot warplte_cwm.img
At this point your device will boot to cwm, but it is not installed. The script got you this far before. If you just want to get cwm installed and be finished, you can flash the flashable cwm from your sdcard now. If you want to help me troubleshoot the installer and figure out why it didn't work for you let me know :)

OK I got it now, Thanks for the help.

I think I know what I did wrong. I didn't go into CWM and flash install it. I thought it was installed and just rebooted my phone.

Again Thanks for the help BIG time.
 
OK I got it now, Thanks for the help.

I think I know what I did wrong. I didn't go into CWM and flash install it. I thought it was installed and just rebooted my phone.

Again Thanks for the help BIG time.

You are not supposed to have to flash it manually. That's what I meant about helping me troubleshoot why it didn't work for you. The script should install cwm, not just boot to it.
 
You are not supposed to have to flash it manually. That's what I meant about helping me troubleshoot why it didn't work for you. The script should install cwm, not just boot to it.

Oh OK, I can help you trouble shoot later today if you wanna? We're getting ready to walk out the door to go the movies right now. But I will be back later.
 
hey superr, what script are you using to do it? pastebin it for me or something ill see if theres any issues that could cause that
 
hey superr, what script are you using to do it? pastebin it for me or something ill see if theres any issues that could cause that

This is a summary of what it's doing
Code:
adb reboot bootloader
fastboot boot warplte_cwm.img
adb push warplte_cwm.img /cache/cwm.img
adb shell "dd if=/cache/cwm.img  of=/dev/block/mmcblk0p16"
adb shell "rm /cache/cwm.img"
adb reboot recovery
 
Code:
adb reboot bootloader
fastboot boot warplte_cwm.img

adb wait-for-device

adb push warplte_cwm.img /cache/cwm.img
adb shell "dd if=/cache/cwm.img  of=/dev/block/mmcblk0p16"
adb shell "rm /cache/cwm.img"
adb reboot recovery

in the form you stated it would try to push before cwm booted, causing a domino effect
 
might even want to put a few seconds pause in there to be sure its loaded up and ready to accept the files, if you push before cache mounts it just gets lost in the ram
 
fastboot inherently waits for a device to connect, adb doesnt, it will instead just fail, so chances are everything after the fastboot command will have failed before cwm even loads without telling it to wait for a connection to proceed. that is why it boots up fine but doesnt install or reboot
 
Back
Top Bottom