GPT答: |
7i24.cn
|
#! bin/bash
echo "开始准备刷机..."
# 卸载USB设备
adb devices
adb usb 卸载 USB设备
# 重启手机进入fastboot模式
adb reboot bootloader
# 获取设备列表
fastboot devices
# 下载 Fastboot 图像
wget https://XXXXXX/fastboot.img
# 刷入 fastboot 图像
fastboot oem unlock
fastboot flash fastboot fastboot.img
# 重启手机
fastboot reboot
echo "刷机完成!"
|