Ver Mensaje Individual
  #1256  
Viejo 09/09/17, 09:18:19
Array

[xs_avatar]
gambitero360 gambitero360 no está en línea
Usuario poco activo
 
Fecha de registro: may 2011
Mensajes: 36
Modelo de smartphone: Samsung Galaxy 3
Tu operador: Movistar
Hola compañeros,

Al final pude desbloquear el bootloader de mi reloj (1.3.3a) y cargarle la PaceFied 1.2.35 , para ello lo que hice fue (partiendo de la base que tenemos todo el adb y fastboot y drivers instalados, lo hice siguiendo la guía oficial de PaceFied https://gitlab.com/Neuer_User/PACEfi...manent-install:

1- Conectar por USB y Arrancar el reloj en modo bootloader :
Código:
adb shell reboot bootloader
2- Una vez tenemos el modo fastboot activo :
Código:
fastboot getvar all
Veremos que el reloj todavía NO está desbloqueado
Código:
< waiting for device >
(bootloader) version-bootloader: U-Boot 2013.07-00104-g46d8377
(bootloader) version-baseband: N/A
(bootloader) version-hardware: V1.1 20130322
(bootloader) version-cdma: N/A
(bootloader) variant: watch
(bootloader) serialno: 999999999999
(bootloader) product: watch
(bootloader) secure: yes
(bootloader) unlocked: no
(bootloader) uart-on: NO
(bootloader) partition-size:bootloader: 0x0000
(bootloader) partition-type:bootloader: emmc
(bootloader) partition-size:recovery: 0x1000
(bootloader) partition-type:recovery: emmc
(bootloader) partition-size:boot: 0x2000
(bootloader) partition-type:boot: emmc
(bootloader) partition-size:system: 0x3000
(bootloader) partition-type:system: ext4
(bootloader) partition-size:cache: 0x4000
(bootloader) partition-type:cache: ext4
(bootloader) partition-size:userdata: 0x5000
(bootloader) partition-type:userdata: ext4
(bootloader) max-download-size: 0x4000000
3-Ejecutamos , atención éste código fue el que me dieron a mí según el modelo, versión y serial de mi reloj, vosotros tendréis que usar el vuestro:
Código:
fastboot oem unlock 9cf9f9e4c9456gd7af56a579e368e47
4-Ahora comprobamos que hemos desbloqueado el reloj :
Código:
fastboot getvar unlocked
Código:
Unlocked: yes
5-Reiniciamos el reloj
Código:
fastboot reboot
6-Volvemos a reiniciar en modo bootloader (paso 1)
7-Ahora le cargaremos una ROM con acceso TEMPORAL ROOT (en mi caso boot-US-adb-root.img) https://app.box.com/s/o8v6h67xdiqmdbpjohcbkatuskzcwi2y:
Código:
fastboot devices
fastboot boot boot-xx-adb-root.img
fastboot reboot
8-Aunque ponga 'FAILED' Ya tendremos el bootloader ABIERTO
9- Lo sabremos si tenemos root si al ejecutar 'adb shell' nos aparece '#' en el prompt, y no '$' . Ejecutar :
Código:
adb push update.zip /sdcard/
adb push recovery.img /sdcard/
adb push start_update.sh /sdcard/
adb push md5s.txt /sdcard/
adb root
adb shell
cd /sdcard/; sh start_update.sh
Responder Con Cita