summaryrefslogtreecommitdiffstats
path: root/meta-networking
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2023-02-25 23:17:17 +0000
committerKhem Raj <raj.khem@gmail.com>2023-02-26 00:17:45 -0800
commite012fe075d6de6050e1a37d23bfbb70b5278f0a5 (patch)
tree7949da17a5dc7fd777ffe14b9225860ef62ecd37 /meta-networking
parent3b2330e4ee778c8a213116e927532dca5b36338b (diff)
downloadmeta-openembedded-e012fe075d6de6050e1a37d23bfbb70b5278f0a5.tar.gz
mbedtls: set up /usr/bin/hello as alternative
As mbedtls installs this rather generically-named /usr/bin/hello binary, it conflicts with the one provided by lmbench, hence set it up as an alternative to avoid conflicts when both are installed to rootfs or SDK. Signed-off-by: Denys Dmytriyenko <denis@denix.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r--meta-networking/recipes-connectivity/mbedtls/mbedtls_2.28.2.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/mbedtls/mbedtls_2.28.2.bb b/meta-networking/recipes-connectivity/mbedtls/mbedtls_2.28.2.bb
index f5f1236f1..e19587ca0 100644
--- a/meta-networking/recipes-connectivity/mbedtls/mbedtls_2.28.2.bb
+++ b/meta-networking/recipes-connectivity/mbedtls/mbedtls_2.28.2.bb
@@ -26,7 +26,7 @@ S = "${WORKDIR}/git"
26SRCREV = "89f040a5c938985c5f30728baed21e49d0846a53" 26SRCREV = "89f040a5c938985c5f30728baed21e49d0846a53"
27SRC_URI = "git://github.com/ARMmbed/mbedtls.git;protocol=https;branch=mbedtls-2.28" 27SRC_URI = "git://github.com/ARMmbed/mbedtls.git;protocol=https;branch=mbedtls-2.28"
28 28
29inherit cmake 29inherit cmake update-alternatives
30 30
31PACKAGECONFIG ??= "shared-libs programs" 31PACKAGECONFIG ??= "shared-libs programs"
32PACKAGECONFIG[shared-libs] = "-DUSE_SHARED_MBEDTLS_LIBRARY=ON,-DUSE_SHARED_MBEDTLS_LIBRARY=OFF" 32PACKAGECONFIG[shared-libs] = "-DUSE_SHARED_MBEDTLS_LIBRARY=ON,-DUSE_SHARED_MBEDTLS_LIBRARY=OFF"
@@ -47,6 +47,9 @@ RPROVIDES:${PN} = "polarssl"
47PACKAGES =+ "${PN}-programs" 47PACKAGES =+ "${PN}-programs"
48FILES:${PN}-programs = "${bindir}/" 48FILES:${PN}-programs = "${bindir}/"
49 49
50ALTERNATIVE:${PN}-programs = "hello"
51ALTERNATIVE_LINK_NAME[hello] = "${bindir}/hello"
52
50BBCLASSEXTEND = "native nativesdk" 53BBCLASSEXTEND = "native nativesdk"
51 54
52CVE_PRODUCT = "mbed_tls" 55CVE_PRODUCT = "mbed_tls"