2

When debugging mode adb devices , it will show my HTC magic.

But when the phone is in fastboot mod , I can't see my HTC magic in adb devices.

I am using ubuntu 10.10 , my /lib/udev/rules.d/11-android.rules

SUBSYSTEMS=="usb", ATTRS{idVendor}=="0bb4", ATTRS{idProduct}=="0c01", MODE="0666", OWNER="<your user name>" #Normal HTC magic
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0bb4", ATTRS{idProduct}=="0c02", MODE="0666", OWNER="<your user name>" #Debug & Recovery HTC MAGIC
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0bb4", ATTRS{idProduct}=="0fff", MODE="0666", OWNER="<your user name>" #Fastboot magic
wizztjh
  • 123
  • 1
  • 7

1 Answers1

1

Have you checked that the idProduct value is correct? run lsusb when the device is connected in fastboot mode to see the vendor id and product id and check if it matches.

Also, I think it's not supposed to show up on adb devices when in fastboot mode, try fastboot devices instead.

aleksikallio
  • 16,250
  • 5
  • 48
  • 73
  • ohh , i get the device name already with fastboot , now i have a Remote Not Allow error .... – wizztjh Feb 01 '11 at 13:50
  • 1
    Can't help with that, have different devices, but check out this link: http://forum.xda-developers.com/showthread.php?t=529167 – aleksikallio Feb 01 '11 at 14:03