All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v0 0/6] HFP HF: External Profile
@ 2013-01-10 14:44 Claudio Takahasi
  2013-01-10 14:44 ` [PATCH v0 1/6] Makefile: Enable BlueZ 4 and BlueZ 5 Claudio Takahasi
                   ` (7 more replies)
  0 siblings, 8 replies; 26+ messages in thread
From: Claudio Takahasi @ 2013-01-10 14:44 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 2056 bytes --]

This is the first group of the patches which introduces the Handsfree
BlueZ external profile.

The following patches contain only initial files and basic structures
for the HFP HF plugin (since files and plugins names are one of 
controversial points).

Remaining HFP HF patches:
git://git.infradead.org/users/cktakahasi/ofono.git HF-20130109

Claudio Takahasi (6):
  Makefile: Enable BlueZ 4 and BlueZ 5
  bluetooth: Add versioning information to BlueZ plugins
  bluetooth: Initial files for BlueZ 5
  hfp_hf: Add initial file for external HFP
  hfp_hf: Add hfp_driver
  hfp_hf: Add BlueZ Profile handler


Claudio Takahasi (6):
  Makefile: Enable BlueZ 4 and BlueZ 5
  bluetooth: Add versioning information to BlueZ plugins
  bluetooth: Initial files for BlueZ 5
  hfp_hf: Add initial file for external HFP
  hfp_hf: Add hfp_driver
  hfp_hf: Add BlueZ Profile handler

 Makefile.am             |  33 +-
 configure.ac            |  10 +-
 dundee/bluetooth.c      |   2 +-
 plugins/bluetooth.c     | 989 ------------------------------------------------
 plugins/bluetooth.h     |  84 ----
 plugins/bluez4.c        | 989 ++++++++++++++++++++++++++++++++++++++++++++++++
 plugins/bluez4.h        |  84 ++++
 plugins/bluez5.c        | 145 +++++++
 plugins/bluez5.h        |  31 ++
 plugins/dun_gw.c        |   2 +-
 plugins/hfp_ag.c        |   2 +-
 plugins/hfp_hf.c        | 552 ---------------------------
 plugins/hfp_hf_bluez4.c | 552 +++++++++++++++++++++++++++
 plugins/hfp_hf_bluez5.c | 194 ++++++++++
 plugins/sap.c           |   2 +-
 plugins/telit.c         |   2 +-
 16 files changed, 2030 insertions(+), 1643 deletions(-)
 delete mode 100644 plugins/bluetooth.c
 delete mode 100644 plugins/bluetooth.h
 create mode 100644 plugins/bluez4.c
 create mode 100644 plugins/bluez4.h
 create mode 100644 plugins/bluez5.c
 create mode 100644 plugins/bluez5.h
 delete mode 100644 plugins/hfp_hf.c
 create mode 100644 plugins/hfp_hf_bluez4.c
 create mode 100644 plugins/hfp_hf_bluez5.c

-- 
1.7.11.7


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2013-01-16 20:16 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-10 14:44 [PATCH v0 0/6] HFP HF: External Profile Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 1/6] Makefile: Enable BlueZ 4 and BlueZ 5 Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 2/6] bluetooth: Add versioning information to BlueZ plugins Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 3/6] bluetooth: Initial files for BlueZ 5 Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 4/6] hfp_hf: Add initial file for external HFP Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 5/6] hfp_hf: Add hfp_driver Claudio Takahasi
2013-01-10 14:44 ` [PATCH v0 6/6] hfp_hf: Add BlueZ Profile handler Claudio Takahasi
2013-01-11  9:27 ` [PATCH v0 0/6] HFP HF: External Profile Mikel Astiz
2013-01-11 14:26   ` Claudio Takahasi
2013-01-11 16:05     ` Mikel Astiz
2013-01-15 18:24 ` [PATCH v1 " Claudio Takahasi
2013-01-15 18:24   ` [PATCH v1 1/6] Makefile: Add configure option for BlueZ 4 and 5 Claudio Takahasi
2013-01-15 19:01     ` Marcel Holtmann
2013-01-15 18:24   ` [PATCH v1 2/6] bluetooth: Add versioning information to BlueZ plugins Claudio Takahasi
2013-01-15 18:24   ` [PATCH v1 3/6] bluetooth: Initial files for BlueZ 5 Claudio Takahasi
2013-01-15 18:24   ` [PATCH v1 4/6] hfp_hf: Add initial file for external HFP Claudio Takahasi
2013-01-15 18:24   ` [PATCH v1 5/6] hfp_hf: Add hfp_driver Claudio Takahasi
2013-01-15 18:24   ` [PATCH v1 6/6] hfp_hf: Add BlueZ Profile handler Claudio Takahasi
2013-01-16 13:31   ` [PATCH v2 0/6] HFP HF: External Profile Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 1/6] Makefile: Add configure option for BlueZ 4 and 5 Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 2/6] bluetooth: Add versioning information to BlueZ plugins Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 3/6] bluetooth: Initial files for BlueZ 5 Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 4/6] hfp_hf: Add initial file for external HFP Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 5/6] hfp_hf: Add hfp_driver Claudio Takahasi
2013-01-16 13:31     ` [PATCH v2 6/6] hfp_hf: Add BlueZ Profile handler Claudio Takahasi
2013-01-16 20:16     ` [PATCH v2 0/6] HFP HF: External Profile Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.