Aller au contenu

LG G2 CM 12 nightly du 8 mars bloqué sur logo lg


Recommended Posts

Salut tout le monde,

 

Je possède un lg g2 depuis maintenant 6 mois et je l'ai passé sous cm12 grâce à ce site.

 

 

Je le mettais à jour tous les 3 4 jours environ, sauf que là en essayant de le mettre à jour mon g2 reste bloqué sur le logo lg.

 

En faisant power et volume bas j ai réussi à entrer dans le recovery après voir fait le hard reset, mais là ducoup je peux plus flasher la rom vu que j'ai du formater.

Windows ne le reconnait pas.

J'ai installé lg mobile support et essayé le download mode.

 

Mais rien n"y fait je suis bloqué.

 

Merci d'avance pour vos aides.

 

Cyril

Lien vers le commentaire
Partager sur d’autres sites

Tu n'as pas gardé l'ancienne update au cas où (la 30150304) ? Si c'est le cas tu peu la reflasher, et si c'est pas le cas, va falloir passer par la cmd windows, c'est au delà de mes compétences.. Hum.. Catastrophiques ?

Lien vers le commentaire
Partager sur d’autres sites

Salut, télécharge adb (regarde sur xda) et les drivers universels (regarde la FAQ de 6riloo). Si ton portable est reconnu comme quelque chose du genre "Android interface" dans le gestionnaire de périphériques c'est bon. Ensuite suis un tuto pour copier une rom de ton pc vers ton portable avec adb

Modifié par Izmash
Lien vers le commentaire
Partager sur d’autres sites

J'ai suivi plusieurs tuto

pour installer adb
http://forum.android-mt.com/topic/101-comment-installer-et-configurer-android-adb-et-fastboot-sur-windows/

 

j'ai installé les drivers lg usb

 

après j'ai suivi ce tuto pour flasher la rom

 

http://forum.android-mt.com/topic/102-comment-faire-un-adb-sideload-pour-flasher-une-rom-depuis-un-pc/

 

Mais ça ne fonctionne toujours pas, voici ce que me dit l'invité de commande

C:\Users\cyril camp\Desktop\adb>adb devices
List of devices attached
0602d5fd95d6a96b        host


C:\Users\cyril camp\Desktop\adb>adb sideload cm-12-20150308-NIGHTLY-d802.zip
Android Debug Bridge version 1.0.26

 -d                            - directs command to the only connected USB devic
e
                                 returns an error if more than one USB device is
 present.
 -e                            - directs command to the only running emulator.
                                 returns an error if more than one emulator is r
unning.
 -s <serial number>            - directs command to the USB device or emulator w
ith
                                 the given serial number. Overrides ANDROID_SERI
AL
                                 environment variable.
 -p <product name or path>     - simple product name like 'sooner', or
                                 a relative/absolute path to a product
                                 out directory like 'out/target/product/sooner'.

                                 If -p is not specified, the ANDROID_PRODUCT_OUT

                                 environment variable is used, which must
                                 be an absolute path.
 devices                       - list all connected devices
 connect <host>[:<port>]       - connect to a device via TCP/IP
                                 Port 5555 is used by default if no port number
is specified.
 disconnect [<host>[:<port>]]  - disconnect from a TCP/IP device.
                                 Port 5555 is used by default if no port number
is specified.
                                 Using this command with no additional arguments

                                 will disconnect from all connected TCP/IP devic
es.

