Ver Mensaje Individual
  #5  
Viejo 06/02/15, 17:58:15
Avatar de LEPT
LEPT LEPT no está en línea
Usuario muy activo
Mensajes: 4,574
Compra y venta: (1)
 
Fecha de registro: abr 2012
Localización: Ahí-donde-eso
Mensajes: 4,574
Modelo de smartphone: Xiaomi Mi A2
Versión de ROM: La última Oficial
Tu operador: Movistar
Mencionado: 120 comentarios
Tagged: 1 hilos
Cita:
Originalmente Escrito por engelsoto Ver Mensaje
de antemano bro gracias por t ayuda

Sale

CID: 0x000C

si libere el boot loader la version del bootloader es 41.18 cuando le intento poner kitkat

sale

....

Ok, tu cid es 12, luego debes ponerte una ROM con dicho cid, pues en los '4G' eso es determinante para el tema de su conectividad.

Por otro lado, 'no existe' todavía Lollipop para tu modelo de móvil, luego lo que has hecho es tratar de ponerle la ROM de otro modelo... a saber de cual. De momento has subido el bootloader a 41.18, lo cual te va a dar bastantes quebraderos de cabeza... pero a ver si logramos hacerlo funcionar medianamente bien.

La única STOCK ROM con cid 12 para el XT1045, con 4.4.4, es esta:
XT1045_AMX-PE-SS_4.4.4_KXB21.14-L1.54_cid12_CFC_1FF.xml.zip

Así que yo de ti, me la descargaría y trataría de flashearla.

Punto a tener en cuenta para flashearla:
* Como has actualizado el bootloader, deberás ignorar el fichero del bootloader del 4.4.4, ya que no se le puede hacer downgrade. El resto de ficheros los podrás flashear.
* Usa para flashear el 'mfastboot.exe' en lugar del 'fastboot.exe.

Para saber la secuencia correcta de flasheo de esa ROM, una vez que te la descargues (será lento, pero no queda otra) y la descomprimas en la carpeta de trabajo en donde tengas además el mfastboot.exe, AdbWinApi.dll, AdbWinUsbApi.dll, buscarás el fichero XML que tuviera esa ROM.

Por ej, extraemos el pedazo importante de un XML de una ROM parecida a la tuya:
Código:
<steps interface="AP">
<step operation="getvar" var="max-sparse-size"/>
<step operation="oem" var="fb_mode_set"/>
<step MD5="c656f74e9666ea988d75ca4847bda443" filename="gpt.bin" operation="flash" partition="partition"/>
<step MD5="10f89c00e21cb851cca3209aa27735cb" filename="motoboot.img" operation="flash" partition="motoboot"/>
<step MD5="430c86260d74d74baaba53c57ad80f18" filename="logo.bin" operation="flash" partition="logo"/>
<step MD5="bbb146a9efb61ca91e33bf691126773c" filename="boot.img" operation="flash" partition="boot"/>
<step MD5="ff9b0a3bc4484c60a1d98e05034cbf73" filename="recovery.img" operation="flash" partition="recovery"/>
<step MD5="e857dba9785009a1135f7b1c111dc649" filename="system.img_sparsechunk.0" operation="flash" partition="system"/>
<step MD5="d0936fee0846a1a7b599e2b2273358ec" filename="system.img_sparsechunk.1" operation="flash" partition="system"/>
<step MD5="57ff5e6f64c3c295fe009a03ca55b477" filename="system.img_sparsechunk.2" operation="flash" partition="system"/>
<step MD5="88af2c1b0b43346508cbb17b6a819d0a" filename="system.img_sparsechunk.3" operation="flash" partition="system"/>
<step MD5="60e835888ec7cbc5d6014a6dabfff606" filename="NON-HLOS.bin" operation="flash" partition="modem"/>
<step operation="erase" partition="modemst1"/>
<step operation="erase" partition="modemst2"/>
<step MD5="1706b3415196a8a2d6d96ea1eb45b246" filename="fsg.mbn" operation="flash" partition="fsg"/>
<step operation="erase" partition="cache"/>
<step operation="erase" partition="userdata"/>
<step operation="oem" var="fb_mode_clear"/>
</steps>
Limpiamos un poco:
Código:
filename="gpt.bin" operation="flash" partition="partition"/>
filename="motoboot.img" operation="flash" partition="motoboot"/>  <--- ESTE LO BORRAMOS PUES NO HAY QUE FLASHEARLO
filename="logo.bin" operation="flash" partition="logo"/>
filename="boot.img" operation="flash" partition="boot"/>
filename="recovery.img" operation="flash" partition="recovery"/>
filename="system.img_sparsechunk.0" operation="flash" partition="system"/>
filename="system.img_sparsechunk.1" operation="flash" partition="system"/>
filename="system.img_sparsechunk.2" operation="flash" partition="system"/>
filename="system.img_sparsechunk.3" operation="flash" partition="system"/>
filename="NON-HLOS.bin" operation="flash" partition="modem"/>
operation="erase" partition="modemst1"/>
operation="erase" partition="modemst2"/>
filename="fsg.mbn" operation="flash" partition="fsg"/>
operation="erase" partition="cache"/>
operation="erase" partition="userdata"/>
Ya tenemos los ficheros, la operacion para cada uno de ellos y la partición que le corresponde, además del orden. Terminamos de limpiar, y le damos formato:
Código:
mfastboot [operacion] [particion] [fichero]
Código:
mfastboot flash partition gpt.bin
mfastboot flash logo logo.bin
mfastboot flash boot boot.img
mfastboot flash recovery recovery.img
mfastboot flash system system.img_sparsechunk.0
mfastboot flash system system.img_sparsechunk.1
mfastboot flash system system.img_sparsechunk.2
mfastboot flash system system.img_sparsechunk.3
mfastboot flash modem NON-HLOS.bin
mfastboot erase modemst1
mfastboot erase modemst2
mfastboot flash fsg fsg.mbn
mfastboot erase cache
mfastboot erase userdata
Ya tenemos los comandos necesarios para flashear nuestra ROM. Podemos añadir 2 ó 3 comandos más para pulir el proceso en el caso que estemos cambiando entre GPe y STOCK, o si modificamos el Bootloader, y nos quedaría finalmente:
[PHP]
mfastboot flash partition gpt.bin
mfastboot reboot-bootloader
pause
mfastboot flash logo logo.bin
mfastboot flash boot boot.img
mfastboot flash recovery recovery.img
mfastboot flash system system.img_sparsechunk.0
mfastboot flash system system.img_sparsechunk.1
mfastboot flash system system.img_sparsechunk.2
mfastboot flash system system.img_sparsechunk.3
mfastboot flash modem NON-HLOS.bin
mfastboot erase modemst1
mfastboot erase modemst2
mfastboot flash fsg fsg.mbn
mfastboot erase cache
mfastboot erase userdata
mfastboot reboot
[/PHP]

Si te diese algún fallo en la ventana de comandos, copia todo lo que te salió y pégalo aquí para ver que pasó.
Responder Con Cita