diff options
author | Peter Marko <peter.marko@siemens.com> | 2022-04-19 13:21:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-20 13:13:59 +0100 |
commit | 7112e20cd2ebf0191d930f0ba44e0558297ecc73 (patch) | |
tree | ffc1e9f5da62a7e024561558edf1cde02ccfabc6 /meta/recipes-connectivity | |
parent | 1c688b1049610be22e01ce6c6edbf06430a1b0d5 (diff) | |
download | poky-7112e20cd2ebf0191d930f0ba44e0558297ecc73.tar.gz |
openssl: extract legacy provider module to a separate package
This module contains legacy cipher suites from libcrypto.
We should not need to include base package because we want
to use this part of libcrypto.
(From OE-Core rev: 1537ebc3f6ae2aec9a3864b03704ab4dbc0e971b)
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/openssl/openssl_3.0.2.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_3.0.2.bb b/meta/recipes-connectivity/openssl/openssl_3.0.2.bb index ff2a22c6c3..a809666aa7 100644 --- a/meta/recipes-connectivity/openssl/openssl_3.0.2.bb +++ b/meta/recipes-connectivity/openssl/openssl_3.0.2.bb | |||
@@ -224,7 +224,7 @@ do_install_ptest () { | |||
224 | # file to be installed for both the openssl-bin package and the libcrypto | 224 | # file to be installed for both the openssl-bin package and the libcrypto |
225 | # package since the openssl-bin package depends on the libcrypto package. | 225 | # package since the openssl-bin package depends on the libcrypto package. |
226 | 226 | ||
227 | PACKAGES =+ "libcrypto libssl openssl-conf ${PN}-engines ${PN}-misc" | 227 | PACKAGES =+ "libcrypto libssl openssl-conf ${PN}-engines ${PN}-misc ${PN}-ossl-module-legacy" |
228 | 228 | ||
229 | FILES:libcrypto = "${libdir}/libcrypto${SOLIBS}" | 229 | FILES:libcrypto = "${libdir}/libcrypto${SOLIBS}" |
230 | FILES:libssl = "${libdir}/libssl${SOLIBS}" | 230 | FILES:libssl = "${libdir}/libssl${SOLIBS}" |
@@ -235,12 +235,13 @@ FILES:${PN}-engines = "${libdir}/engines-3" | |||
235 | # ${prefix} comes from what we pass into --prefix at configure time (which is used for INSTALLTOP) | 235 | # ${prefix} comes from what we pass into --prefix at configure time (which is used for INSTALLTOP) |
236 | FILES:${PN}-engines:append:mingw32:class-nativesdk = " ${prefix}${libdir}/engines-3" | 236 | FILES:${PN}-engines:append:mingw32:class-nativesdk = " ${prefix}${libdir}/engines-3" |
237 | FILES:${PN}-misc = "${libdir}/ssl-3/misc ${bindir}/c_rehash" | 237 | FILES:${PN}-misc = "${libdir}/ssl-3/misc ${bindir}/c_rehash" |
238 | FILES:${PN}-ossl-module-legacy = "${libdir}/ossl-modules/legacy.so" | ||
238 | FILES:${PN} =+ "${libdir}/ssl-3/* ${libdir}/ossl-modules/" | 239 | FILES:${PN} =+ "${libdir}/ssl-3/* ${libdir}/ossl-modules/" |
239 | FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/openssl.sh" | 240 | FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/openssl.sh" |
240 | 241 | ||
241 | CONFFILES:openssl-conf = "${sysconfdir}/ssl/openssl.cnf" | 242 | CONFFILES:openssl-conf = "${sysconfdir}/ssl/openssl.cnf" |
242 | 243 | ||
243 | RRECOMMENDS:libcrypto += "openssl-conf" | 244 | RRECOMMENDS:libcrypto += "openssl-conf ${PN}-ossl-module-legacy" |
244 | RDEPENDS:${PN}-misc = "perl" | 245 | RDEPENDS:${PN}-misc = "perl" |
245 | RDEPENDS:${PN}-ptest += "openssl-bin perl perl-modules bash sed" | 246 | RDEPENDS:${PN}-ptest += "openssl-bin perl perl-modules bash sed" |
246 | 247 | ||