[PATCH v1 4/6] hfp_hf: Add initial file for external HFP

2013-01-15 Thread Claudio Takahasi
This patch adds the initial file to support external HFP profile and BlueZ 5. hfp_bluez5 plugin will implement an external Bluetooth profile compatible with BlueZ 5, and hfp plugin will keep the compatibility with BlueZ 4. Both plugins can be enabled in the system. --- Makefile.am |

[PATCH v1 5/6] hfp_hf: Add hfp_driver

2013-01-15 Thread Claudio Takahasi
Adds HFP modem driver registration. --- Makefile.am | 4 +- plugins/bluez5.c| 112 plugins/bluez5.h| 29 + plugins/hfp_hf_bluez5.c | 80 ++ 4 files changed, 223

[PATCH v1 0/6] HFP HF: External Profile

2013-01-15 Thread Claudio Takahasi
://git.infradead.org/users/cktakahasi/ofono.git HF-20130115 Changes from v0: * Append BlueZ version to hfp_hf* files * --enable-bluez4 configure option Claudio Takahasi (6): Makefile: Add configure option for BlueZ 4 and 5 bluetooth: Add versioning information to BlueZ plugins bluetooth: Initial files

[PATCH v1 3/6] bluetooth: Initial files for BlueZ 5

2013-01-15 Thread Claudio Takahasi
This patch adds the file for Bluetooth(BlueZ 5) oFono plugin. --- Makefile.am | 5 + plugins/bluez5.c | 33 + 2 files changed, 38 insertions(+) create mode 100644 plugins/bluez5.c diff --git a/Makefile.am b/Makefile.am index 85824be..2f50673 100644 ---

[PATCH v1 6/6] hfp_hf: Add BlueZ Profile handler

2013-01-15 Thread Claudio Takahasi
This patch declares the external HFP Profile handler. It contains the initial implementation of the D-Bus Profile1 interface and methods responsible for handling Bluetooth connections. --- plugins/bluez5.h| 2 ++ plugins/hfp_hf_bluez5.c | 74

Re: [PATCH v1 1/6] Makefile: Add configure option for BlueZ 4 and 5

2013-01-15 Thread Marcel Holtmann
Hi Claudio, BlueZ 5 is the default option. If --enable-bluez4 is provided, oFono plugins based on BlueZ 4 are enabled prior to BlueZ 5. --disable-bluetooth configure option disables BlueZ 5 and BlueZ 4 plugins. --- Makefile.am | 4 +++- configure.ac | 24 2