forked from phhusson/treble_experimentations
-
Notifications
You must be signed in to change notification settings - Fork 52
moto g55 5g
Miguel Sánchez de León Peque edited this page Jun 18, 2026
·
5 revisions
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
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
# 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