That is also an old recovery image. Try downloading
That one would need to be renamed. Just add recovery to the filename. But again, the script has to be regenerated.
Posted 31 January 2015 - 07:10 AM
That is also an old recovery image. Try downloading
That one would need to be renamed. Just add recovery to the filename. But again, the script has to be regenerated.
Non potest esse nisi unus
Posted 31 January 2015 - 07:18 AM
OK...I got it...I downgraded...rooted with towelroot...flashed twrp with Flashify...and all is good. Sam, I did put the recovery image in the folder, before i ran the java script and genereated the image file
Posted 31 January 2015 - 07:22 AM
Then, as I said, I need to see the log.
Non potest esse nisi unus
Posted 31 January 2015 - 07:26 AM
Recovery: recovery.img
Using factory image: VZW_XT926_4.4.2-KDA20.62-10.1_CFC_1FF.xml.zip
Extracting: boot.img
...CRC32 checksum: 2090442256
Extracting: emmc_appsboot.mbn
...CRC32 checksum: 3584581576
Extracting: fsg.mbn
...CRC32 checksum: 808421298
Extracting: gpt.bin
...CRC32 checksum: 4130218302
Extracting: logo.bin
...CRC32 checksum: 1314072075
Extracting: NON-HLOS.bin
...CRC32 checksum: 4231227442
Extracting: recovery.img
...CRC32 checksum: 1116715545
Extracting: rpm.mbn
...CRC32 checksum: 3008879306
Extracting: sbl1.mbn
...CRC32 checksum: 1068278264
Extracting: sbl2.mbn
...CRC32 checksum: 3916445809
Extracting: sbl3.mbn
...CRC32 checksum: 1351026829
Extracting: system.img
...CRC32 checksum: 3879979695
Extracting: tz.mbn
...CRC32 checksum: 2108986984
Extracting: VZW_XT926_4.4.2-KDA20.62-10.1_CFC_1FF.xml
...CRC32 checksum: 3253678182
Found VZW_XT926_4.4.2-KDA20.62-10.1_CFC_1FF.xml
Writing script: C:\HouseOfMoto\MOTO\flashme.bat
Posted 31 January 2015 - 07:42 AM
And the flashme script, as well.
Non potest esse nisi unus
Posted 31 January 2015 - 07:44 AM
I did not copy that one, I would need to run it again, correct?
Posted 31 January 2015 - 07:46 AM
It should still be in the MOTO folder. Just open it with notepad and copy the contents.
Non potest esse nisi unus
Posted 31 January 2015 - 07:59 AM
this is what is in my moto folder
Posted 31 January 2015 - 08:06 AM
Right, and? I said show me the flashme script. It's sitting right there in that list of files.
Non potest esse nisi unus
Posted 31 January 2015 - 08:37 AM
Please excuse my stupidity, i didnt realize i needd to to be in notepd to open it
@echo off
::Generated script from the House of Moto 4.1.
::Generated from: VZW_XT926_4.4.2-KDA20.62-10.1_CFC_1FF.xml.zip
PATH=C:\HouseOfMoto\TOOLS\Windows;%PATH%
:ask_gpt
set choice=
set /p choice=Flash GPT partition? [y/n]:
if "%choice%"=="y" goto flash_gpt
if "%choice%"=="Y" goto flash_gpt
if "%choice%"=="n" goto end_gpt
if "%choice%"=="N" goto end_gpt
goto ask_gpt
:flash_gpt
fastboot flash partition gpt.bin
goto end_gpt
:end_gpt
fastboot flash sbl1 sbl1.mbn
fastboot flash sbl2 sbl2.mbn
fastboot flash sbl3 sbl3.mbn
fastboot flash rpm rpm.mbn
:ask_tz
set choice=
set /p choice=Flash TZ partition? [y/n]:
if "%choice%"=="y" goto flash_tz
if "%choice%"=="Y" goto flash_tz
if "%choice%"=="n" goto end_tz
if "%choice%"=="N" goto end_tz
goto ask_tz
:flash_tz
fastboot flash tz tz.mbn
goto end_tz
:end_tz
fastboot flash aboot emmc_appsboot.mbn
fastboot flash modem NON-HLOS.bin
fastboot flash fsg fsg.mbn
fastboot erase modemst1
fastboot erase modemst2
fastboot flash logo logo.bin
fastboot flash boot boot.img
:ask_recovery
set choice=
set /p choice=Flash custom recovery? [y/n]:
if "%choice%"=="y" goto flash_custom_recovery
if "%choice%"=="Y" goto flash_custom_recovery
if "%choice%"=="n" goto flash_stock_recovery
if "%choice%"=="N" goto flash_stock_recovery
goto ask_recovery
:flash_custom_recovery
fastboot flash recovery C:\HouseOfMoto\RECOVERY\recovery.img
goto end_recovery
:flash_stock_recovery
fastboot flash recovery recovery.img
goto end_recovery
:end_recovery
fastboot flash system system.img
fastboot erase tombstones
fastboot erase cache
echo WARNING: Choosing yes to this option will WIPE YOUR DATA.
:ask_erase
set choice=
set /p choice=Erase userdata partition? [y/n]:
if "%choice%"=="y" goto flash_userdata
if "%choice%"=="Y" goto flash_userdata
if "%choice%"=="n" goto end_userdata
if "%choice%"=="N" goto end_userdata
goto ask_userdata
:flash_userdata
fastboot erase userdata
goto end_userdata
:end_userdata
::SuperSU installation
:ask_supersu
set choice=
set /p choice=Install SuperSU? [y/n]:
if "%choice%"=="y" goto flash_supersu
if "%choice%"=="Y" goto flash_supersu
if "%choice%"=="n" goto no_supersu
if "%choice%"=="N" goto no_supersu
goto ask_supersu
:flash_supersu
fastboot boot C:\HouseOfMoto\RECOVERY\recovery.img
ping -n 5 127.0.0.1 >nul
echo.
echo o) Select Reboot
echo o) Select System
echo o) Swipe to install SuperSU
echo.
echo After the system reboots, install SuperSU from the play store.
echo.
goto end
_supersu
fastboot reboot
echo Rebooting...
goto end
:end
echo Thanks for using the House of Moto.
pause
Posted 31 January 2015 - 10:43 AM
I've tried this twice but i'm getting stuck at writing script for over half an hour both times. Should I just keep waiting?
Posted 31 January 2015 - 11:00 AM
That's great, but, when you ran it the first time and showed the output you were never asked for custom recovery. Run it again.
Non potest esse nisi unus
Posted 31 January 2015 - 11:02 AM
Posted 31 January 2015 - 02:03 PM
Posted 31 January 2015 - 02:08 PM
Feeding my android addiction......... one phone at a time.....
If you are feeling generous and would like to buy me a drink.... coffee
Posted 31 January 2015 - 02:35 PM
Posted 31 January 2015 - 02:49 PM
Posted 31 January 2015 - 03:43 PM
Reinstall it all from scratch. I've seen it hang before and have no idea what causes it. Usually a fresh install will cure it. If not, you may want to look at your java runtime.
Non potest esse nisi unus
Posted 31 January 2015 - 03:53 PM
0 members, 3 guests, 0 anonymous users