Jump to content


Photo

House of Moto [4.3]


  • Please log in to reply
479 replies to this topic

#61 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 31 January 2015 - 07:10 AM

That is also an old recovery image. Try downloading

Please Login or Register to see this Hidden Content

 
 

Please Login or Register to see this Hidden Content

 

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


#62 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

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



#63 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 31 January 2015 - 07:22 AM

Then, as I said, I need to see the log.


Non potest esse nisi unus


#64 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

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



#65 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

Posted 31 January 2015 - 07:42 AM

And the flashme script, as well.


Non potest esse nisi unus


#66 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

Posted 31 January 2015 - 07:44 AM

I did not copy that one, I would need to run it again, correct?



#67 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

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


#68 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

Posted 31 January 2015 - 07:59 AM

this is what is in my moto folder

Attached Files


  • Dahor3six likes this

#69 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

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


#70 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

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

:no_supersu
    fastboot reboot
    echo Rebooting...
goto end

:end
   echo Thanks for using the House of Moto.
   pause
 



#71 arlissnd

arlissnd

    n00b

  • Members
  • Pip
  • 7 posts
  • Google+:Brandon Lealos
  • Current Device(s):xt 1053 xt 1031

Posted 31 January 2015 - 10:43 AM

Please Login or Register to see this Hidden Content

 

Please Login or Register to see this Hidden Content

  22.14KB   16 downloads

 

 

 

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?



#72 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

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


#73 arlissnd

arlissnd

    n00b

  • Members
  • Pip
  • 7 posts
  • Google+:Brandon Lealos
  • Current Device(s):xt 1053 xt 1031

Posted 31 January 2015 - 11:02 AM

I'm running it again now. Thanks for your work!

#74 arlissnd

arlissnd

    n00b

  • Members
  • Pip
  • 7 posts
  • Google+:Brandon Lealos
  • Current Device(s):xt 1053 xt 1031

Posted 31 January 2015 - 02:03 PM

I wasn't asked for a custom recovery this time either and hanging on "writing script". First line says" custom recovery not found " again. I can't figure what I'm doing wrong. I read all the directions quite a few times. Thanks for any advice

#75 johnthehillbilly

johnthehillbilly

    Gear jammin' S-Mod

  • Smod
  • 6,470 posts
  • Twitter:@johnhillbilly
  • Google+:http://goo.gl/ColUJ .. johnthehillbilly@gmail.com
  • LocationSomewhere between here, and there...
  • Current Device(s):unlocked RAZR HD (xt926)... RAZR (xt912)

Posted 31 January 2015 - 02:08 PM

When you say "hanging on writing script" ... Are you meaning that it doesn't generate the script... Or maybe it just doesn't close when its finished?...... Look in your moto folder to see if the flashme.bat has been created

Feeding my android addiction......... one phone at a time.....

jhf.png

If you are feeling generous and would like to buy me a drink.... coffee :)


#76 johnthehillbilly

johnthehillbilly

    Gear jammin' S-Mod

  • Smod
  • 6,470 posts
  • Twitter:@johnhillbilly
  • Google+:http://goo.gl/ColUJ .. johnthehillbilly@gmail.com
  • LocationSomewhere between here, and there...
  • Current Device(s):unlocked RAZR HD (xt926)... RAZR (xt912)

Posted 31 January 2015 - 02:11 PM

If its there, run it.... During the process it should ask you about flashing custom recovery
  • arlissnd likes this

Feeding my android addiction......... one phone at a time.....

jhf.png

If you are feeling generous and would like to buy me a drink.... coffee :)


#77 arlissnd

arlissnd

    n00b

  • Members
  • Pip
  • 7 posts
  • Google+:Brandon Lealos
  • Current Device(s):xt 1053 xt 1031

Posted 31 January 2015 - 02:35 PM

I'll try that now. I appreciate all the help.

#78 arlissnd

arlissnd

    n00b

  • Members
  • Pip
  • 7 posts
  • Google+:Brandon Lealos
  • Current Device(s):xt 1053 xt 1031

Posted 31 January 2015 - 02:49 PM

It's not generating script. Flash me.bat is not created.

#79 SamuriHL

SamuriHL

    Android Warrior

  • Smod
  • 43,453 posts
  • Current Device(s):S21 Ultra, Pixel 6

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.


  • arlissnd likes this

Non potest esse nisi unus


#80 srmason6

srmason6

    Member

  • Members
  • PipPip
  • 36 posts

Posted 31 January 2015 - 03:53 PM

Sam did you see anything wierd in my flashme




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users