1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-31 11:55:30 +02:00

fastboot: add Chinese translation (#13529)

This commit is contained in:
Cryo 2024-08-30 18:53:36 +08:00 committed by GitHub
parent 9aae78352c
commit 7edd09cf4b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,32 @@
# fastboot
> 在引导加载程序模式下与连接的 Android 设备通信(在这里无法使用 ADB)。
> 更多信息:<https://cs.android.com/android/platform/superproject/+/main:system/core/fastboot>.
- 解锁引导加载程序:
`fastboot oem unlock`
- 回锁引导加载程序:
`fastboot oem lock`
- 从 fastboot 模式再次重启到 fastboot 模式:
`fastboot reboot bootloader`
- 刷入镜像:
`fastboot flash {{路径/到/文件.img}}`
- 刷入自定义恢复镜像:
`fastboot flash recovery {{路径/到/文件.img}}`
- 列出已连接的设备:
`fastboot devices`
- 列出设备所有信息:
`fastboot getvar all`