From 7edd09cf4b8a2e4bec46919a4ad40e1e322139e0 Mon Sep 17 00:00:00 2001 From: Cryo Date: Fri, 30 Aug 2024 18:53:36 +0800 Subject: [PATCH] fastboot: add Chinese translation (#13529) --- pages.zh/common/fastboot.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages.zh/common/fastboot.md diff --git a/pages.zh/common/fastboot.md b/pages.zh/common/fastboot.md new file mode 100644 index 000000000..77e9d9694 --- /dev/null +++ b/pages.zh/common/fastboot.md @@ -0,0 +1,32 @@ +# fastboot + +> 在引导加载程序模式下与连接的 Android 设备通信(在这里无法使用 ADB)。 +> 更多信息:. + +- 解锁引导加载程序: + +`fastboot oem unlock` + +- 回锁引导加载程序: + +`fastboot oem lock` + +- 从 fastboot 模式再次重启到 fastboot 模式: + +`fastboot reboot bootloader` + +- 刷入镜像: + +`fastboot flash {{路径/到/文件.img}}` + +- 刷入自定义恢复镜像: + +`fastboot flash recovery {{路径/到/文件.img}}` + +- 列出已连接的设备: + +`fastboot devices` + +- 列出设备所有信息: + +`fastboot getvar all`