Hi all, I got about 20 emails in response to my blog post[1] requesting that folks run the script we wrote to find out whether a phone supports syncml and extract its Bluetooth device id.
Quite a few submissions were duplicates and a few, which I've included in the file, seem to give non-conformant information. I've attached the patch with the corrosponding changes. Cheers, Chris [1] http://blixtra.org/blog/2011/09/22/syncevolution-needs-you-or-at-least-your-bluetooth-phones/
From 29451e5b64447741fe3dfbc2d13d01c4ec570d1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chris=20K=C3=BChl?= <[email protected]> Date: Sat, 1 Oct 2011 20:32:15 +0200 Subject: [PATCH] dbus: Added user submitted device ids --- src/dbus/server/bluetooth_products.ini | 44 +++++++++++++++++++++++++++++--- 1 files changed, 40 insertions(+), 4 deletions(-) diff --git a/src/dbus/server/bluetooth_products.ini b/src/dbus/server/bluetooth_products.ini index f0141a6..feb1398 100644 --- a/src/dbus/server/bluetooth_products.ini +++ b/src/dbus/server/bluetooth_products.ini @@ -123,11 +123,47 @@ # Product lookup table # -# The keys are of the form "VendorID_ProductID", and the value -# "Vendor Model". The VendorID needs to be used as a prefix because -# ProductIDs are only unique per vender. Currently we have no list of -# product IDs from vendors so we add them as we find them. +# The keys are of the form "VendorID_ProductID", and the value "Vendor +# Model". The VendorID needs to be used as a prefix because ProductIDs +# are only unique per vendor. Currently we have no list of product IDs +# from vendors so we add them as we find them. To this end we've +# written a script (bluetooth-device-id-inspector.py) located in the +# top level "test" directory which scans for this info and outputs a +# file that can be sent to syncEvolution developers for inclusion. +# [Products] +0x0000_0xc089=Sony Ericsson W580i 0x0000_0xc112=Sony Ericsson W995 +0x0001_0x003c=Nokia 5310 0x0001_0x0084=Nokia N85 0x0001_0x00e7=Nokia 5230 +0x0001_0x00ff=Nokia E7 +0x0001_0x0191=Nokia 2323 + +# Questionable devices +# +# The following all have 0x0000 as product ids. The Android devices +# all seem to do this. +# +# SyncML support: False +# Source: 0x0002 +# Vendor: 0x000a=LG +# product: 0x0000=P990 +# +# SyncML support: False +# Source: 0x0001 +# Vendor: 0x000f=HTC +# product: 0x0000=Desire HD +# +# SyncML support: True +# Source: 0x0002 +# Vendor: 0x000a=Samsung +# product: 0x0000=Nexus S +# +# Devices known to not support the Bluetooth Device ID profile +# +# Nokia N95 +# Nokia N900 +# Nokia E71 +# Nokia N950 +# Siemens S55 -- 1.7.6.4
_______________________________________________ SyncEvolution mailing list [email protected] http://lists.syncevolution.org/listinfo/syncevolution
