Open Source Telephony
 help / color / mirror / Atom feed
From: Denis Kenzior <denkenz@gmail.com>
To: ofono@ofono.org
Subject: Re: [PATCH v2 0/6] HFP HF: External Profile
Date: Wed, 16 Jan 2013 14:16:28 -0600	[thread overview]
Message-ID: <50F70A9C.9040500@gmail.com> (raw)
In-Reply-To: <1358343091-23350-1-git-send-email-claudio.takahasi@openbossa.org>

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

Hi Claudio,

On 01/16/2013 07:31 AM, Claudio Takahasi wrote:
> This is the first group of 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 the
> controversial points).
>
> Remaining HFP HF patches:
> git://git.infradead.org/users/cktakahasi/ofono.git HF-20130116
>
> Changed between v0-v1:
> * Append BlueZ version to hfp_hf* files
> * --enable-bluez4 configure option
>
> Changed between v1-v2:
> * Make BLUEZ4 conditional dependent on BLUETOOTH. BlueZ 5 is enabled by
>    default(--enable-bluetooth can be omitted), BlueZ 4 support is enabled
>    only if --enable-bluez4 is informed. --disable-bluetooth disables all
>    BlueZ related plugins.
>
> Claudio Takahasi (6):
>    Makefile: Add configure option for BlueZ 4 and 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             |  31 +-
>   configure.ac            |  20 +-
>   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, 2035 insertions(+), 1646 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
>

All 6 patches have been applied.  I did split patch 5 and 6, so it 
resulted in 8 commits.

Regards,
-Denis

      parent reply	other threads:[~2013-01-16 20:16 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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     ` Denis Kenzior [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=50F70A9C.9040500@gmail.com \
    --to=denkenz@gmail.com \
    --cc=ofono@ofono.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox