![]() |
|
| ROMs y desarrollo Xiaomi MI3 ROMs y desarrollo Xiaomi MI3 |
«
Tema Anterior
|
Siguiente tema
»
|
|
Herramientas |
|
#221
|
||
|
Cita:
Cita:
Enviado desde mi MI 3W mediante Tapatalk |
| Gracias de parte de: | ||
|
|
|
#222
|
||||
|
||||
|
Cita:
Enviado desde mi MI 3W mediante Tapatalk |
| Los siguientes 2 usuarios han agradecido a dantegtr su comentario: | ||
|
#223
|
|
|
Cita:
A modo de curiosidad la partición que deja Miui M es de 1.2gb por lo que quiero suponer que flasheando el zip de reparticionado volverán a valores stock. Enviado desde mi MI 3W mediante Tapatalk |
|
#224
|
||||
|
||||
|
Cita:
Enviado desde mi MI 3W mediante Tapatalk |
| Gracias de parte de: | ||
|
#225
|
||||
|
||||
|
En la versión 6.1.4 hay un bug con la aplicación Media que drena la batería.
He congelado con titanium la aplicación, a ver si se resuelve el problema. Luego lo comento Sent from my MI 3W using Tapatalk
|
| Gracias de parte de: | ||
|
#226
|
||
|
Cita:
Cita:
He probado a frenar ese proceso y no hay manera. Pone la CPU a tope y se calienta mucho y se bebe la batería. Enviado desde mi MI 3W mediante Tapatalk |
| Los siguientes 3 usuarios han agradecido a BitratE su comentario: | ||
|
#227
|
|
FAILED (remote: size too large)
Para los que les da fallo el MiFlash, después de hacer la repartición y dejar el móvil con una sola partición lo que tienen que hacer es modificar el script que viene con la rom stock uno de los siguientes archivos: flash_all.bat / flash_all.sh - flash_all_except_data_storage.bat / flash_all_except_data_storage.sh - flash_all_except_storage.bat / flash_all_except_storage.sh despues de escoger lo que queremos flashear vamos a editar este mismo: buscamos las lineas donde pone modem+modem1 y lo substituimos por modem , system+system1 y lo substituimos por system, boot+boot1 y lo substituimos por boot. ![]() flash_all.bat [PHP] 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 %* 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 %~dp0images\NON-HLOS.bin fastboot %* flash system %~dp0images\system.img fastboot %* flash cache %~dp0images\cache.img fastboot %* flash userdata %~dp0images\userdata.img fastboot %* flash recovery %~dp0images\recovery.img fastboot %* flash boot %~dp0images\boot.img fastboot %* reboot [/PHP] flash_all.sh [PHP]fastboot $* getvar product 2>&1 | grep "^product: *MSM8974$" if [ $? -ne 0 ] ; then echo "Missmatching image and device"; exit 1; fi fastboot $* getvar board_version 2>&1 | grep "^board_version: *4.4" if [ $? -eq 0 ] ; then echo "Missmatching board version"; exit 1; fi fastboot $* getvar board_version 2>&1 | grep "^board_version: *5.[0-9]" if [ $? -eq 0 ] ; then echo "Missmatching board version"; exit 1; fi fastboot $* flash tz `dirname $0`/images/tz.mbn fastboot $* flash dbi `dirname $0`/images/sdi.mbn fastboot $* flash sbl1 `dirname $0`/images/sbl1.mbn fastboot $* flash rpm `dirname $0`/images/rpm.mbn fastboot $* flash aboot `dirname $0`/images/emmc_appsboot.mbn fastboot $* erase boot fastboot $* erase DDR fastboot $* flash misc `dirname $0`/images/misc.img fastboot $* flash modem `dirname $0`/images/NON-HLOS.bin fastboot $* flash system `dirname $0`/images/system.img fastboot $* flash cache `dirname $0`/images/cache.img fastboot $* flash userdata `dirname $0`/images/userdata.img fastboot $* flash recovery `dirname $0`/images/recovery.img fastboot $* flash boot `dirname $0`/images/boot.img fastboot $* reboot[/PHP] flash_all_except_storage.bat [PHP]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 %* 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 %~dp0images\NON-HLOS.bin fastboot %* flash system %~dp0images\system.img fastboot %* flash cache %~dp0images\cache.img fastboot %* flash recovery %~dp0images\recovery.img fastboot %* flash boot %~dp0images\boot.img fastboot %* reboot[/PHP] flash_all_except_storage.sh [PHP]fastboot $* flash tz `dirname $0`/images/tz.mbn fastboot $* flash dbi `dirname $0`/images/sdi.mbn fastboot $* flash sbl1 `dirname $0`/images/sbl1.mbn fastboot $* flash rpm `dirname $0`/images/rpm.mbn fastboot $* flash aboot `dirname $0`/images/emmc_appsboot.mbn fastboot $* erase boot fastboot $* erase DDR fastboot $* flash misc `dirname $0`/images/misc.img fastboot $* flash modem `dirname $0`/images/NON-HLOS.bin fastboot $* flash system `dirname $0`/images/system.img fastboot $* flash cache `dirname $0`/images/cache.img fastboot $* flash recovery `dirname $0`/images/recovery.img fastboot $* flash boot `dirname $0`/images/boot.img fastboot $* reboot[/PHP] flash_all_except_data_storage.bat [PHP]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 %* 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 %~dp0images\NON-HLOS.bin fastboot %* flash system %~dp0images\system.img fastboot %* flash cache %~dp0images\cache.img fastboot %* flash recovery %~dp0images\recovery.img fastboot %* flash boot %~dp0images\boot.img fastboot %* reboot[/PHP] flash_all_except_data_storage.sh [PHP]fastboot $* getvar product 2>&1 | grep "^product: *MSM8974$" if [ $? -ne 0 ] ; then echo "Missmatching image and device"; exit 1; fi fastboot $* getvar board_version 2>&1 | grep "^board_version: *4.4" if [ $? -eq 0 ] ; then echo "Missmatching board version"; exit 1; fi fastboot $* getvar board_version 2>&1 | grep "^board_version: *5.[0-9]" if [ $? -eq 0 ] ; then echo "Missmatching board version"; exit 1; fi fastboot $* flash tz `dirname $0`/images/tz.mbn fastboot $* flash dbi `dirname $0`/images/sdi.mbn fastboot $* flash sbl1 `dirname $0`/images/sbl1.mbn fastboot $* flash rpm `dirname $0`/images/rpm.mbn fastboot $* flash aboot `dirname $0`/images/emmc_appsboot.mbn fastboot $* erase boot fastboot $* erase DDR fastboot $* flash misc `dirname $0`/images/misc.img fastboot $* flash modem `dirname $0`/images/NON-HLOS.bin fastboot $* flash system `dirname $0`/images/system.img fastboot $* flash cache `dirname $0`/images/cache.img fastboot $* flash recovery `dirname $0`/images/recovery.img fastboot $* flash boot `dirname $0`/images/boot.img fastboot $* reboot[/PHP] |
| Los siguientes 7 usuarios han agradecido a meh7 su comentario: | ||
|
#228
|
|
Nueva versión de hoy.
Bajando y probando a ver que cambios tiene. |
| Los siguientes 2 usuarios han agradecido a BitratE su comentario: | ||
|
#229
|
||||
|
||||
|
Dios, yo la he estado probando y va muy fina (no había probado ninguna alpha, solo esa fastboot 5.12.17 que salió).
Una pregunta, que gapps ponéis? Google installer, banks gapps o opengapps? |
| Gracias de parte de: | ||
|
#230
|
|
Bueno, pues parece Que el bug del proceso Media ya no está presente.
Temperatura óptima, rendimiento fantástico y consumo apunta maneras. Sent from my MI 3W using Tapatalk |
| Los siguientes 2 usuarios han agradecido a BitratE su comentario: | ||
|
#231
|
||||
|
||||
|
Para empezar a trastear esta ROM enlace novato por favor?
Enviado desde mi MI 3W mediante Tapatalk |
| Gracias de parte de: | ||
|
#232
|
|
|
Cita:
Se instala un .APK y desde ahí se instala el framework y dependencias de Google. Sent from my MI 3W using Tapatalk |
|
#233
|
||||
|
||||
|
Cita:
Sent from my MI 3W using Tapatalk |
|
#234
|
|
He estado dos días perdido y algo desconectado 😅 ; algo nuevo sobre Miui en MM?
Enviado desde mi MI 3W mediante Tapatalk |
|
#235
|
||||
|
||||
|
Cita:
Enviado desde mi MI 3W mediante Tapatalk |
|
#236
|
||||
|
||||
|
Podéis poner el link al foro donde publican las ROM? Es que no se de donde bajarla. Dejó el móvil cargando y mañana me pongo a ello. Gracias.
Enviado desde mi MI 3W mediante Tapatalk |
|
#237
|
|
|
Cita:
Para los que queráis probar tan sólo tenéis que mirar unas páginas atrás para ver las instrucciones y los links a los archivos necesarios para hacerlo. Sent from my MI 3W using Tapatalk |
| Gracias de parte de: | ||
|
#238
|
|
Tengo un problemas con esta rom todo bien con el flasheo pero ya en ella no coje datos wifi perfecto pero cuando pones datos hase como si se desconectara la tarjeta sim. y trata de conectar y nada vuele a poner como si no tuviera tarjeta sim ,puede que sea que tenga que setear el APN pero no me habia pasado nunca, alguna idea?
|
|
#239
|
||||
|
||||
|
Cita:
1. Instalacion limpia rom 6.1.6 (wipe data) con twrp recovery 2. Arrancar la rom y una vez en miui reiciar al recovery 3.Instalar beta supersu 2.66 Sent from my MI 3W using Tapatalk |
| Gracias de parte de: | ||
|
|
|
#240
|
||||
|
||||
|
Instalando todo haber que sucede
Última edición por CESARMSTR Día 07/01/16 a las 09:26:58 |
| Respuesta |
Estás aquí
|
||||||
|
||||||
«
Tema Anterior
|
Siguiente tema
»
|
|
Hora actual: 12:14:58 (GMT +1)
HTCMania: líderes desde el 2007







