Skip to content
Miguel Sánchez de León Peque edited this page Jun 18, 2026 · 5 revisions

Tested working images

Preparation

Download the SDK Platform Tools.

Download and uncompress the image file:

# For `.gz` compressed files
gzip -d your_gsi_rom_of_choice.gz

# For `.xz` compressed files
unxz your_gsi_rom_of_choice.img.xz

Steps to install

Unlock bootloader:

fastboot oem get_unlock_data
# https://en-us.support.motorola.com/app/standalone/bootloader/unlock-your-device-c
fastboot oem unlock <key>

Flash:

# Flash vbmeta
wget https://dl.google.com/developers/android/qt/images/gsi/vbmeta.img
fastboot flash vbmeta vbmeta.img

# Enter fastbootd
fastboot reboot fastboot  # If this does not work: boot system and `adb reboot fastboot`

# Flash system and wipe userdata
fastboot flash system your_gsi_rom_of_choice.img
fastboot -w  # Wipe userdata
fastboot reboot

Steps to update (if OTA is not working)

# Enter fastbootd
fastboot reboot fastboot  # If this does not work: boot system and `adb reboot fastboot`

# Flash system
fastboot flash system your_gsi_rom_of_choice.img
fastboot reboot

Clone this wiki locally