Merge pull request #84 from night1rider/Update-Releases-04_29_24

Updating Releases, and adding yocto lts/petalinux
pull/86/head
András Fekete 2024-04-29 12:16:34 -04:00 committed by GitHub
commit 94aa2e80cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 21 additions and 6328 deletions

View File

@ -186,4 +186,4 @@ BBFILES += "${@bb.utils.contains('WOLFENGINE_TYPE', \
'', d)}" '', d)}"
# Versions of OpenEmbedded-Core which layer has been tested against # Versions of OpenEmbedded-Core which layer has been tested against
LAYERSERIES_COMPAT_wolfssl = "sumo thud warrior zeus hardknott gatesgarth dunfell kirkstone nanbield" LAYERSERIES_COMPAT_wolfssl = "sumo thud warrior zeus hardknott gatesgarth dunfell kirkstone nanbield langdale scarthgap"

View File

@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://LICENSING;md5=2c2d0ee3db6ceba278dd43212ed03733"
DEPENDS += "wolfssl" DEPENDS += "wolfssl"
SRC_URI = "git://github.com/wolfssl/wolfssh.git;nobranch=1;protocol=https;rev=60a29602e5893fd4e2ca0f4b6e2e05c6324154ed" SRC_URI = "git://github.com/wolfssl/wolfssh.git;nobranch=1;protocol=https;rev=9204ae711999facc7a6a386e1306ae5fb1506da5"
S = "${WORKDIR}/git" S = "${WORKDIR}/git"

File diff suppressed because it is too large Load Diff

View File

@ -12,8 +12,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
DEPENDS += "wolfssl" DEPENDS += "wolfssl"
SRC_URI = "git://github.com/wolfssl/wolfTPM.git;nobranch=1;protocol=https;rev=e54734a3ab2507fbba378567d16aa3e27c54655b \ SRC_URI = "git://github.com/wolfssl/wolfTPM.git;nobranch=1;protocol=https;rev=1fa15951eb91a8fe89b3326077b9be6fb105edeb"
file://wolftpm_3_1_0.patch"
S = "${WORKDIR}/git" S = "${WORKDIR}/git"

View File

@ -101,42 +101,32 @@ update() {
} }
check_and_update() {
printf "Checking version of wolfSSL to use..." printf "Checking version of ${1} to use..."
get_current "wolfssl" get_current "${1}"
get_new "wolfssl" get_new "${1}"
update "wolfssl" update "${1}"
printf "Checking version of wolfMQTT to use..." }
get_current "wolfmqtt"
get_new "wolfmqtt"
update "wolfmqtt"
printf "Checking version of wolfSSH to use..." check_and_update "wolfssl"
get_current "wolfssh"
get_new "wolfssh"
update "wolfssh"
printf "Checking version of wolfTPM to use..." check_and_update "wolfmqtt"
get_current "wolftpm"
get_new "wolftpm"
update "wolftpm"
printf "Checking version of wolfCLU to use..." check_and_update "wolfssh"
get_current "wolfclu"
get_new "wolfclu"
update "wolfclu"
printf "Checking version of wolfssl-py to use..." check_and_update "wolftpm"
get_current "wolfssl-py"
get_new "wolfssl-py"
update "wolfssl-py"
check_and_update "wolfclu"
printf "Checking version of wolfcrypt-py to use..." check_and_update "wolfssl-py"
get_current "wolfcrypt-py"
get_new "wolfcrypt-py" check_and_update "wolfcrypt-py"
update "wolfcrypt-py"
check_and_update "wolfengine"
check_and_update "wolfprovider"