Hi, I' working in a virtual machine with Ubuntu 10.04 Lucid. I'm trying to boot my Nexus 10 device with a compiled seandroid kernel. In first I boot into bootloader mode by using " adb reboot-bootloader" But when i try "fastboot boot path/to/my/zImage" i get <waiting for device> forever. Anyway "adb devices" command detect my device but fastboot not.
To fix that,I follow instructions from http://source.android.com/source/building-devices.html and I writed USB Configuration in /etc/udev/rules.d/70-android.rules file (where username is my username) # adb protocol on manta (Nexus 10) SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee2", MODE="0600", OWNER="<username>" # fastboot protocol on manta (Nexus 10) SUBSYSTEM=="usb", ATTR{idVendor}=="18d1", ATTR{idProduct}=="4ee0", MODE="0600", OWNER="<username>" My question is why adb detect my device and fastboot not ? How can I fix that to boot with my compiled kernel? Thanks you. -- Henry Ngonga
