All of lore.kernel.org
 help / color / mirror / Atom feed
From: Emil Velikov <emil.l.velikov@gmail.com>
To: linux-bluetooth@vger.kernel.org
Cc: Emil Velikov <emil.velikov@collabora.com>
Subject: [PATCH BlueZ v2 0/8] Remove support for external plugins
Date: Wed, 24 Jan 2024 16:07:56 +0000	[thread overview]
Message-ID: <20240124-rm-ext-plugins-v2-0-5244906f05ff@gmail.com> (raw)

Greetings one and all,

This is v2 of my earlier series.

In v1 support for external plugins was completely removed, while now it
is preserved but compiled out by default.

An extra --enable-external-plugins is introduced alongside a note in the
README and a one-off runtime warning. The latter two pointing people
towards integrating their plugin into the upstream BlueZ repo.

For more details, see the link below to the original v1 cover letter and
patches.

Thanks
Emil

- Link to v1: https://lore.kernel.org/r/20240116-rm-ext-plugins-v1-0-62990fb07369@gmail.com

---
Emil Velikov (8):
      configure, README: introduce --enable-external-plugins
      obexd: factor out external plugin support
      bluetoothd: remove external-dummy plugin
      bluetoothd: convert external sixaxis plugin to builtin
      bluetoothd: factor out external plugin support
      bluetoothd: don't export internal API
      bluetoothd: change plugin loading alike obexd
      android: export only (android) entrypoint from the modules

 Makefile.am              |  17 ++----
 Makefile.obexd           |   2 +
 Makefile.plugins         |   8 +--
 README                   |  13 +++++
 android/Makefile.am      |   3 +
 android/hal-audio.c      |   1 +
 android/hal-bluetooth.c  |   1 +
 android/hal-sco.c        |   1 +
 configure.ac             |  10 ++++
 obexd/src/obexd.h        |   2 +-
 obexd/src/plugin.c       |  93 +++++++++++++++++++++----------
 obexd/src/plugin.h       |   4 ++
 plugins/external-dummy.c |  28 ----------
 src/btd.h                |   2 +-
 src/plugin.c             | 139 +++++++++++++++++++++++++++++------------------
 src/plugin.h             |  16 ++++++
 16 files changed, 208 insertions(+), 132 deletions(-)
---
base-commit: a9d1f6f6a625607de6c3f5b7a40a3aac5f36c02b
change-id: 20240116-rm-ext-plugins-ba0b852a492b

Best regards,
-- 
Emil Velikov <emil.l.velikov@gmail.com>


WARNING: multiple messages have this Message-ID (diff)
From: Emil Velikov via B4 Relay <devnull+emil.l.velikov.gmail.com@kernel.org>
To: linux-bluetooth@vger.kernel.org
Cc: Emil Velikov <emil.velikov@collabora.com>
Subject: [PATCH BlueZ v2 0/8] Remove support for external plugins
Date: Wed, 24 Jan 2024 16:07:56 +0000	[thread overview]
Message-ID: <20240124-rm-ext-plugins-v2-0-5244906f05ff@gmail.com> (raw)

Greetings one and all,

This is v2 of my earlier series.

In v1 support for external plugins was completely removed, while now it
is preserved but compiled out by default.

An extra --enable-external-plugins is introduced alongside a note in the
README and a one-off runtime warning. The latter two pointing people
towards integrating their plugin into the upstream BlueZ repo.

For more details, see the link below to the original v1 cover letter and
patches.

Thanks
Emil

- Link to v1: https://lore.kernel.org/r/20240116-rm-ext-plugins-v1-0-62990fb07369@gmail.com

---
Emil Velikov (8):
      configure, README: introduce --enable-external-plugins
      obexd: factor out external plugin support
      bluetoothd: remove external-dummy plugin
      bluetoothd: convert external sixaxis plugin to builtin
      bluetoothd: factor out external plugin support
      bluetoothd: don't export internal API
      bluetoothd: change plugin loading alike obexd
      android: export only (android) entrypoint from the modules

 Makefile.am              |  17 ++----
 Makefile.obexd           |   2 +
 Makefile.plugins         |   8 +--
 README                   |  13 +++++
 android/Makefile.am      |   3 +
 android/hal-audio.c      |   1 +
 android/hal-bluetooth.c  |   1 +
 android/hal-sco.c        |   1 +
 configure.ac             |  10 ++++
 obexd/src/obexd.h        |   2 +-
 obexd/src/plugin.c       |  93 +++++++++++++++++++++----------
 obexd/src/plugin.h       |   4 ++
 plugins/external-dummy.c |  28 ----------
 src/btd.h                |   2 +-
 src/plugin.c             | 139 +++++++++++++++++++++++++++++------------------
 src/plugin.h             |  16 ++++++
 16 files changed, 208 insertions(+), 132 deletions(-)
---
base-commit: a9d1f6f6a625607de6c3f5b7a40a3aac5f36c02b
change-id: 20240116-rm-ext-plugins-ba0b852a492b

Best regards,
-- 
Emil Velikov <emil.l.velikov@gmail.com>


             reply	other threads:[~2024-01-24 16:07 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-24 16:07 Emil Velikov [this message]
2024-01-24 16:07 ` [PATCH BlueZ v2 0/8] Remove support for external plugins Emil Velikov via B4 Relay
2024-01-24 16:07 ` [PATCH BlueZ v2 1/8] configure, README: introduce --enable-external-plugins Emil Velikov
2024-01-24 16:07   ` Emil Velikov via B4 Relay
2024-01-24 18:17   ` Remove support for external plugins bluez.test.bot
2024-01-24 16:07 ` [PATCH BlueZ v2 2/8] obexd: factor out external plugin support Emil Velikov
2024-01-24 16:07   ` Emil Velikov via B4 Relay
2024-01-24 16:07 ` [PATCH BlueZ v2 3/8] bluetoothd: remove external-dummy plugin Emil Velikov
2024-01-24 16:07   ` Emil Velikov via B4 Relay
2024-01-24 16:08 ` [PATCH BlueZ v2 4/8] bluetoothd: convert external sixaxis plugin to builtin Emil Velikov
2024-01-24 16:08   ` Emil Velikov via B4 Relay
2024-01-24 16:08 ` [PATCH BlueZ v2 5/8] bluetoothd: factor out external plugin support Emil Velikov
2024-01-24 16:08   ` Emil Velikov via B4 Relay
2024-01-24 16:08 ` [PATCH BlueZ v2 6/8] bluetoothd: don't export internal API Emil Velikov
2024-01-24 16:08   ` Emil Velikov via B4 Relay
2024-01-24 16:08 ` [PATCH BlueZ v2 7/8] bluetoothd: change plugin loading alike obexd Emil Velikov
2024-01-24 16:08   ` Emil Velikov via B4 Relay
2024-01-24 16:08 ` [PATCH BlueZ v2 8/8] android: export only (android) entrypoint from the modules Emil Velikov
2024-01-24 16:08   ` Emil Velikov via B4 Relay

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=20240124-rm-ext-plugins-v2-0-5244906f05ff@gmail.com \
    --to=emil.l.velikov@gmail.com \
    --cc=emil.velikov@collabora.com \
    --cc=linux-bluetooth@vger.kernel.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 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.