Curso de Android

De WikiEducator
Saltar a: navegación, buscar


A brief introduction to fastboot

  • fastboot es una pequeña herramienta que viene con el Android SDK y puede ser usada para flashear particiones del dispositivo.
  • Es un modo de recuperación alternativo al de recovery.
  • El modo FastBoot arranca antes de cargar el SO Android (arrance incluso si Android no está instalado).
  • Es útil para hacer un update del firmware sin tener que usar el modo recovery.
  • Es el modo preferido para instalar la imagen de recovery en muchos dispositivos.
  • Fastboot también se usa para desbloquear el bootloader de los dispositovos Google Nexus.
  • No todos los dispositivos soportan fastboot.
  • Los comandos de fastboot solo funcionan si el dispositivo está en modo fastboot.

Tutorial sobre FastBoot.

juanda@juanda-PC:~/Android/sdk/platform-tools$ sudo ./fastboot devices
01a927828f90ccde	fastboot
juanda@juanda-PC:~/Android/sdk/platform-tools$ sudo ./fastboot oem unlock
...
FAILED (remote: Already Unlocked)
finished. total time: 0.001s
juanda@juanda-PC:~/Android/sdk/platform-tools$

Getting fastboot

See here for instructions on downloading the latest Android SDK, and thus fastboot, for your computer.

Icon present.gif
Tip: {{{1}}}


Troubleshooting fastboot

Plantilla:Paths

<waiting for device> errors

If you see <waiting for device> at any point when executing fastboot command, the PC is not configured to use fastboot properly. Most typically, this is because you are not running fastboot with elevated privileges.

Linux/OSX

Run fastboot as root or with sudo.

Windows

Run fastboot as an Administrator.


Make sure the output of fastboot devices returns your device serial number or you will never get past this error message.

Plantilla:Recovery install fastboot