Android Fastboot devices not returning device

2019-02-01 17:58发布

At the moment I would like to reinstall Android on my device(custom hardware device). I got the image files after building. But when I enter fastboot devices nothing returns.

adb devices is working. It return my device. fastboot flashall -w is also not working. I returns <waiting for devices> and stays like that until I exit.

So the 70-android.rules.d file is right. I have also set ANDROID_PRODUCT_OUT. But someone knows why fastboot does not see my device, but adb does?

Restarting udev or adb does not work. Some people recommend that on the internet.

OS: Ubuntu 11.10

7条回答
闹够了就滚
2楼-- · 2019-02-01 18:36

For Windows:

  • Open device manager
  • Find Unknown "Android" device (likely listed under Other devices with an exclamation mark)
  • Update driver
  • Browse my computer for driver software
  • Let me pick from a list of devices, select List All Devices
  • Under "Android device" or "Google Inc", you will find "Android Bootloader Interface"
  • Choose "Android Bootloader Interface"
  • Click "yes" when it says that driver might not be compatible
查看更多
趁早两清
3楼-- · 2019-02-01 18:41

I had the same issue, but I was running Ubuntu 12.04 through a VM. I am using a Nexus 10. I had added the usb device as a filter for the VM (using virtual box in the virtual machine's settings).

The device I had added was "samsung Nexus 10".

The problem is that once the device is in fastboot mode, it shows up as a different device: "Google, Inc Android 1.0." So doing "lsusb" in the VM showed no device connected, and obviously "fastboot devices" returned nothing until I added the "second" device as a filter for the VM as well.

Hope this helps someone.

查看更多
闹够了就滚
4楼-- · 2019-02-01 18:47

thank you. that worked great for me... from the windows cmd line

E:\dev\android-sdk-windows\platform-tools>adb devices
List of devices attached
0123456789ABCDEF        device

E:\dev\android-sdk-windows\platform-tools>fastboot devices

E:\dev\android-sdk-windows\platform-tools>adb reboot bootloader

waited for the tablet to reboot...

E:\dev\android-sdk-windows\platform-tools>fastboot devices 
mt6582_phone    fastboot
查看更多
放我归山
5楼-- · 2019-02-01 18:47

If you got nothing when inputted fastboot devices, it meaned you devices fail to enter fastboot model. Make sure that you enter fastboot model via press these three button simultaneously, power key, volume key(both '+' and '-'). Then you can see you devices via fastboot devices and continue to flash your devices.

note:I entered fastboot model only pressed 'power key' and '-' key before, and present the same problem.

查看更多
姐就是有狂的资本
6楼-- · 2019-02-01 18:54

Are you rebooting the device into the bootloader and entering fastboot USB on the bootloader menu?

Try

adb reboot bootloader

then look for on screen instructions to enter fastboot mode.

查看更多
劫难
7楼-- · 2019-02-01 19:02

You must run fastboot as root. Try sudo fastboot

查看更多
登录 后发表回答