diff mbox series

[master] strongswan: fix missing strongswap-plugin-mgf1

Message ID 20221130223900.330559-1-denis@denix.org
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [master] strongswan: fix missing strongswap-plugin-mgf1 | expand

Commit Message

Denys Dmytriyenko Nov. 30, 2022, 10:39 p.m. UTC
From: Denys Dmytriyenko <denys@konsulko.com>

Upstream strongswan recipe in meta-openembedded/meta-networking sets
runtime dependency for MGF1 plugin, but it is not enabled by default
and hence no such package gets produced.

The patch will be sent upsream, for now fix it in our bbappend.

Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
 .../recipes-support/strongswan/strongswan_%.bbappend             | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-support/strongswan/strongswan_%.bbappend b/meta-arago-distro/recipes-support/strongswan/strongswan_%.bbappend
index 0af8c9c2..ae313c74 100644
--- a/meta-arago-distro/recipes-support/strongswan/strongswan_%.bbappend
+++ b/meta-arago-distro/recipes-support/strongswan/strongswan_%.bbappend
@@ -8,6 +8,7 @@  PACKAGECONFIG = "charon curl openssl stroke sqlite3 \
 EXTRA_OECONF += " \
         --enable-ctr \
         --enable-pkcs11 \
+        --enable-mgf1 \
 "
 
 SRC_URI += "file://pkcs11_plugin.conf"