Fastboot using hotkey
After powering on the device, select VOL-. The figure shows the Fastboot logs from the device entering the Fastboot mode.Fastboot commands
When the system detects Fastboot mode, you can run the corresponding Fastboot commands.| Command | Usage | Example or use case |
|---|---|---|
fastboot reboot | Allows you to reboot the device. | Example command:fastboot rebootA system reboot may be required after:
|
fastboot devices | If it recognizes and connects to the device, Fastboot displays the device information. | Example command:fastboot devices |
fastboot getvar <variable> | Retrieves data from various partitions. The following are the supported getvar commands.
| Fastboot supports multiple variables. The data from these variables can be retrieved through this command. Example command: fastboot getvar version |
fastboot flash <partition name> <full path to the SW image> | Flashes the software images. | To flash the xbl_config.elf image, run:fastboot flash xbl_config_a xbl_config.elfWhere:
|
fastboot erase | Erases a partition. | Example command:fastboot erase xbl_config_aErases the xbl_config_a partition. |
fastboot continue | Continues with the bootup. | Example command:fastboot continueBoots up the OS. |

