diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-08-15 17:35:59 -0400 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-09-11 12:50:27 +0000 |
commit | 7dcdecf5b01f48a8fbd16fe05ebede08bf5b76a8 (patch) | |
tree | d65ebd51edf1da848c87b1e1367c910510b09439 /recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch | |
parent | 93500637270f0d2e5f4a4185c09e65661e101a82 (diff) |
Upgrade KUKSA.val components to 0.4.0 releasespike_16.0.2pike_16.0.1pike/16.0.2pike/16.0.116.0.216.0.1
Move kuksa.val and kuksa.val.feeders repos to a commit that includes
the recent 0.4.0 release plus a few post-release fixes, and update
our local patches for the new version. A new patch is required for
the databroker to disable the upstream addition of a vendored build
of protobuf tooling for the host platform, as that does not work
in the OE build enviroment, and is effectively not required since
known versions of protoc and libprotobuf are already present.
The major change coming in is a rework of TLS support, which requires
a minor change to the DBC feeder configuration file that has also
been included.
Bug-AGL: SPEC-4762
Change-Id: I1a43248f15c9946d9d9dc1e8aacf1c3a96ab45a0
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
(cherry picked from commit a620f3a712bab0dd80c8ecaa49e1ebb062fabbb6)
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl-demo/+/29202
Tested-by: Jenkins Job builder account
ci-image-build: Jenkins Job builder account
ci-image-boot-test: Jenkins Job builder account
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch')
-rw-r--r-- | recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch b/recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch index 229dda46a..f2c9ca34b 100644 --- a/recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch +++ b/recipes-connectivity/kuksa-val/kuksa-client/0002-kuksa-client-Add-external-certificates-support.patch @@ -1,7 +1,7 @@ -From 3c9f74492153817dc4fa405c1724fbf22ce58c98 Mon Sep 17 00:00:00 2001 +From 3f3dbe36b4adcdd7c3cef41980058331e79ce620 Mon Sep 17 00:00:00 2001 From: Scott Murray <scott.murray@konsulko.com> -Date: Tue, 2 May 2023 16:19:55 -0400 -Subject: [PATCH 1/2] kuksa_viss_client: Add external certificates support +Date: Sat, 5 Aug 2023 13:27:44 -0400 +Subject: [PATCH 2/2] kuksa_viss_client: Add external certificates support Tweak the definition of __certificate_dir__ in the kuksa_certificates package, and certificate location logic in the client library to allow @@ -19,10 +19,10 @@ Signed-off-by: Scott Murray <scott.murray@konsulko.com> 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/kuksa-client/kuksa_client/cli_backend/__init__.py b/kuksa-client/kuksa_client/cli_backend/__init__.py -index d282a0c..3052859 100644 +index f757cd6..f4d1f35 100644 --- a/kuksa-client/kuksa_client/cli_backend/__init__.py +++ b/kuksa-client/kuksa_client/cli_backend/__init__.py -@@ -29,7 +29,7 @@ class Backend: +@@ -30,7 +30,7 @@ class Backend: self.insecure = config.getboolean('insecure', False) except AttributeError: self.insecure = config.get('insecure', False) @@ -47,5 +47,5 @@ index 22ccd3f..8323868 100644 +else: + __certificate_dir__= os.path.dirname(os.path.realpath(__file__)) -- -2.39.2 +2.41.0 |