To rule out permissions problems over usb, does your device get detected if you run:
fastboot devices sudo fastboot devices If no output on either, you have some other issue. If output only on the root run command, you have a permissions problem. Also if I recall, historically it was 70 or 90 udev rules, but Google has changed it to 51 (not really sure what difference it makes, but mine is 51 and it works). Also make sure you unplug and replug in the device over usb so the new rules take affect. The recommended approach is to create a file /etc/udev/rules.d/51-android.rules (as the root user) and to copy the following lines in it. <username> must be replaced by the actual username of the user who is authorized to access the phones over USB. http://source.android.com/source/initializing.html Make sure you have followed initializing a build environment instructions... As far as booting a new kernel, fastboot shows it only needs the image, and optionally the ramdisk. It has been in my discoveries it really needs both... fastboot boot <kernel> <ramdisk> But, I have only used it a few times, usually I just fastboot flash boot $OUT/boot.img (as I can always just restore the partition later) Bill On Thu, Jul 11, 2013 at 7:47 AM, Henry Ngonga <[email protected]> wrote: > 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 > -- Respectfully, William C Roberts
