Buenas compañeros, despues de haberme pegado todo el dia calentandome la cabeza mirando de un lado para otro con el brickeo del móvil que no me dejaba instalar ninguna rom ni por fastboot ni twrp ni cwm.
En miFlash me tiraba error remote: partition table doesn't exist
He encontrado la solucion!
Hemos de realizar los siguientes pasos, de acorde con este tutorial de @
aurelianobue
http://www.htcmania.com/showthread.php?t=921047
Descargamos una ROM que se pueda flashear por FastBoot, en este caso yo he elegido esta:
http://en.miui.com/thread-242153-1-1.html
la 7.1.2 estable que me ha recomendado un compañero.
La descomprimimos en una carpeta, preferiblemente elegimos el disco duro local C
Cuando lo tengamos todo listo, editamos el archivo
flash_all.bat
añadiendo
la siguiente linea:
Código:
fastboot %* flash partition "%~dp0images\gpt_both0.bin" || @echo "Flash partition" && exit /B 1
de tal forma que quede asi:
Código:
fastboot %* getvar product 2>&1 | findstr /r /c:"^product: *MSM8974" || echo Missmatching image and device
fastboot %* getvar product 2>&1 | findstr /r /c:"^product: *MSM8974" || exit /B 1
fastboot %* flash partition "%~dp0images\gpt_both0.bin" || @echo "Flash partition" && exit /B 1
fastboot %* getvar board_version 2>&1 | findstr /r /c:"^board_version: *4.4" && echo Missmatching board version
fastboot %* getvar board_version 2>&1 | findstr /r /c:"^board_version: *4.4" && exit /B 1
fastboot %* getvar board_version 2>&1 | findstr /r /c:"^board_version: *5.[0-9]" && echo Missmatching board version
fastboot %* getvar board_version 2>&1 | findstr /r /c:"^board_version: *5.[0-9]" && exit /B 1
fastboot %* flash tz %~dp0images\tz.mbn
fastboot %* flash dbi %~dp0images\sdi.mbn
fastboot %* flash sbl1 %~dp0images\sbl1.mbn
fastboot %* flash rpm %~dp0images\rpm.mbn
fastboot %* flash aboot %~dp0images\emmc_appsboot.mbn
fastboot %* erase boot
fastboot %* erase DDR
fastboot %* flash misc %~dp0images\misc.img
fastboot %* flash modem+modem1 %~dp0images\NON-HLOS.bin
fastboot %* flash system+system1 %~dp0images\system.img
fastboot %* flash cache %~dp0images\cache.img
fastboot %* flash userdata %~dp0images\userdata.img
fastboot %* flash recovery %~dp0images\recovery.img
fastboot %* flash boot+boot1 %~dp0images\boot.img
fastboot %* reboot
Guardamos, nos vamos al MiFlash, flasheamos y... NO APARECERA MÁS EL ERROR! ya podremos flashear sin que salga el error y recuperar el movil de un brickeo! o fallo!
Creditos: rauldlnx10 de MIUIes
Un abrazo compis!
