The way to install proper driver for 3G dongle in oFono

2011-12-20 Thread Deng, Ying An
Hi, We are facing a problem in oFono when using 3G modems: A CDMA2000 modem can have same PID with WCDMA modem, or TDS-CDMA modem - 3G modem vendors already confirm they do that. That's to say, if following current strategy, it will be a problem to install proper driver for this kind of 3G

Re: The way to install proper driver for 3G dongle in oFono

2011-12-20 Thread Guillaume Zajac
Hi Deng, On 20/12/2011 09:44, Deng, Ying An wrote: Hi, We are facing a problem in oFono when using 3G modems: A CDMA2000 modem can have same PID with WCDMA modem, or TDS-CDMA modem -- 3G modem vendors already confirm they do that. That's to say, if following current strategy, it will be a

Re: [PATCHv2 2/3] network: Add CPHS SPN, short-SPN fallbacks

2011-12-20 Thread Oleg Zhurakivskyy
Hello Denis, On 12/20/2011 08:34 AM, Denis Kenzior wrote: You have to be careful here since you can't really guarantee that the operation will succeed in your time allotted. If you are unlucky the timer will fire before the entire transaction succeeds and you might be running the old

[RFC v4 01/16] bluetooth: Add Serial interface definition

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- plugins/bluetooth.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/plugins/bluetooth.h b/plugins/bluetooth.h index daa1873..4fc16ad 100644 --- a/plugins/bluetooth.h +++ b/plugins/bluetooth.h @@ -27,6 +27,7 @@ #define

[RFC v4 00/16] Add DUN support

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de Hi, and another update. I have changed the series according the comments from Denis. - Renamed this project dundee - Reordering of the patches (doc and test scripts) - Move chat/ppp code into device.c - Change layering order: Add driver

[RFC v4 02/16] dundee: Add documentation

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- doc/dundee-api.txt | 76 1 files changed, 76 insertions(+), 0 deletions(-) create mode 100644 doc/dundee-api.txt diff --git a/doc/dundee-api.txt b/doc/dundee-api.txt new file mode 100644

[RFC v4 03/16] dundee: Add test scripts

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- test/dundee-connect| 20 + test/dundee-disconnect | 20 + test/monitor-dundee| 109 3 files changed, 149 insertions(+), 0 deletions(-) create mode 100755

[RFC v4 04/16] dundee: Add skeleton implementation

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am | 12 +++ bootstrap-configure |1 + configure.ac|4 + dundee/dundee.h | 46 + dundee/main.c | 255 +++ 5 files changed, 318 insertions(+),

[RFC v4 05/16] dundee: Add D-Bus error messages

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/dbus.c | 45 + dundee/dundee.h |3 +++ 3 files changed, 49 insertions(+), 1 deletions(-) create mode 100644 dundee/dbus.c diff --git a/Makefile.am

[RFC v4 06/16] dundee: Add D-Bus configuration file

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|6 ++ dundee/dundee.conf | 23 +++ 2 files changed, 29 insertions(+), 0 deletions(-) create mode 100644 dundee/dundee.conf diff --git a/Makefile.am b/Makefile.am index baf9aca..1b25daa 100644

[RFC v4 08/16] dundee: Add Manager interface

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/dundee.h |6 +++ dundee/main.c|9 ++--- dundee/manager.c | 97 ++ 4 files changed, 107 insertions(+), 7 deletions(-) create mode 100644

[RFC v4 07/16] dundee: Add systemd configuration file

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |6 ++ dundee/dundee.service | 11 +++ 2 files changed, 17 insertions(+), 0 deletions(-) create mode 100644 dundee/dundee.service diff --git a/Makefile.am b/Makefile.am index 1b25daa..ea9733c 100644 ---

[RFC v4 09/16] dundee: Add skeleton implementation for device

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |3 +- dundee/device.c | 100 +++ dundee/dundee.h | 15 dundee/main.c |4 ++- 4 files changed, 120 insertions(+), 2 deletions(-) create mode 100644

[RFC v4 10/16] dundee: Manager append devices

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/manager.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/dundee/manager.c b/dundee/manager.c index 45f168e..628ca3a 100644 --- a/dundee/manager.c +++ b/dundee/manager.c @@ -30,6 +30,26 @@

[RFC v4 11/16] dundee: Add callback helpers

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/dundee.h | 44 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/dundee/dundee.h b/dundee/dundee.h index 2ce4270..660c245 100644 --- a/dundee/dundee.h +++ b/dundee/dundee.h @@

