diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2026-03-17 08:10:29 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-17 08:10:29 -0300 |
| commit | 7690d425e86adeffa5ef9b061e831d43cd41fa79 (patch) | |
| tree | de166a977735dc82463dc21c778f1d939b4f3f82 | |
| parent | 23883fbd6d9b3db79c81a971e6d68c0b8fa369d8 (diff) | |
| parent | 691d47a90d557dacede42446148149c56fe1a572 (diff) | |
| download | meta-freescale-7690d425e86adeffa5ef9b061e831d43cd41fa79.tar.gz | |
Merge pull request #2468 from nxp-upstream/smw-enclave-upgrade
Update imx-secure-enclave to 6.18.2-1.0.0
6 files changed, 166 insertions, 20 deletions
diff --git a/recipes-bsp/imx-secure-enclave/imx-secure-enclave-prime_git.bb b/recipes-bsp/imx-secure-enclave/imx-secure-enclave-prime_git.bb new file mode 100644 index 000000000..1bd72d118 --- /dev/null +++ b/recipes-bsp/imx-secure-enclave/imx-secure-enclave-prime_git.bb | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | require imx-secure-enclave.inc | ||
| 2 | |||
| 3 | SUMMARY += "PRIME" | ||
| 4 | DESCRIPTION += "PRIME" | ||
| 5 | |||
| 6 | PLAT = "prime" | ||
| 7 | |||
| 8 | do_install:append() { | ||
| 9 | # Remove common content that is to be installed by imx-secure-enclave | ||
| 10 | rm ${D}${datadir}/se/README | ||
| 11 | } | ||
| 12 | |||
| 13 | COMPATIBLE_MACHINE = "(mx943-nxp-bsp|mx952-nxp-bsp)" | ||
diff --git a/recipes-bsp/imx-secure-enclave/imx-secure-enclave-seco_git.bb b/recipes-bsp/imx-secure-enclave/imx-secure-enclave-seco_git.bb new file mode 100644 index 000000000..803cbeffe --- /dev/null +++ b/recipes-bsp/imx-secure-enclave/imx-secure-enclave-seco_git.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | require imx-secure-enclave.inc | ||
| 2 | |||
| 3 | SUMMARY += "SECO" | ||
| 4 | DESCRIPTION += "SECO" | ||
| 5 | |||
| 6 | PLAT = "seco" | ||
| 7 | |||
| 8 | EXTRA_OEMAKE:append:mx8x-nxp-bsp = " COMPATIBLE_MACHINE=mx8dxl-nxp-bsp" | ||
| 9 | |||
| 10 | do_install:append:mx9-nxp-bsp() { | ||
| 11 | # Remove common content that is to be installed by imx-secure-enclave | ||
| 12 | for i in common hsm nvm.h; do | ||
| 13 | rm -rf ${D}${includedir}/$i | ||
| 14 | done | ||
| 15 | rm ${D}${datadir}/se/README | ||
| 16 | rm ${D}${bindir}/nvmd_conf_setup.sh | ||
| 17 | rm ${D}${bindir}/se_tools | ||
| 18 | } | ||
| 19 | |||
| 20 | COMPATIBLE_MACHINE = "(mx8x-nxp-bsp|mx943-nxp-bsp|mx95-nxp-bsp|mx952-nxp-bsp)" | ||
diff --git a/recipes-bsp/imx-secure-enclave/imx-secure-enclave.inc b/recipes-bsp/imx-secure-enclave/imx-secure-enclave.inc new file mode 100644 index 000000000..bb045b6fb --- /dev/null +++ b/recipes-bsp/imx-secure-enclave/imx-secure-enclave.inc | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | # Copyright 2021-2025 NXP | ||
| 2 | |||
| 3 | SUMMARY = "NXP i.MX SECURE ENCLAVE library" | ||
| 4 | DESCRIPTION = "NXP IMX SECURE ENCLAVE library" | ||
| 5 | SECTION = "base" | ||
| 6 | LICENSE = "BSD-3-Clause" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8636bd68fc00cc6a3809b7b58b45f982" | ||
| 8 | |||
| 9 | DEPENDS = " mbedtls openssl" | ||
| 10 | |||
| 11 | SRC_URI = "${SECURE_ENCLAVE_LIB_SRC};branch=${SRCBRANCH}" | ||
| 12 | SECURE_ENCLAVE_LIB_SRC ?= "git://github.com/NXP/imx-secure-enclave.git;protocol=https" | ||
| 13 | SRCBRANCH = "lf-6.18.2_1.0.0" | ||
| 14 | SRCREV = "24fdfb728fff1644878f5ab4a5557decf0769959" | ||
| 15 | |||
| 16 | PLAT ?= "UNDEFINED" | ||
| 17 | |||
| 18 | EXTRA_OEMAKE = "PLAT=${PLAT} OPENSSL_PATH=${STAGING_INCDIR} MBEDTLS_PATH=${STAGING_DIR_HOST}${datadir}/mbedtls-source" | ||
| 19 | |||
| 20 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
| 21 | |||
| 22 | do_install() { | ||
| 23 | oe_runmake -C ${S} DESTDIR=${D} install_tests | ||
| 24 | } | ||
| 25 | |||
| 26 | PACKAGE_ARCH = "${MACHINE_SOCARCH}" | ||
| 27 | |||
| 28 | FILES:${PN} += "${datadir}/se" | ||
| 29 | RDEPENDS:${PN}:append = " bash" | ||
diff --git a/recipes-bsp/imx-secure-enclave/imx-secure-enclave_git.bb b/recipes-bsp/imx-secure-enclave/imx-secure-enclave_git.bb index 525824f79..647a9d768 100644 --- a/recipes-bsp/imx-secure-enclave/imx-secure-enclave_git.bb +++ b/recipes-bsp/imx-secure-enclave/imx-secure-enclave_git.bb | |||
| @@ -1,29 +1,18 @@ | |||
| 1 | SUMMARY = "NXP i.MX Secure Enclave Userspace Library" | 1 | require imx-secure-enclave.inc |
| 2 | DESCRIPTION = "NXP i.MX Secure Enclave Userspace Library" | ||
| 3 | SECTION = "base" | ||
| 4 | |||
| 5 | LICENSE = "BSD-3-Clause" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=8636bd68fc00cc6a3809b7b58b45f982" | ||
| 7 | |||
| 8 | DEPENDS = "openssl" | ||
| 9 | 2 | ||
| 10 | inherit systemd | 3 | inherit systemd |
| 11 | 4 | ||
| 12 | SRC_URI = "git://github.com/NXP/imx-secure-enclave.git;protocol=https;branch=lf-6.6.52_2.2.0" | 5 | SYSTEMD_AUTO_ENABLE = "disable" |
| 13 | SRCREV = "dffbb844e86f4a49058ffbb40548474059969c27" | 6 | SYSTEMD_SERVICE:${PN} = "nvm_daemon.service" |
| 14 | |||
| 15 | PV = "lf-6.6.52_2.2.0" | ||
| 16 | 7 | ||
| 17 | EXTRA_OEMAKE += "PLAT=ele" | 8 | PLAT = "ele" |
| 18 | 9 | ||
| 19 | TARGET_CC_ARCH += "${LDFLAGS}" | 10 | PACKAGES =+ "${PN}-crrm" |
| 20 | 11 | ||
| 21 | do_install () { | 12 | RDEPENDS:${PN} = "${@bb.utils.contains('UBOOT_CONFIG', 'crrm', '${PN}-crrm', '', d)}" |
| 22 | oe_runmake DESTDIR=${D} install | ||
| 23 | rm -rf ${D}/usr/share | ||
| 24 | } | ||
| 25 | 13 | ||
| 26 | SYSTEMD_AUTO_ENABLE = "disable" | 14 | FILES:${PN}-crrm = " \ |
| 27 | SYSTEMD_SERVICE:${PN} = "nvm_daemon.service" | 15 | ${bindir}/ele_crrm_test \ |
| 16 | ${libdir}/lib*crrm${SOLIBS}" | ||
| 28 | 17 | ||
| 29 | COMPATIBLE_MACHINE = "(mx8ulp-nxp-bsp|mx9-nxp-bsp)" | 18 | COMPATIBLE_MACHINE = "(mx8ulp-nxp-bsp|mx9-nxp-bsp)" |
diff --git a/recipes-connectivity/mbedtls/mbedtls/run-ptest b/recipes-connectivity/mbedtls/mbedtls/run-ptest new file mode 100644 index 000000000..059ab4ecb --- /dev/null +++ b/recipes-connectivity/mbedtls/mbedtls/run-ptest | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | ptestdir=$(dirname "$(readlink -f "$0")") | ||
| 4 | cd "$ptestdir"/tests || exit | ||
| 5 | |||
| 6 | tests=$(find * -type f -name 'test_suite_*') | ||
| 7 | |||
| 8 | for f in $tests | ||
| 9 | do | ||
| 10 | if test -x ./"$f"; then | ||
| 11 | if ./"$f" > ./"$f".out 2> ./"$f".err; then | ||
| 12 | echo "PASS: $f" | ||
| 13 | else | ||
| 14 | echo "FAIL: $f" | ||
| 15 | fi | ||
| 16 | fi | ||
| 17 | done | ||
diff --git a/recipes-connectivity/mbedtls/mbedtls_3.6.5.bb b/recipes-connectivity/mbedtls/mbedtls_3.6.5.bb new file mode 100644 index 000000000..e6dfe4309 --- /dev/null +++ b/recipes-connectivity/mbedtls/mbedtls_3.6.5.bb | |||
| @@ -0,0 +1,78 @@ | |||
| 1 | SUMMARY = "Lightweight crypto and SSL/TLS library" | ||
| 2 | DESCRIPTION = "mbedtls is a lean open source crypto library \ | ||
| 3 | for providing SSL and TLS support in your programs. It offers \ | ||
| 4 | an intuitive API and documented header files, so you can actually \ | ||
| 5 | understand what the code does. It features: \ | ||
| 6 | \ | ||
| 7 | - Symmetric algorithms, like AES, Blowfish, Triple-DES, DES, ARC4, \ | ||
| 8 | Camellia and XTEA \ | ||
| 9 | - Hash algorithms, like SHA-1, SHA-2, RIPEMD-160 and MD5 \ | ||
| 10 | - Entropy pool and random generators, like CTR-DRBG and HMAC-DRBG \ | ||
| 11 | - Public key algorithms, like RSA, Elliptic Curves, Diffie-Hellman, \ | ||
| 12 | ECDSA and ECDH \ | ||
| 13 | - SSL v3 and TLS 1.0, 1.1 and 1.2 \ | ||
| 14 | - Abstraction layers for ciphers, hashes, public key operations, \ | ||
| 15 | platform abstraction and threading \ | ||
| 16 | " | ||
| 17 | |||
| 18 | HOMEPAGE = "https://tls.mbed.org/" | ||
| 19 | |||
| 20 | LICENSE = "Apache-2.0 | GPL-2.0-or-later" | ||
| 21 | LIC_FILES_CHKSUM = "file://LICENSE;md5=379d5819937a6c2f1ef1630d341e026d" | ||
| 22 | |||
| 23 | SECTION = "libs" | ||
| 24 | |||
| 25 | SRC_URI = "gitsm://github.com/Mbed-TLS/mbedtls.git;protocol=https;branch=mbedtls-3.6;tag=v${PV} \ | ||
| 26 | file://run-ptest \ | ||
| 27 | " | ||
| 28 | |||
| 29 | SRCREV = "e185d7fd85499c8ce5ca2a54f5cf8fe7dbe3f8df" | ||
| 30 | |||
| 31 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" | ||
| 32 | |||
| 33 | inherit cmake update-alternatives ptest | ||
| 34 | |||
| 35 | PACKAGECONFIG ??= "shared-libs programs ${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)}" | ||
| 36 | PACKAGECONFIG[shared-libs] = "-DUSE_SHARED_MBEDTLS_LIBRARY=ON,-DUSE_SHARED_MBEDTLS_LIBRARY=OFF" | ||
| 37 | PACKAGECONFIG[programs] = "-DENABLE_PROGRAMS=ON,-DENABLE_PROGRAMS=OFF" | ||
| 38 | PACKAGECONFIG[werror] = "-DMBEDTLS_FATAL_WARNINGS=ON,-DMBEDTLS_FATAL_WARNINGS=OFF" | ||
| 39 | # Make X.509 and TLS calls use PSA | ||
| 40 | # https://github.com/Mbed-TLS/mbedtls/blob/development/docs/use-psa-crypto.md | ||
| 41 | PACKAGECONFIG[psa] = "" | ||
| 42 | PACKAGECONFIG[tests] = "-DENABLE_TESTING=ON,-DENABLE_TESTING=OFF" | ||
| 43 | |||
| 44 | # For now the only way to enable PSA is to explicitly pass a -D via CFLAGS | ||
| 45 | CFLAGS:append = "${@bb.utils.contains('PACKAGECONFIG', 'psa', ' -DMBEDTLS_USE_PSA_CRYPTO', '', d)}" | ||
| 46 | |||
| 47 | PROVIDES += "polarssl" | ||
| 48 | RPROVIDES:${PN} = "polarssl" | ||
| 49 | |||
| 50 | PACKAGES =+ "${PN}-programs" | ||
| 51 | FILES:${PN}-programs = "${bindir}/" | ||
| 52 | |||
| 53 | ALTERNATIVE:${PN}-programs = "${@bb.utils.contains('PACKAGECONFIG', 'programs', 'hello', '', d)}" | ||
| 54 | ALTERNATIVE_LINK_NAME[hello] = "${bindir}/hello" | ||
| 55 | |||
| 56 | BBCLASSEXTEND = "native nativesdk" | ||
| 57 | |||
| 58 | CVE_PRODUCT = "mbed_tls" | ||
| 59 | |||
| 60 | # Strip host paths from autogenerated test files | ||
| 61 | do_compile:append() { | ||
| 62 | sed -i 's+${S}/++g' ${B}/tests/*.c 2>/dev/null || : | ||
| 63 | sed -i 's+${B}/++g' ${B}/tests/*.c 2>/dev/null || : | ||
| 64 | } | ||
| 65 | |||
| 66 | # Export source files/headers needed by Arm Trusted Firmware | ||
| 67 | sysroot_stage_all:append() { | ||
| 68 | sysroot_stage_dir "${S}/library" "${SYSROOT_DESTDIR}/usr/share/mbedtls-source/library" | ||
| 69 | sysroot_stage_dir "${S}/include" "${SYSROOT_DESTDIR}/usr/share/mbedtls-source/include" | ||
| 70 | } | ||
| 71 | |||
| 72 | do_install_ptest () { | ||
| 73 | install -d ${D}${PTEST_PATH}/tests | ||
| 74 | install -d ${D}${PTEST_PATH}/framework | ||
| 75 | cp -f ${B}/tests/test_suite_* ${D}${PTEST_PATH}/tests/ | ||
| 76 | find ${D}${PTEST_PATH}/tests/ -type f -name "*.c" -delete | ||
| 77 | cp -fR ${S}/framework/data_files ${D}${PTEST_PATH}/framework/ | ||
| 78 | } | ||
