Re: [OE-core] [RFC PATCH 0/4] Bump Protobuf/gRPC

2023-07-22 Thread Clément Péron
Hi, On Fri, 21 Jul 2023 at 11:07, Clément Péron via lists.openembedded.org wrote: > Hi Martin, > > On Thu, 20 Jul 2023 at 18:38, Martin Jansa wrote: > >> These patches should be sent to openembedded-devel not openembedded-core. >> > > Sorry about that

Re: [OE-core] [RFC PATCH 0/4] Bump Protobuf/gRPC

2023-07-21 Thread Clément Péron
ting out this fix, I have proposed a backport to kirkstone. Regards, Clement > > On Thu, Jul 20, 2023 at 6:25 PM Clément Péron > wrote: > >> Hi, >> >> I'm trying to bump gRPC to a more recent version, >> but it requires a bump of protobuf. >> >>

[OE-core] [kirkstone][PATCH] package.bbclass: moving field data process before variable process in process_pkgconfig

2023-07-21 Thread Clément Péron
a newer bitbake." This patch move the field data process before variable process to avoid the process_pkgconfig() treat the field data as variable. Signed-off-by: Xiangyu Chen (cherry picked from commit a73e269d3e591a10bb397b94b82e3fb960112d33) Signed-off-by: Clément Péron --- meta/classes

[OE-core] [RFC PATCH 4/4] devtools: grpc: bump to 1.56.2