device commands:
  adb push <local> <remote>    - copy file/dir to device
  adb pull <remote> [<local>]  - copy file/dir from device
  adb sync [ <directory> ]     - copy host->device only if changed
                                 (-l means list but don't copy)
                                 (see 'adb help all')
  adb shell                    - run remote shell interactively
  adb shell <command>          - run remote shell command
  adb emu <command>            - run emulator console command
  adb logcat [ <filter-spec> ] - View device log
  adb forward <local> <remote> - forward socket connections
                                 forward specs are one of:
                                   tcp:<port>
                                   localabstract:<unix domain socket name>
                                   localreserved:<unix domain socket name>
                                   localfilesystem:<unix domain socket name>
                                   dev:<character device name>
                                   jdwp:<process pid> (remote only)
  adb jdwp                     - list PIDs of processes hosting a JDWP transport

  adb install [-l] [-r] [-s] <file> - push this package file to the device and i
nstall it
                                 ('-l' means forward-lock the app)
                                 ('-r' means reinstall the app, keeping its data
)
                                 ('-s' means install on SD card instead of inter
nal storage)
  adb uninstall [-k] <package> - remove this app package from the device
                                 ('-k' means keep the data and cache directories
)
  adb bugreport                - return all information from the device
                                 that should be included in a bug report.

  adb help                     - show this help message
  adb version                  - show version num

DATAOPTS:
 (no option)                   - don't touch the data partition
  -w                           - wipe the data partition
  -d                           - flash the data partition

scripting:
  adb wait-for-device          - block until device is online
  adb start-server             - ensure that there is a server running
  adb kill-server              - kill the server if it is running
  adb get-state                - prints: offline | bootloader | device
  adb get-serialno             - prints: <serial-number>
  adb status-window            - continuously print device status for a specifie
d device
  adb remount                  - remounts the /system partition on the device re
ad-write
  adb reboot [bootloader|recovery] - reboots the device, optionally into the boo
tloader or recovery program
  adb reboot-bootloader        - reboots the device into the bootloader
  adb root                     - restarts the adbd daemon with root permissions
  adb usb                      - restarts the adbd daemon listening on USB
  adb tcpip <port>             - restarts the adbd daemon listening on TCP on th
e specified port
networking:
  adb ppp <tty> [parameters]   - Run PPP over USB.
 Note: you should not automatically start a PPP connection.
 <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
 [parameters] - Eg. defaultroute debug dump local notty usepeerdns

adb sync notes: adb sync [ <directory> ]
  <localdir> can be interpreted in several ways:

  - If <directory> is not specified, both /system and /data partitions will be u
pdated.

  - If it is "system" or "data", only the corresponding partition
    is updated.

environmental variables:
  ADB_TRACE                    - Print debug information. A comma separated list
 of the following values
                                 1 or all, adb, sockets, packets, rwx, usb, sync
, sysdeps, transport, jdwp
  ANDROID_SERIAL               - The serial number to connect to. -s takes prior
ity over this if given.
  ANDROID_LOG_TAGS             - When used with the logcat option, only these de
bug tags are printed.

C:\Users\cyril camp\Desktop\adb>

 

d'autre idées sachant que je peux accéder au download mode et au mode recovery (TWRP)
 

Lien vers le commentaire
Partager sur d’autres sites

As-tu un câble OTG (pour relier une clé USB à ton smartphone) ?

J 'ai vu ton message ce midi, je suis donc allé acheté un cable otg le plus proche de chez moi (carrefour) il n'y avait pas de cable, j'ai donc du acheter une clé micro usb usb 16 go à 14,90.

J'ai transféré la rom sur la clé, puis dans le recovery j'ai bien retrouvé la rom.

Le flashage s'est correctement effectué en moins de 5 min c'était plié.

Alors qu'hier j'ai galéré pendant 2 3 heures pour finir n'avoir aucun résultat.

 

Mais maintenant que j'en ai une je n'aurais plus jamais de problème.(je l'espère)

Lien vers le commentaire
Partager sur d’autres sites

Rejoignez la conversation

Vous pouvez poster maintenant et vous enregistrez plus tard. Si vous avez un compte, connectez-vous maintenant pour poster.

Invité
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Répondre à ce sujet…

×   Collé en tant que texte enrichi.   Coller en tant que texte brut à la place

  Seulement 75 émoticônes maximum sont autorisées.

×   Votre lien a été automatiquement intégré.   Afficher plutôt comme un lien

×   Votre contenu précédent a été rétabli.   Vider l’éditeur

×   Vous ne pouvez pas directement coller des images. Envoyez-les depuis votre ordinateur ou insérez-les depuis une URL.

×
×
  • Créer...