All of lore.kernel.org
 help / color / mirror / Atom feed
From: Szymon Janc <szymon.janc@codecoup.pl>
To: Brian Gix <brian.gix@intel.com>
Cc: linux-bluetooth@vger.kernel.org, marcel@holtmann.org,
	luiz.dentz@gmail.com
Subject: Re: [PATCH 0/5] MeshCtl - Mesh GATT Client Provisioner
Date: Wed, 16 Aug 2017 14:28:42 +0200	[thread overview]
Message-ID: <2402684.4YO8nOF4mN@ix> (raw)
In-Reply-To: <20170814190119.8684-1-brian.gix@intel.com>

Hi Brian,

On Monday, 14 August 2017 21:01:14 CEST Brian Gix wrote:
> With the recent adoption of the Bluetooth Mesh Profile, we offer this
> GATT Client provisioner tool (meshctl).
> 
> Brian Gix / Inga Stotland` (5):
>   mesh: Add BT SIG reserved numbers for Mesh
>   mesh: define APIs for Bluetooth Mesh
>   mesh: Baseline Mesh runtime configuration files
>   mesh: Baseline Mesh implementation
>   mesh: Add mesh to main bluez build
> 
>  Makefile.tools       |   24 +
>  bootstrap-configure  |    1 +
>  configure.ac         |   18 +
>  lib/uuid.h           |   10 +
>  mesh/README          |   26 +
>  mesh/agent.c         |  276 ++++++
>  mesh/agent.h         |   58 ++
>  mesh/config-client.c |  667 +++++++++++++++
>  mesh/config-model.h  |  119 +++
>  mesh/config-server.c |  165 ++++
>  mesh/crypto.c        | 1168 ++++++++++++++++++++++++++
>  mesh/crypto.h        |  133 +++
>  mesh/gatt.c          |  609 ++++++++++++++
>  mesh/gatt.h          |   47 ++
>  mesh/keys.h          |   43 +
>  mesh/local_node.json |   61 ++
>  mesh/main.c          | 2269
> ++++++++++++++++++++++++++++++++++++++++++++++++++ mesh/mesh-net.h      | 
> 174 ++++
>  mesh/net.c           | 2184
> ++++++++++++++++++++++++++++++++++++++++++++++++ mesh/net.h           |  
> 72 ++
>  mesh/node.c          |  879 +++++++++++++++++++
>  mesh/node.h          |  146 ++++
>  mesh/onoff-model.c   |  306 +++++++
>  mesh/onoff-model.h   |   50 ++
>  mesh/prov-db.c       | 1599 +++++++++++++++++++++++++++++++++++
>  mesh/prov-db.h       |   52 ++
>  mesh/prov.c          |  664 +++++++++++++++
>  mesh/prov.h          |   43 +
>  mesh/prov_db.json    |   37 +
>  mesh/util.c          |  369 ++++++++
>  mesh/util.h          |   71 ++
>  31 files changed, 12340 insertions(+)
>  create mode 100644 mesh/README
>  create mode 100644 mesh/agent.c
>  create mode 100644 mesh/agent.h
>  create mode 100644 mesh/config-client.c
>  create mode 100644 mesh/config-model.h
>  create mode 100644 mesh/config-server.c
>  create mode 100644 mesh/crypto.c
>  create mode 100644 mesh/crypto.h
>  create mode 100644 mesh/gatt.c
>  create mode 100644 mesh/gatt.h
>  create mode 100644 mesh/keys.h
>  create mode 100644 mesh/local_node.json
>  create mode 100644 mesh/main.c
>  create mode 100644 mesh/mesh-net.h
>  create mode 100644 mesh/net.c
>  create mode 100644 mesh/net.h
>  create mode 100644 mesh/node.c
>  create mode 100644 mesh/node.h
>  create mode 100644 mesh/onoff-model.c
>  create mode 100644 mesh/onoff-model.h
>  create mode 100644 mesh/prov-db.c
>  create mode 100644 mesh/prov-db.h
>  create mode 100644 mesh/prov.c
>  create mode 100644 mesh/prov.h
>  create mode 100644 mesh/prov_db.json
>  create mode 100644 mesh/util.c
>  create mode 100644 mesh/util.h

Seems like 4th patch didn't make it to the list. Looking at code size it seems 
like it is too big and was rejected by vger. Would it be possible to upload 
this code eg to gihub?

-- 
pozdrawiam
Szymon Janc

  parent reply	other threads:[~2017-08-16 12:28 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-14 19:01 [PATCH 0/5] MeshCtl - Mesh GATT Client Provisioner Brian Gix
2017-08-14 19:01 ` [PATCH 1/5] mesh: Add BT SIG reserved numbers for Mesh Brian Gix
2017-08-14 19:01 ` [PATCH 2/5] mesh: define APIs for Bluetooth Mesh Brian Gix
2017-08-14 19:01 ` [PATCH 3/5] mesh: Baseline Mesh runtime configuration files Brian Gix
2017-08-14 19:01 ` [PATCH 4/5] mesh: Baseline Mesh implementation Brian Gix
2017-08-15  9:07   ` Luiz Augusto von Dentz
2017-08-15 15:36     ` Gix, Brian
2017-08-16 12:29       ` Luiz Augusto von Dentz
2017-08-14 19:01 ` [PATCH 5/5] mesh: Add mesh to main bluez build Brian Gix
2017-08-16 12:28 ` Szymon Janc [this message]
2017-08-16 12:30   ` [PATCH 0/5] MeshCtl - Mesh GATT Client Provisioner Luiz Augusto von Dentz
2017-08-21 10:42 ` Marcel Holtmann

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=2402684.4YO8nOF4mN@ix \
    --to=szymon.janc@codecoup.pl \
    --cc=brian.gix@intel.com \
    --cc=linux-bluetooth@vger.kernel.org \
    --cc=luiz.dentz@gmail.com \
    --cc=marcel@holtmann.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.