[android-developers] Re: What kind of device should Linux udev set up for G1 linked via USB

2009-03-15 Thread Chander Pechetty
Thanks for all the tips guys... I used the following on Ubuntu 8.10 and got it working. SUBSYSTEM==usb, ATTR{idVendor}==0bb4, SYMLINK+=android_adb, MODE=0666 But I couldn't get the udevcontrol command to work as suggested on the link above. well, just used the oldest trick in the book - REBOOT

[android-developers] Re: What kind of device should Linux udev set up for G1 linked via USB

2009-01-27 Thread Graeme
Hi Faber Well trying again after this post, i did have some sucess On fedora 10. I am using /etc/udev/rules.d/50-android.rules file : SUBSYSTEM==usb,ATTR{idVendor}==0bb4,ATTR{idProduct} ==0c01,MODE=0666, SYMLINK+=android_adb,OWNER=graeme,GROUP=graeme A Guy on IRC #android-dev said I should run

[android-developers] Re: What kind of device should Linux udev set up for G1 linked via USB

2009-01-27 Thread Faber Fedor
On Tue, Jan 27, 2009 at 6:56 AM, Graeme graeme.br...@btinternet.com wrote: Hi Faber Well trying again after this post, i did have some sucess On fedora 10. Congrats! I am using /etc/udev/rules.d/50-android.rules file : SUBSYSTEM==usb,ATTR{idVendor}==0bb4,ATTR{idProduct}

[android-developers] Re: What kind of device should Linux udev set up for G1 linked via USB

2009-01-27 Thread Faber Fedor
On Tue, Jan 27, 2009 at 9:47 AM, Faber Fedor faberfe...@gmail.com wrote: On Tue, Jan 27, 2009 at 6:56 AM, Graeme graeme.br...@btinternet.comwrote: A Guy on IRC #android-dev said I should run adb with root permissions so: adb kill-server; sleep 1; sudo adb start-server; And I foundthe