[RFC v4 12/16] dundee: Add device un/register

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 69 ++- dundee/dundee.h | 21 2 files changed, 89 insertions(+), 1 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index 7ccf669..c5ea6c7

[RFC v4 13/16] dundee: Add driver helper functions

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 18 ++ dundee/dundee.h |5 + 2 files changed, 23 insertions(+), 0 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index c5ea6c7..d44ef1d 100644 --- a/dundee/device.c +++ b/dundee/device.c

[RFC v4 14/16] dundee: Add device D-Bus interface

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- dundee/device.c | 221 +++ dundee/dundee.h |1 + 2 files changed, 222 insertions(+), 0 deletions(-) diff --git a/dundee/device.c b/dundee/device.c index d44ef1d..696c9e2 100644 ---

[RFC v4 15/16] dundee: Add PPP handling code to device

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am |2 +- dundee/device.c | 241 ++- 2 files changed, 240 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 015f2d5..817fdc0 100644 --- a/Makefile.am

[RFC v4 16/16] dundee: Add Bluetooth DUN driver

2011-12-20 Thread Daniel Wagner
From: Daniel Wagner daniel.wag...@bmw-carit.de --- Makefile.am|6 +- dundee/bluetooth.c | 347 dundee/dundee.h|4 + dundee/main.c |2 + 4 files changed, 356 insertions(+), 3 deletions(-) create mode 100644

Re: [PATCHv2 2/3] network: Add CPHS SPN, short-SPN fallbacks

2011-12-20 Thread Denis Kenzior
Hi Oleg, On 12/20/2011 07:19 AM, Oleg Zhurakivskyy wrote: Hello Denis, On 12/20/2011 08:34 AM, Denis Kenzior wrote: You have to be careful here since you can't really guarantee that the operation will succeed in your time allotted. If you are unlucky the timer will fire before the entire

Re: The way to install proper driver for 3G dongle in oFono

2011-12-20 Thread Guillaume Zajac
Hi again, On 20/12/2011 12:02, Guillaume Zajac wrote: Hi Deng, On 20/12/2011 09:44, Deng, Ying An wrote: Hi, We are facing a problem in oFono when using 3G modems: A CDMA2000 modem can have same PID with WCDMA modem, or TDS-CDMA modem -- 3G modem vendors already confirm they do that.

Re: The way to install proper driver for 3G dongle in oFono

2011-12-20 Thread Marcel Holtmann
Hi Guillaume, We are facing a problem in oFono when using 3G modems: A CDMA2000 modem can have same PID with WCDMA modem, or TDS-CDMA modem -- 3G modem vendors already confirm they do that. That's to say, if following current strategy, it will be a problem to install proper driver

[PATCH 1/2] udevng: Do only label assignment for Speedup dongles

2011-12-20 Thread Philippe Nunes
--- plugins/udevng.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/plugins/udevng.c b/plugins/udevng.c index be87320..2c0633d 100644 --- a/plugins/udevng.c +++ b/plugins/udevng.c @@ -310,13 +310,6 @@ static gboolean setup_speedup(struct modem_info *modem)

[PATCH 2/2] Add udev rules for Speedup dongles

2011-12-20 Thread Philippe Nunes
--- plugins/ofono-speedup.rules | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) create mode 100644 plugins/ofono-speedup.rules diff --git a/plugins/ofono-speedup.rules b/plugins/ofono-speedup.rules new file mode 100644 index 000..f43fc7b --- /dev/null +++

Re: [PATCH 1/2] udevng: Do only label assignment for Speedup dongles

2011-12-20 Thread Marcel Holtmann
Hi Philippe, plugins/udevng.c |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) patch has been applied. Thanks. Regards Marcel ___ ofono mailing list ofono@ofono.org http://lists.ofono.org/listinfo/ofono

Re: [PATCH 2/2] Add udev rules for Speedup dongles

2011-12-20 Thread Marcel Holtmann
Hi Philippe, plugins/ofono-speedup.rules | 23 +++ 1 files changed, 23 insertions(+), 0 deletions(-) create mode 100644 plugins/ofono-speedup.rules you might wanna add this file also to EXTRA_DIST. Otherwise it will never be included in any release. Regards Marcel

RE: The way to install proper driver for 3G dongle in oFono

2011-12-20 Thread Deng, Ying An
-Original Message- From: ofono-boun...@ofono.org [mailto:ofono-boun...@ofono.org] On Behalf Of Marcel Holtmann Sent: Wednesday, December 21, 2011 12:41 AM To: ofono@ofono.org Subject: Re: The way to install proper driver for 3G dongle in oFono Hi Guillaume, We are facing a problem in