RESOLVIDO**
Deixe o celular acabar a bateria totalmente, depois coloque para carregar o celular e coloque em um txt esses código abaixo com a extensão .bat só rodar o celular vai funcionar novamente...
@echo off
cd tools
:try
call :check_status
if "%status%"=="FASTBOOT-ONLINE" goto :start_recovery
if "%status%"=="ADB-ONLINE" (
echo Restartando em bootloader.
adb reboot bootloader
) else (
echo Esperando conexao...
)
ping -n 3 127.0.0.1 >nul
goto :try
:start_recovery
echo Iniciando o flash...
fastboot flash splashscreen splashscreen_551.img
fastboot flash token bom-token_ze551ml_4_21_40_134.bin
fastboot flash dnx dnx_ze551ml_4_21_40_134.bin
fastboot flash ifwi ifwi_ze551ml_4_21_40_134.bin
fastboot flash fastboot droidboot_4_21_40_134.img
fastboot reboot-bootloader
sleep 4
:try_2
call :check_status
if "%status%"=="FASTBOOT-ONLINE" goto :flash_recovery
if "%status%"=="ADB-ONLINE" (
echo Restartando em bootloader.
adb reboot bootloader
) else (
echo Esperando conexao...
)
ping -n 3 127.0.0.1 >nul
goto :try_2
:flash_recovery
fastboot flash recovery TWRP-3.0.3-M4-Z00A.img
echo Pronto.
echo.
pause
GOTO:EOF
:check_status
set tmp=""
set adbchk="List of devices attached"
set adbchk2="unknown"
set fbchk=""
set deviceinfo=UNKNOWN
:CHECK_ADB
set tmp=""
for /f "tokens=1-4" %%a in ( 'adb devices ^2^> nul' ) do (set tmp="%%a %%b %%c %%d")
if /i %tmp% == %adbchk% ( goto CHECK_FB )
if /i not %tmp% == %adbchk% ( goto CHECK_AUTHORIZATION )
set tmp=""
GOTO:EOF
:CHECK_FB
set tmp=""
for /f "tokens=1-2" %%a in ( 'fastboot devices ^2^> nul' ) do (set tmp="%%a %%b")
if /i %tmp% == %fbchk% (set status=UNKNOWN)
if /i not %tmp% == %fbchk% (set status=FASTBOOT-ONLINE&for /f "tokens=1-2" %%a in ('fastboot devices ^2^> nul' ) do ( set deviceinfo=%%a %%b))
set tmp=""
GOTO:EOF
:CHECK_AUTHORIZATION
set tmp=""
for /f "tokens=1" %%a in ( 'adb get-serialno ^2^> nul' ) do (set tmp="%%a")
if /i %tmp% == %adbchk2% ( set status=UNAUTHORIZED&for /f "tokens=1-2" %%a in ('adb devices ^2^> nul' ) do ( set deviceinfo=%%a %%b ))
if /i not %tmp% == %adbchk2% ( set status=ADB-ONLINE&for /f "tokens=1-2" %%a in ('adb devices ^2^> nul' ) do ( set deviceinfo=%%a %%b ))
set tmp=""
GOTO:EOF
:EOF
Conteúdo editorial recomendado
Com o seu consentimento, o conteúdo externo é carregado aqui.
Ao clicar no botão acima, concorda que o conteúdo externo poderá ser-lhe exibido. Os dados pessoais podem ser transmitidos a fornecedores terceiros no processo. Pode encontrar mais informações sobre isto no nosso Política de Privacidade.