Android flashing process using fastboot command

Scan the code to follow, learn
Insert picture description here
fastboot flash command together

查看设备是否连接
adb devices

进入 fastboot 模式
adb reboot bootloader

查看是否进入 fastboot 模式
fastboot devices

把相应的img文件刷入手机
fastboot flash system system.img
fastboot flash boot boot.img
fastboot flash radio radio.img

................

重启手机
fastboot reboot

Guess you like

Origin blog.csdn.net/qq_43804080/article/details/106281242