Created
October 2, 2020 21:13
-
-
Save DartPower/23a19c461cbf52eb468ed896c2ebdb6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| fastboot flash gpt deploy-gpt.img | |
| pause | |
| fastboot flash bootloader bootloader-sd.img | |
| pause | |
| fastboot flash uboot-env env.img | |
| pause | |
| fastboot reboot | |
| pause | |
| fastboot oem format | |
| pause | |
| fastboot flash bootloader bootloader-sd.img | |
| pause | |
| fastboot flash uboot-env env.img | |
| pause | |
| fastboot flash recovery_boot boot.img | |
| pause | |
| fastboot erase misc | |
| pause | |
| fastboot reboot-fastboot | |
| pause | |
| fastboot flash boot_a boot.img | |
| pause | |
| fastboot flash dtbo_a boot_dtbo.img | |
| pause | |
| fastboot flash super super.img | |
| pause | |
| fastboot format:ext4 metadata | |
| pause | |
| fastboot format:ext4 userdata | |
| pause | |
| fastboot reboot | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment