From: Andrej Valek <andrej.valek@siemens.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH v6 3/3] openssl-1.1: /etc/ssl location compatibility
Date: Tue, 17 Jul 2018 11:10:35 +0200 [thread overview]
Message-ID: <20180717091035.26461-4-andrej.valek@siemens.com> (raw)
In-Reply-To: <20180717091035.26461-1-andrej.valek@siemens.com>
In-Reply-To: <20180709125657.13192-1-andrej.valek@siemens.com>
Some packages have hard-coded path to /etc/ssl location.
Create a symlinks to correct location.
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
Signed-off-by: Marko Peter <peter.marko@siemens.com>
---
meta/recipes-connectivity/openssl/openssl_1.1.0h.bb | 18 +++++++++++++++---
1 file changed, 15 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb
index 7af527ca31..d6ef66ba51 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.1.0h.bb
@@ -22,7 +22,7 @@ SRC_URI_append_class-nativesdk = " \
SRC_URI[md5sum] = "5271477e4d93f4ea032b665ef095ff24"
SRC_URI[sha256sum] = "5835626cde9e99656585fc7aaa2302a73a7e1340bf8c14fd635a62c66802a517"
-inherit lib_package multilib_header ptest
+inherit lib_package multilib_header ptest relative_symlinks
#| engines/afalg/e_afalg.c: In function 'eventfd':
#| engines/afalg/e_afalg.c:110:20: error: '__NR_eventfd' undeclared (first use in this function)
@@ -133,6 +133,18 @@ do_configure () {
do_install () {
oe_runmake DESTDIR="${D}" MANDIR="${mandir}" MANSUFFIX=ssl install
oe_multilib_header openssl/opensslconf.h
+
+ # Create SSL structure for PATH hard-coded packages like ca-certificates
+ # Debian is also using this technique
+ install -d ${D}${sysconfdir}/ssl/
+ mv ${D}${libdir}/ssl-1.1/openssl.cnf \
+ ${D}${libdir}/ssl-1.1/certs \
+ ${D}${libdir}/ssl-1.1/private \
+ \
+ ${D}${sysconfdir}/ssl/
+ ln -sf ${sysconfdir}/ssl/certs ${D}${libdir}/ssl-1.1/certs
+ ln -sf ${sysconfdir}/ssl/private ${D}${libdir}/ssl-1.1/private
+ ln -sf ${sysconfdir}/ssl/openssl.cnf ${D}${libdir}/ssl-1.1/openssl.cnf
}
do_install_append_class-native () {
@@ -169,8 +181,8 @@ FILES_${PN}-engines = "${libdir}/engines-1.1"
FILES_${PN}-misc = "${libdir}/ssl-1.1/misc"
RDEPENDS_${PN}-misc = "${@bb.utils.filter('PACKAGECONFIG', 'perl', d)}"
-FILES_openssl-conf = "${libdir}/ssl-1.1/openssl.cnf"
-CONFFILES_openssl-conf = "${libdir}/ssl-1.1/openssl.cnf"
+FILES_openssl-conf = "${sysconfdir}/ssl/openssl.cnf ${libdir}/ssl-1.1/openssl.cnf"
+CONFFILES_openssl-conf = "${sysconfdir}/ssl/openssl.cnf"
RRECOMMENDS_libcrypto += "openssl-conf"
RDEPENDS_${PN}-bin = "perl"
--
2.11.0
next prev parent reply other threads:[~2018-07-17 9:11 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-09 12:56 [PATCH resend 0/3] Openssl 1.1 upgrading Andrej Valek
2018-07-09 12:56 ` [PATCH resend 1/3] openssl-1.1: fix c_rehash perl errors Andrej Valek
2018-07-09 21:53 ` Richard Purdie
2018-07-09 12:56 ` [PATCH resend 2/3] openssl-1.1: rework packaging Andrej Valek
2018-07-09 12:56 ` [PATCH resend 3/3] openssl-1.1: /etc/ssl location compatibility Andrej Valek
2018-07-10 7:46 ` [PATCH v5 0/3] Openssl 1.1 upgrading Andrej Valek
2018-07-10 7:46 ` [PATCH v5 1/3] openssl-1.1: fix c_rehash perl errors Andrej Valek
2018-07-10 7:46 ` [PATCH v5 2/3] openssl-1.1: rework packaging Andrej Valek
2018-07-10 7:46 ` [PATCH v5 3/3] openssl-1.1: /etc/ssl location compatibility Andrej Valek
2018-07-17 9:10 ` [PATCH v6 0/3] Openssl 1.1 upgrading Andrej Valek
2018-07-30 11:12 ` Andrej Valek
2018-07-17 9:10 ` [PATCH v6 1/3] openssl-1.1: fix c_rehash perl errors Andrej Valek
2018-07-17 9:10 ` [PATCH v6 2/3] openssl-1.1: rework packaging Andrej Valek
2018-08-16 19:34 ` Andre McCurdy
2018-08-17 5:05 ` Andre McCurdy
2018-07-17 9:10 ` Andrej Valek [this message]
2018-08-16 23:38 ` [PATCH v6 3/3] openssl-1.1: /etc/ssl location compatibility Andre McCurdy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180717091035.26461-4-andrej.valek@siemens.com \
--to=andrej.valek@siemens.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox