From cf7678d892e1da9a516802d120cc77f8f5b27398 Mon Sep 17 00:00:00 2001 From: night1rider Date: Mon, 6 Jul 2026 12:05:08 -0600 Subject: [PATCH] Update wolfSSL and related recipes to latest releases - wolfssl: 5.9.1 -> 5.9.2 - wolfmqtt: 2.0.0 -> 2.1.0 - wolfssh: 1.4.22 -> 1.5.0 - wolftpm: 3.10.0 -> 4.0.0 - wolfclu: 0.1.8 -> 0.2.0 - wolfprovider: 1.1.1 -> 1.2.0 --- .../wolfcrypt/wolfcryptbenchmark/wolfcryptbenchmark.bb | 2 +- recipes-examples/wolfcrypt/wolfcrypttest/wolfcrypttest.bb | 2 +- .../wolfclu/{wolfclu_0.1.8+master.bb => wolfclu_0.2.0.bb} | 2 +- .../wolfmqtt/{wolfmqtt_2.0.0.bb => wolfmqtt_2.1.0.bb} | 2 +- .../{wolfprovider_1.1.1.bb => wolfprovider_1.2.0.bb} | 2 +- recipes-wolfssl/wolfssh/{wolfssh_1.4.22.bb => wolfssh_1.5.0.bb} | 2 +- recipes-wolfssl/wolfssl/{wolfssl_5.9.1.bb => wolfssl_5.9.2.bb} | 2 +- recipes-wolfssl/wolftpm/{wolftpm_3.10.0.bb => wolftpm_4.0.0.bb} | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) rename recipes-wolfssl/wolfclu/{wolfclu_0.1.8+master.bb => wolfclu_0.2.0.bb} (95%) rename recipes-wolfssl/wolfmqtt/{wolfmqtt_2.0.0.bb => wolfmqtt_2.1.0.bb} (94%) rename recipes-wolfssl/wolfprovider/{wolfprovider_1.1.1.bb => wolfprovider_1.2.0.bb} (97%) rename recipes-wolfssl/wolfssh/{wolfssh_1.4.22.bb => wolfssh_1.5.0.bb} (94%) rename recipes-wolfssl/wolfssl/{wolfssl_5.9.1.bb => wolfssl_5.9.2.bb} (95%) rename recipes-wolfssl/wolftpm/{wolftpm_3.10.0.bb => wolftpm_4.0.0.bb} (94%) diff --git a/recipes-examples/wolfcrypt/wolfcryptbenchmark/wolfcryptbenchmark.bb b/recipes-examples/wolfcrypt/wolfcryptbenchmark/wolfcryptbenchmark.bb index e1003e0..5118b6f 100644 --- a/recipes-examples/wolfcrypt/wolfcryptbenchmark/wolfcryptbenchmark.bb +++ b/recipes-examples/wolfcrypt/wolfcryptbenchmark/wolfcryptbenchmark.bb @@ -21,7 +21,7 @@ python __anonymous() { wolfssl_varAppend(d, 'RDEPENDS', '${PN}', ' wolfssl') } -SRC_URI = "git://github.com/wolfSSL/wolfssl.git;nobranch=1;protocol=https;rev=1d363f3adceba9d1478230ede476a37b0dcdef24" +SRC_URI = "git://github.com/wolfSSL/wolfssl.git;nobranch=1;protocol=https;rev=ac01707f552c611fbd135cc723b2682b3e7f80f2" do_configure[noexec] = "1" do_compile[noexec] = "1" diff --git a/recipes-examples/wolfcrypt/wolfcrypttest/wolfcrypttest.bb b/recipes-examples/wolfcrypt/wolfcrypttest/wolfcrypttest.bb index 85e4275..4cfd464 100644 --- a/recipes-examples/wolfcrypt/wolfcrypttest/wolfcrypttest.bb +++ b/recipes-examples/wolfcrypt/wolfcrypttest/wolfcrypttest.bb @@ -21,7 +21,7 @@ python __anonymous() { wolfssl_varAppend(d, 'RDEPENDS', '${PN}', ' wolfssl') } -SRC_URI = "git://github.com/wolfSSL/wolfssl.git;nobranch=1;protocol=https;rev=1d363f3adceba9d1478230ede476a37b0dcdef24" +SRC_URI = "git://github.com/wolfSSL/wolfssl.git;nobranch=1;protocol=https;rev=ac01707f552c611fbd135cc723b2682b3e7f80f2" do_configure[noexec] = "1" diff --git a/recipes-wolfssl/wolfclu/wolfclu_0.1.8+master.bb b/recipes-wolfssl/wolfclu/wolfclu_0.2.0.bb similarity index 95% rename from recipes-wolfssl/wolfclu/wolfclu_0.1.8+master.bb rename to recipes-wolfssl/wolfclu/wolfclu_0.2.0.bb index 2909c6e..c193fcb 100644 --- a/recipes-wolfssl/wolfclu/wolfclu_0.1.8+master.bb +++ b/recipes-wolfssl/wolfclu/wolfclu_0.2.0.bb @@ -11,7 +11,7 @@ PROVIDES += "wolfclu" DEPENDS += "virtual/wolfssl" -SRC_URI = "git://github.com/wolfssl/wolfclu.git;nobranch=1;protocol=https;rev=a17667097d253c97d8f7110e214ea90e2be5e1bd" +SRC_URI = "git://github.com/wolfssl/wolfclu.git;nobranch=1;protocol=https;rev=ceefc9953aec4ccce6f921df67903101de28a3a0" python () { if d.getVar('UNPACKDIR', False): diff --git a/recipes-wolfssl/wolfmqtt/wolfmqtt_2.0.0.bb b/recipes-wolfssl/wolfmqtt/wolfmqtt_2.1.0.bb similarity index 94% rename from recipes-wolfssl/wolfmqtt/wolfmqtt_2.0.0.bb rename to recipes-wolfssl/wolfmqtt/wolfmqtt_2.1.0.bb index 2f0e91b..85c5aec 100644 --- a/recipes-wolfssl/wolfmqtt/wolfmqtt_2.0.0.bb +++ b/recipes-wolfssl/wolfmqtt/wolfmqtt_2.1.0.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504" DEPENDS += "virtual/wolfssl" -SRC_URI = "git://github.com/wolfssl/wolfMQTT.git;nobranch=1;protocol=https;rev=88d37edd4569d07ed3896273fdea9e80a117de76" +SRC_URI = "git://github.com/wolfssl/wolfMQTT.git;nobranch=1;protocol=https;rev=1358c8ae0cbc7e80e5714cc983d1a3c5b3a1b0dc" python () { diff --git a/recipes-wolfssl/wolfprovider/wolfprovider_1.1.1.bb b/recipes-wolfssl/wolfprovider/wolfprovider_1.2.0.bb similarity index 97% rename from recipes-wolfssl/wolfprovider/wolfprovider_1.1.1.bb rename to recipes-wolfssl/wolfprovider/wolfprovider_1.2.0.bb index e78b957..e0f55df 100644 --- a/recipes-wolfssl/wolfprovider/wolfprovider_1.1.1.bb +++ b/recipes-wolfssl/wolfprovider/wolfprovider_1.2.0.bb @@ -9,7 +9,7 @@ DEPENDS += "util-linux-native" PROVIDES += "wolfprovider" -SRC_URI = "git://github.com/wolfssl/wolfProvider.git;nobranch=1;protocol=https;rev=046f4ac583ca7612386f4c38ca29a9d191785aa8" +SRC_URI = "git://github.com/wolfssl/wolfProvider.git;nobranch=1;protocol=https;rev=68cc15ce85d92ceb45156edbe42fe054ef0b8c6e" DEPENDS += " virtual/wolfssl \ openssl \ diff --git a/recipes-wolfssl/wolfssh/wolfssh_1.4.22.bb b/recipes-wolfssl/wolfssh/wolfssh_1.5.0.bb similarity index 94% rename from recipes-wolfssl/wolfssh/wolfssh_1.4.22.bb rename to recipes-wolfssl/wolfssh/wolfssh_1.5.0.bb index 83e38d9..7f17284 100644 --- a/recipes-wolfssl/wolfssh/wolfssh_1.4.22.bb +++ b/recipes-wolfssl/wolfssh/wolfssh_1.5.0.bb @@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSING;md5=2c2d0ee3db6ceba278dd43212ed03733" DEPENDS += "virtual/wolfssl" -SRC_URI = "git://github.com/wolfssl/wolfssh.git;nobranch=1;protocol=https;rev=7d4829843625eb7f59216136a9f21e1f986a8c2e" +SRC_URI = "git://github.com/wolfssl/wolfssh.git;nobranch=1;protocol=https;rev=8643d7be841184f766374e3b0ed68ced6391543c" python () { if d.getVar('UNPACKDIR', False): diff --git a/recipes-wolfssl/wolfssl/wolfssl_5.9.1.bb b/recipes-wolfssl/wolfssl/wolfssl_5.9.2.bb similarity index 95% rename from recipes-wolfssl/wolfssl/wolfssl_5.9.1.bb rename to recipes-wolfssl/wolfssl/wolfssl_5.9.2.bb index d692937..d579981 100644 --- a/recipes-wolfssl/wolfssl/wolfssl_5.9.1.bb +++ b/recipes-wolfssl/wolfssl/wolfssl_5.9.2.bb @@ -9,7 +9,7 @@ DEPENDS += "util-linux-native" PROVIDES += "wolfssl virtual/wolfssl" -SRC_URI = "git://github.com/wolfssl/wolfssl.git;nobranch=1;protocol=https;rev=1d363f3adceba9d1478230ede476a37b0dcdef24" +SRC_URI = "git://github.com/wolfssl/wolfssl.git;nobranch=1;protocol=https;rev=ac01707f552c611fbd135cc723b2682b3e7f80f2" python () { if d.getVar('UNPACKDIR', False): diff --git a/recipes-wolfssl/wolftpm/wolftpm_3.10.0.bb b/recipes-wolfssl/wolftpm/wolftpm_4.0.0.bb similarity index 94% rename from recipes-wolfssl/wolftpm/wolftpm_3.10.0.bb rename to recipes-wolfssl/wolftpm/wolftpm_4.0.0.bb index 990f60b..720337f 100644 --- a/recipes-wolfssl/wolftpm/wolftpm_3.10.0.bb +++ b/recipes-wolfssl/wolftpm/wolftpm_4.0.0.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504" DEPENDS += "virtual/wolfssl" -SRC_URI = "git://github.com/wolfssl/wolfTPM.git;nobranch=1;protocol=https;rev=1c61ff6c826bfcf8e1094817b44735720ecff160" +SRC_URI = "git://github.com/wolfssl/wolfTPM.git;nobranch=1;protocol=https;rev=1a19f639bc9f0be9825be1042687ff12ad44a40b" python () { if d.getVar('UNPACKDIR', False):