2023-07-20 Thread Clément Péron
Remove merged patch that export plugin to a separate targets Remove no more applicatable patch Signed-off-by: Clément Péron --- ...RPCPP_ABSEIL_SYNC-to-GPR_ABSEIL_SYNC.patch | 62 - ...d-separate-export-for-plugin-targets.patch | 93 --- .../grpc/{grpc_1.50.1.bb

[OE-core] [RFC PATCH 2/4] devtools: protobuf: add utf8-range recipe

2023-07-20 Thread Clément Péron
Utf8 range is a new algorithm that implement fast UTF8 validation. It is required to compile examples for new protobuf. Signed-off-by: Clément Péron --- .../protobuf/utf8-range_git.bb| 22 +++ 1 file changed, 22 insertions(+) create mode 100644 meta-oe/recipes

[OE-core] [RFC PATCH 3/4] protobuf: bump to 3.23.4

2023-07-20 Thread Clément Péron
Bump to protobuf 3.23.4 with the following diff - Add new abseil-cpp jsoncpp dependencies - Linking with gold patch has been fixed see commit 462964ed322503af52638d54c00a0a67d7133349 - Refresh the patch that fix examples LDFLAGS Signed-off-by: Clément Péron --- .../0001-Fix-linking-error

[OE-core] [RFC PATCH 1/4] jsoncpp: extend with nativesdk

2023-07-20 Thread Clément Péron
Jsoncpp doesn't extend for the moment with nativesdk We will need jsoncpp in the next protobuf bump that will require that. Add the nativesdk to BBEXTENDS of the jsoncpp recipe. Signed-off-by: Clément Péron --- meta-oe/recipes-devtools/jsoncpp/jsoncpp_1.9.5.bb | 2 +- 1 file changed, 1

[OE-core] [RFC PATCH 0/4] Bump Protobuf/gRPC

2023-07-20 Thread Clément Péron
you have an idea of what is happening? Thanks for your help Clément Péron (4): jsoncpp: extend with nativesdk devtools: protobuf: add utf8-range recipe protobuf: bump to 3.23.4 devtools: grpc: bump to 1.56.2 ...RPCPP_ABSEIL_SYNC-to-GPR_ABSEIL_SYNC.patch | 62 - ...d-separate

[OE-core] [PATCH v5 2/2] runqemu: add an option to enable guest-agent virtio device

2023-03-10 Thread Clément Péron
Add support to the runqemu script for a new option, 'guestagent', that enables the virtio serial port for host-to-guest communication. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- scripts/runqemu | 14 ++ 1 file changed, 14 insertions(+) diff --git a/scripts

[OE-core] [PATCH v5 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-10 Thread Clément Péron
so that the guest agent can start automatically; the former two come from Debian's packaging for qemu-guest-agent. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- Changes since v4: - remove debian comment - add note about debian origin + license Changes since v3: - fix

Re: [OE-core] [PATCH v4 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
On Wed, 8 Mar 2023 at 22:15, Richard Purdie wrote: > > On Wed, 2023-03-08 at 21:22 +0100, Clément Péron wrote: > > Hi Richard, > > > > On Wed, 8 Mar 2023 at 18:31, Richard Purdie > > wrote: > > > > > > On Wed, 2023-03-08 at 18:14 +0100, Clément Pér

Re: [OE-core] [PATCH v4 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
Hi Richard, On Wed, 8 Mar 2023 at 18:31, Richard Purdie wrote: > > On Wed, 2023-03-08 at 18:14 +0100, Clément Péron wrote: > > Split out the QEMU guest agent into a separate package. The agent is > > intended to be installed within a QEMU VM guest where a user is likely >

Re: [OE-core] [PATCH v4 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
Hi Michael, On Wed, 8 Mar 2023 at 18:55, Michael Tokarev wrote: > > 08.03.2023 20:28, Clément Péron пишет: > ... > >> meta/recipes-devtools/qemu/qemu.inc | 35 +++- > >> .../qemu/qemu/qemu-guest-agent.init | 84 +++ >

Re: [OE-core] [PATCH v4 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
Hi Michael, On Wed, 8 Mar 2023 at 18:14, Clément Péron via lists.openembedded.org wrote: > > Split out the QEMU guest agent into a separate package. The agent is > intended to be installed within a QEMU VM guest where a user is likely > to not want to have the rest of the QEMU

[OE-core] [PATCH v4 2/2] runqemu: add an option to enable guest-agent virtio device

2023-03-08 Thread Clément Péron
Add support to the runqemu script for a new option, 'guestagent', that enables the virtio serial port for host-to-guest communication. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- scripts/runqemu | 14 ++ 1 file changed, 14 insertions(+) diff --git a/scripts

[OE-core] [PATCH v4 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
so that the guest agent can start automatically; the former two come from Debian's packaging for qemu-guest-agent. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- Changes since v3: - fix missing comma in udev rule Changes since v2: - Add missing files - rebase on top

[OE-core] [PATCH v3 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-08 Thread Clément Péron
so that the guest agent can start automatically; the former two come from Debian's packaging for qemu-guest-agent. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- Changes since v2: - Add missing files - rebase on top of master Changes since v1: - Fix systemd-service using PN

[OE-core] [PATCH v3 2/2] runqemu: add an option to enable guest-agent virtio device

2023-03-08 Thread Clément Péron
Add support to the runqemu script for a new option, 'guestagent', that enables the virtio serial port for host-to-guest communication. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- scripts/runqemu | 14 ++ 1 file changed, 14 insertions(+) diff --git a/scripts

Re: [OE-core] [PATCH v2 2/2] runqemu: add an option to enable guest-agent virtio device

2023-03-08 Thread Clément Péron
, 5 Mar 2023 at 21:10, Clément Péron wrote: > > > > Add support to the runqemu script for a new option, 'guestagent', that > > enables the virtio serial port for host-to-guest communication. > > > > Signed-off-by: Brenda Streiff > > Signed-off-by: Clément P

[OE-core] [PATCH v2 1/2] qemu: split out qemu-guest-agent, add startup scripts

2023-03-05 Thread Clément Péron
so that the guest agent can start automatically; the former two come from Debian's packaging for qemu-guest-agent. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- This is a resend of the patch from Brenda Streiff where I changed the: SYSTEMD_SERVICE:${PN}-guest-agent = "

[OE-core] [PATCH v2 2/2] runqemu: add an option to enable guest-agent virtio device

2023-03-05 Thread Clément Péron
Add support to the runqemu script for a new option, 'guestagent', that enables the virtio serial port for host-to-guest communication. Signed-off-by: Brenda Streiff Signed-off-by: Clément Péron --- scripts/runqemu | 14 ++ 1 file changed, 14 insertions(+) diff --git a/scripts