el2go-agent-mbedtls: fix SRC_URI

Bitbake's :append override style syntax does not insert spaces. Remove the
append and combine patches into SRC_URI.

Signed-off-by: Ilie Halip <ilie.halip@nxp.com>
(cherry picked from commit 04592be2db)
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
This commit is contained in:
Ilie Halip 2024-06-10 19:21:04 +03:00 committed by Tom Hochstein
parent a5cb4cab20
commit baca0cf073

View File

@ -12,13 +12,12 @@ DEPENDS = "python3-jsonschema-native python3-jinja2-native"
S = "${WORKDIR}/git"
SRCREV = "2ca6c285a0dd3f33982dd57299012dacab1ff206"
SRC_URI = "gitsm://github.com/Mbed-TLS/mbedtls;protocol=https;branch=development"
SRC_URI = "gitsm://github.com/Mbed-TLS/mbedtls;protocol=https;branch=development \
file://0001-crypto_struct-change-psa_key_attributes_t-layout.patch \
file://0002-library-tls-disable-PSA-APIs-for-most-operations.patch"
inherit cmake
SRC_URI:append = "file://0001-crypto_struct-change-psa_key_attributes_t-layout.patch \
file://0002-library-tls-disable-PSA-APIs-for-most-operations.patch"
PACKAGECONFIG = "psa"
PACKAGECONFIG[shared-libs] = "-DUSE_SHARED_MBEDTLS_LIBRARY=ON,-DUSE_SHARED_MBEDTLS_LIBRARY=OFF"
PACKAGECONFIG[programs] = "-DENABLE_PROGRAMS=ON,-DENABLE_PROGRAMS=OFF"