安卓刷机fastboot分段传输

win10 fastboot 无法识别,驱动下载地址GitHub - xushuan/google_latest_usb_driver_windows

把inf文件更新到设备管理器驱动更新即可

问题

bash 复制代码
archive does not contain 'super_empty.img'
Sending 'vbmeta_a' (4 KB)                          OKAY [  0.117s]
Writing 'vbmeta_a'                                 OKAY [  0.060s]
archive does not contain 'super_empty.img'
archive does not contain 'super_empty.img'
extracting product.img (194 MB) to disk... took 0.331s
archive does not contain 'product.sig'
archive does not contain 'super_empty.img'
Sending 'product_a' (307200 KB)                    FAILED (remote: 'No enough buffer to download data')
fastboot: error: Command failed
Press any key to exit...

在fastboot后面加入 -S 64M 限制分段传输内存

bash 复制代码
PATH=%PATH%;"%SYSTEMROOT%\System32"
fastboot flash -S 64M bootloader bootloader-crosshatch-b1c1-0.1-5578427.img
fastboot reboot-bootloader
ping -n 5 127.0.0.1 >nul
fastboot flash -S 64M radio radio-crosshatch-g845-00017-190312-b-5369743.img
fastboot reboot-bootloader
ping -n 5 127.0.0.1 >nul
fastboot -w update -S 64M image-crosshatch-pq3a.190801.002.zip

echo Press any key to exit...
pause >nul
exit
相关推荐
孜然卷k6 分钟前
前端样式CSS设置 display: ‘grid‘, gridTemplateColumns: ‘repeat(4, 1fr)‘ 部分电脑展示内容溢出
前端·css
阿加犀智能15 分钟前
快速在高通芯片手机&平板本地部署大模型DeepSeek
android·linux·deepseek
xuanwojiuxin17 分钟前
Linux 阻塞非阻塞
linux·运维·服务器
n33(NK)17 分钟前
Linux从入门到精通
linux·运维·服务器
Invinciblenuonuo19 分钟前
Linux【1】-----虚拟内存
linux·运维·服务器
2501_9153738819 分钟前
linux 更新ollama服务
linux·运维·服务器
弓长三虎23 分钟前
linux 命令审计
linux·运维·服务器·前端
EndingCoder26 分钟前
React Native 导航系统实战(React Navigation)
前端·react native·react.js·前端框架·跨端
中微子35 分钟前
React 避坑指南:如何正确获取自定义组件的 DOM 引用?
前端