我可以用 adb
但 abcdefghijklmn2
没有列出任何和 fastboot continue
(我的手机已启动到TWRP)仅打印:
$ fastboot continue < waiting for any device >
我可以排除一个驱动程序问题,因为我使用了使用 fastboot
,使用相同的电话,电缆和PC组合。
我可以用 adb
但 abcdefghijklmn2
没有列出任何和 fastboot continue
(我的手机已启动到TWRP)仅打印:
$ fastboot continue < waiting for any device >
我可以排除一个驱动程序问题,因为我使用了使用 fastboot
,使用相同的电话,电缆和PC组合。
I can connect to TWRP (3.2.3-0) with adb
but fastboot devices
does not list any and fastboot continue
(while my phone is booted into TWRP) only prints:
$ fastboot continue < waiting for any device >
I can rule out a driver problem since I have used fastboot
successfully with the same combination of phone, cable and PC.
adb和fastboot是两个不同的协议。 Android调试桥在rom或恢复模式下工作,当adbd(adb守护程序)在手机上运行时。
fastboot 是最常用的固件更新协议之一。它适用于 bootloader模式,其中一些供应商也称为下载模式或紧急下载模式( EDL )。有些设备具有两种模式,而EDL与Fastboot相比提供更多主要访问。一些OEM使用不同的工具,用于固件闪烁,如 odin , nvflash , qpst / qfil 等。
引导程序模式通常可以通过从恢复或ROM中重新启动引导加载程序模式,或者在设备启动时按Vol +键重新启动。类似地,使用vol +,Vol-and Power键的不同组合可以访问EDL。
引导程序是引导过程中加载的第一条软件之一。 grub 是Linux PC中最常见的。在Android嵌入式设备上,SoC供应商最常用的引导加载程序是 aspoot 。要了解引导加载程序,引导过程以及我们在adb / fastboot模式下可以做的内容,请查看给定链接:
ADB and fastboot are two different protocols. Android Debugging Bridge works in ROM or in Recovery mode, when adbd (adb daemon) is running on phone.
Fastboot is one of the most commonly used Firmware Update Protocols. It works in bootloader mode which is also called download mode or emergency download mode (EDL) by some vendors. Some devices have both modes where EDL provides more primary access as compared to fastboot. Some OEM's use different tools for firmware flashing such as ODIN, nvFlash, QPST/QFIL etc.
Bootloader mode is usually accessible by rebooting in bootloader mode from recovery or ROM, or by pressing Vol+ key when device is booting. Similarly EDL is accessible using different combinations of Vol+, Vol- and Power key.
Bootloader is one of the very first pieces of software that is loaded in booting process. GRUB is the most common one used on Linux PCs. On Android embedded devices, the most commonly used bootloader by SOC vendors is ABOOT. To know further about bootloaders, boot process and what we can do in adb/fastboot mode, have a look at given links:
您对 fastboot
感到困惑。它不是另一个 adb
。接受连接的FastBoot服务器(在TWRP中)。相反,它是Android引导过程中的阶梯/模式。把它想象成grub。在 fastboot
命令等待您的设备时,您需要重新启动手机。
You are confused about fastboot
. It is not another adb
. There is no fastboot server (in TWRP) which accepts connections. Rather it is a step/mode in the boot process of Android. Think of it as GRUB. You need to reboot your phone while the fastboot
command is waiting for your device.
© 2022 it.wenda123.org All Rights Reserved. 问答之家 版权所有