常用的fastboot命令

一 : 常用的fastboot命令总结

进入bootloader mode
adb reboot bootloader

查看手机是否连接
fastboot devices

刷机
fastboot flash system system.img
fastboot flash boot boot.img

完成后
fastboot reboot

附:如果在刷机过程中出现大小限制
fastboot erase system
fastboot -S 500M flash system system.img

修改手机系统文件权限
adb shell chmod 777 /system/bin/vold

编译boot.img
make bootimage

编译system.img
make systemimage

fastboot flashall 这个需要扫描当前目录的img镜像,可以把img路径配置到环境变量中。

你可能感兴趣的:(Basic,knowledge,of,Android,fastboot,android,刷机,boot)