[android-porting] Re: adb device naming

2011-05-05 Thread Dudero
This is not the device name: "ro.product.device". You mean the . I think this number is hardcoded in the platform sources - you can look at the adb deamon sources: /system/core/adb, esp. on "adb.c" from where the command "adb devices" get the serial numbers Greetz Dudero On 4 Mai, 18:58, Die

[android-porting] Re: adb device naming

2011-05-05 Thread Dudero
Right: in the adb kernel-module at: kernel/drivers/usb/android.c On 5 Mai, 15:22, hedwin wrote: > It is in the linux kernel. > > Hedwin > > > > > > > > On Thu, May 5, 2011 at 3:15 PM, Dudero wrote: > > This is not the device name: "ro.product.device". You mean the > number>. > > > I think this

[android-porting] Re: adb device naming

2011-05-05 Thread Diego
On May 5, 3:42 pm, Dudero wrote: > Right: in the adb kernel-module at: kernel/drivers/usb/android.c > Thanks for the replies! I also found out that there's a: #define LOCAL_CLIENT_PREFIX "emulator-" in "adb.h" and some more help from this thread: http://groups.google.com/group/android-kernel/br

Re: [android-porting] Re: adb device naming

2011-05-05 Thread hedwin
It is in the linux kernel. Hedwin On Thu, May 5, 2011 at 3:15 PM, Dudero wrote: > This is not the device name: "ro.product.device". You mean the number>. > > I think this number is hardcoded in the platform sources - you can > look at the adb deamon sources: /system/core/adb, > > esp. on "adb.